org.w3c.dom.svg
Interface SVGMatrix
public interface SVGMatrix
getA
float getA()
setA
void setA(float a)
throws DOMException
- Throws:
DOMException
getB
float getB()
setB
void setB(float b)
throws DOMException
- Throws:
DOMException
getC
float getC()
setC
void setC(float c)
throws DOMException
- Throws:
DOMException
getD
float getD()
setD
void setD(float d)
throws DOMException
- Throws:
DOMException
getE
float getE()
setE
void setE(float e)
throws DOMException
- Throws:
DOMException
getF
float getF()
setF
void setF(float f)
throws DOMException
- Throws:
DOMException
multiply
SVGMatrix multiply(SVGMatrix secondMatrix)
inverse
SVGMatrix inverse()
throws SVGException
- Throws:
SVGException
translate
SVGMatrix translate(float x,
float y)
scale
SVGMatrix scale(float scaleFactor)
scaleNonUniform
SVGMatrix scaleNonUniform(float scaleFactorX,
float scaleFactorY)
rotate
SVGMatrix rotate(float angle)
rotateFromVector
SVGMatrix rotateFromVector(float x,
float y)
throws SVGException
- Throws:
SVGException
flipX
SVGMatrix flipX()
flipY
SVGMatrix flipY()
skewX
SVGMatrix skewX(float angle)
skewY
SVGMatrix skewY(float angle)