public interface SVGMatrix
| Modifier and Type | Method and Description |
|---|---|
SVGMatrix |
flipX() |
SVGMatrix |
flipY() |
float |
getA() |
float |
getB() |
float |
getC() |
float |
getD() |
float |
getE() |
float |
getF() |
SVGMatrix |
inverse() |
SVGMatrix |
multiply(SVGMatrix secondMatrix) |
SVGMatrix |
rotate(float angle) |
SVGMatrix |
rotateFromVector(float x,
float y) |
SVGMatrix |
scale(float scaleFactor) |
SVGMatrix |
scaleNonUniform(float scaleFactorX,
float scaleFactorY) |
void |
setA(float a) |
void |
setB(float b) |
void |
setC(float c) |
void |
setD(float d) |
void |
setE(float e) |
void |
setF(float f) |
SVGMatrix |
skewX(float angle) |
SVGMatrix |
skewY(float angle) |
SVGMatrix |
translate(float x,
float y) |
float getA()
void setA(float a)
throws DOMException
DOMExceptionfloat getB()
void setB(float b)
throws DOMException
DOMExceptionfloat getC()
void setC(float c)
throws DOMException
DOMExceptionfloat getD()
void setD(float d)
throws DOMException
DOMExceptionfloat getE()
void setE(float e)
throws DOMException
DOMExceptionfloat getF()
void setF(float f)
throws DOMException
DOMExceptionSVGMatrix inverse() throws SVGException
SVGExceptionSVGMatrix translate(float x, float y)
SVGMatrix scale(float scaleFactor)
SVGMatrix scaleNonUniform(float scaleFactorX, float scaleFactorY)
SVGMatrix rotate(float angle)
SVGMatrix rotateFromVector(float x, float y) throws SVGException
SVGExceptionSVGMatrix flipX()
SVGMatrix flipY()
SVGMatrix skewX(float angle)
SVGMatrix skewY(float angle)