|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
This interface represents objects which hold informations about SVG transform values.
Field Summary | |
static int |
MATRIX
To represent a generic matrix. |
static int |
ROTATE
To represent a rotation matrix. |
static int |
SCALE
To represent a scaling matrix. |
static int |
SKEWX
To represent a x shearing matrix. |
static int |
SKEWY
To represent a y shearing matrix. |
static int |
TRANSLATE
To represent a translation matrix. |
Method Summary | |
float |
getA()
Returns the content of the cell (0, 0). |
float |
getAngle()
Returns the angle in case the type of this transform is one of ROTATE, SKEWX or SKEWY. |
float |
getB()
Returns the content of the cell (0, 1). |
float |
getC()
Returns the content of the cell (0, 2). |
float |
getD()
Returns the content of the cell (1, 0). |
float |
getE()
Returns the content of the cell (1, 1). |
float |
getF()
Returns the content of the cell (1, 2). |
float |
getScaleX()
An alias for getA(). |
float |
getScaleY()
An alias for getE(). |
float |
getSkewX()
An alias for getB(). |
float |
getSkewY()
An alias for getD(). |
float |
getTranslateX()
An alias for getC(). |
float |
getTranslateY()
An alias for getF(). |
int |
getType()
Returns the type of this matrix. |
Field Detail |
public static final int MATRIX
public static final int ROTATE
public static final int SCALE
public static final int SKEWX
public static final int SKEWY
public static final int TRANSLATE
Method Detail |
public int getType()
public float getAngle()
java.lang.IllegalStateException
- if the matrix type is not one
of ROTATE, SKEWX or SKEWY.public float getA()
public float getScaleX()
public float getB()
public float getSkewX()
public float getC()
public float getTranslateX()
public float getD()
public float getSkewY()
public float getE()
public float getScaleY()
public float getF()
public float getTranslateY()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |