Uses of Class
org.htmlunit.javascript.host.svg.SVGMatrix

Packages that use SVGMatrix
Package
Description
Implementations of the Scalable Vector Graphics JavaScript host objects - users of HtmlUnit shouldn't need anything in this package.
  • Uses of SVGMatrix in org.htmlunit.javascript.host.svg

    Modifier and Type
    Method
    Description
    SVGSVGElement.createSVGMatrix()
    Creates a new SVGMatrix.
    SVGMatrix.flipX()
    Returns a new matrix that is the result of flipping this matrix along the x-axis.
    SVGMatrix.flipY()
    Returns a new matrix that is the result of flipping this matrix along the y-axis.
    SVGSVGElement.getScreenCTM()
    Returns the transformation matrix from the current user units to the device for the nearest viewport element.
    SVGMatrix.inverse()
    Returns the inverse of this matrix.
    SVGMatrix.multiply(SVGMatrix by)
    Returns a new matrix that is the result of multiplying this matrix by the given matrix.
    SVGMatrix.rotate(double angle)
    Returns a new matrix that is the result of rotating this matrix by the given angle.
    SVGMatrix.rotateFromVector(double x, double y)
    Returns a new matrix that is the result of rotating this matrix by the angle defined by the given vector.
    SVGMatrix.scale(double factor)
    Returns a new matrix that is the result of scaling this matrix uniformly by the given factor.
    SVGMatrix.scaleNonUniform(double factorX, double factorY)
    Returns a new matrix that is the result of scaling this matrix non-uniformly by the given factors along each axis.
    SVGMatrix.skewX(double angle)
    Returns a new matrix that is the result of skewing this matrix along the x-axis by the given angle.
    SVGMatrix.skewY(double angle)
    Returns a new matrix that is the result of skewing this matrix along the y-axis by the given angle.
    SVGMatrix.translate(double x, double y)
    Returns a new matrix that is the result of translating this matrix by the given distances.
    Methods in org.htmlunit.javascript.host.svg with parameters of type SVGMatrix
    Modifier and Type
    Method
    Description
    SVGMatrix.multiply(SVGMatrix by)
    Returns a new matrix that is the result of multiplying this matrix by the given matrix.