Package | Description |
---|---|
com.aspose.html.dom.canvas | |
com.aspose.html.dom.svg | |
com.aspose.html.dom.svg.datatypes |
Modifier and Type | Method and Description |
---|---|
void |
Path2D.addPath(Path2D path,
SVGMatrix transformation)
Adds to the path the path given by the argument.
|
void |
ICanvasPattern.setTransform(SVGMatrix transform)
Applies an SVGMatrix representing a linear transform to the pattern.
|
Modifier and Type | Method and Description |
---|---|
SVGMatrix |
SVGSVGElement.createSVGMatrix()
Creates an SVGMatrix object outside of any document trees.
|
SVGMatrix |
SVGGraphicsElement.getCTM()
Returns the transformation matrix from current user units (i.e., after application of the ‘transform’ attribute, if any) to the viewport coordinate system for the nearestViewportElement.
|
SVGMatrix |
SVGGraphicsElement.getScreenCTM()
Returns the transformation matrix from current user units (i.e., after application of the ‘transform’ attribute, if any) to the parent user agent's notice of a "pixel".
|
Modifier and Type | Method and Description |
---|---|
SVGTransform |
SVGSVGElement.createSVGTransformFromMatrix(SVGMatrix matrix)
Creates an SVGTransform object outside of any document trees.
|
Modifier and Type | Method and Description |
---|---|
SVGMatrix |
SVGMatrix.flipX()
Post-multiplies the transformation [-1 0 0 1 0 0] and returns the resulting matrix.
|
SVGMatrix |
SVGMatrix.flipY()
Post-multiplies the transformation [1 0 0 -1 0 0] and returns the resulting matrix.
|
SVGMatrix |
SVGTransform.getMatrix()
The matrix that represents this transformation.
|
SVGMatrix |
SVGMatrix.inverse()
Returns the inverse matrix.
|
SVGMatrix |
SVGMatrix.multiply(SVGMatrix secondMatrix)
Performs matrix multiplication.
|
SVGMatrix |
SVGMatrix.rotate(float angle)
Post-multiplies a rotation transformation on the current matrix and returns the resulting matrix.
|
SVGMatrix |
SVGMatrix.rotateFromVector(float x,
float y)
Post-multiplies a rotation transformation on the current matrix and returns the resulting matrix.
|
SVGMatrix |
SVGMatrix.scale(float scaleFactor)
Post-multiplies a uniform scale transformation on the current matrix and returns the resulting matrix.
|
SVGMatrix |
SVGMatrix.scaleNonUniform(float scaleFactorX,
float scaleFactorY)
Post-multiplies a non-uniform scale transformation on the current matrix and returns the resulting matrix.
|
SVGMatrix |
SVGMatrix.skewX(float angle)
Post-multiplies a skewX transformation on the current matrix and returns the resulting matrix.
|
SVGMatrix |
SVGMatrix.skewY(float angle)
Post-multiplies a skewY transformation on the current matrix and returns the resulting matrix.
|
SVGMatrix |
SVGMatrix.translate(float x,
float y)
Post-multiplies a translation transformation on the current matrix and returns the resulting matrix.
|
Modifier and Type | Method and Description |
---|---|
SVGPoint |
SVGPoint.matrixTransform(SVGMatrix matrix)
Applies a 2x3 matrix transformation on this SVGPoint object and returns a new, transformed SVGPoint object:
newpoint = matrix* thispoint
|
SVGMatrix |
SVGMatrix.multiply(SVGMatrix secondMatrix)
Performs matrix multiplication.
|
void |
SVGTransform.setMatrix(SVGMatrix matrix)
Sets the transform type to SVG_TRANSFORM_MATRIX, with parameter matrix defining the new transformation.
|