Save This Page
Home » openjdk-7 » org.w3c » dom » svg » [javadoc | source]
org.w3c.dom.svg
public interface: SVGMatrix [javadoc | source]
Method from org.w3c.dom.svg.SVGMatrix Summary:
flipX,   flipY,   getA,   getB,   getC,   getD,   getE,   getF,   inverse,   multiply,   rotate,   rotateFromVector,   scale,   scaleNonUniform,   setA,   setB,   setC,   setD,   setE,   setF,   skewX,   skewY,   translate
Method from org.w3c.dom.svg.SVGMatrix Detail:
 public SVGMatrix flipX()
 public SVGMatrix flipY()
 public float getA()
 public float getB()
 public float getC()
 public float getD()
 public float getE()
 public float getF()
 public SVGMatrix inverse() throws SVGException
 public SVGMatrix multiply(SVGMatrix secondMatrix)
 public SVGMatrix rotate(float angle)
 public SVGMatrix rotateFromVector(float x,
    float y) throws SVGException
 public SVGMatrix scale(float scaleFactor)
 public SVGMatrix scaleNonUniform(float scaleFactorX,
    float scaleFactorY)
 public  void setA(float a) throws DOMException
 public  void setB(float b) throws DOMException
 public  void setC(float c) throws DOMException
 public  void setD(float d) throws DOMException
 public  void setE(float e) throws DOMException
 public  void setF(float f) throws DOMException
 public SVGMatrix skewX(float angle)
 public SVGMatrix skewY(float angle)
 public SVGMatrix translate(float x,
    float y)