SVGMatrix

Module:
svg
Declared In:

Overview

Use the links in the table of contents to the left to access the documentation.



Functions

flipX
flipY
inverse
multiply
rotate
rotateFromVector
scale
scaleNonUniform
skewX
skewY
translate

flipX


SVGMatrix flipX(); 


flipY


SVGMatrix flipY(); 


inverse


SVGMatrix inverse() raises(SVGException); 


multiply


SVGMatrix multiply(
    in SVGMatrix secondMatrix); 


rotate


SVGMatrix rotate(
    in float angle); 


rotateFromVector


SVGMatrix rotateFromVector(
    in float x,
    in float y) raises(SVGException); 


scale


SVGMatrix scale(
    in float scaleFactor); 


scaleNonUniform


SVGMatrix scaleNonUniform(
    in float scaleFactorX,
    in float scaleFactorY); 


skewX


SVGMatrix skewX(
    in float angle); 


skewY


SVGMatrix skewY(
    in float angle); 


translate


SVGMatrix translate(
    in float x,
    in float y); 

Member Data

a
b
c
d
e
f

a


attribute double a; 


b


attribute double b; 


c


attribute double c; 


d


attribute double d; 


e


attribute double e; 


f


attribute double f; 

 

Last Updated: 2009-05-29