org.w3c.dom.svg
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
DOMException
float getB()
void setB(float b) throws DOMException
DOMException
float getC()
void setC(float c) throws DOMException
DOMException
float getD()
void setD(float d) throws DOMException
DOMException
float getE()
void setE(float e) throws DOMException
DOMException
float getF()
void setF(float f) throws DOMException
DOMException
SVGMatrix inverse() throws SVGException
SVGException
SVGMatrix 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
SVGException
SVGMatrix flipX()
SVGMatrix flipY()
SVGMatrix skewX(float angle)
SVGMatrix skewY(float angle)