Package | Description |
---|---|
elemental.dom | |
elemental.js.svg | |
elemental.svg |
Modifier and Type | Method and Description |
---|---|
SVGMatrix |
ElementalMixinBase.getCTM() |
SVGMatrix |
ElementalMixinBase.getScreenCTM() |
SVGMatrix |
ElementalMixinBase.getTransformToElement(SVGElement element) |
Modifier and Type | Class and Description |
---|---|
class |
JsSVGMatrix |
Modifier and Type | Method and Description |
---|---|
JsSVGTransform |
JsSVGSVGElement.createSVGTransformFromMatrix(SVGMatrix matrix) |
JsSVGTransform |
JsSVGTransformList.createSVGTransformFromMatrix(SVGMatrix matrix) |
JsSVGPoint |
JsSVGPoint.matrixTransform(SVGMatrix matrix) |
JsSVGMatrix |
JsSVGMatrix.multiply(SVGMatrix secondMatrix) |
Modifier and Type | Method and Description |
---|---|
SVGMatrix |
SVGSVGElement.createSVGMatrix()
Creates an
SVGMatrix object outside of any document trees. |
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 |
SVGLocatable.getCTM() |
SVGMatrix |
SVGTransform.getMatrix()
The matrix that represents this transformation.
|
SVGMatrix |
SVGLocatable.getScreenCTM() |
SVGMatrix |
SVGLocatable.getTransformToElement(SVGElement element) |
SVGMatrix |
SVGMatrix.inverse()
Return 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 |
---|---|
SVGTransform |
SVGSVGElement.createSVGTransformFromMatrix(SVGMatrix matrix)
Creates an
SVGTransform object outside of any document trees. |
SVGTransform |
SVGTransformList.createSVGTransformFromMatrix(SVGMatrix matrix) |
SVGPoint |
SVGPoint.matrixTransform(SVGMatrix matrix) |
SVGMatrix |
SVGMatrix.multiply(SVGMatrix secondMatrix)
Performs matrix multiplication.
|
Copyright © 2018. All rights reserved.