public interface SVGTransform
Modifier and Type | Field and Description |
---|---|
static short |
SVG_TRANSFORM_MATRIX |
static short |
SVG_TRANSFORM_ROTATE |
static short |
SVG_TRANSFORM_SCALE |
static short |
SVG_TRANSFORM_SKEWX |
static short |
SVG_TRANSFORM_SKEWY |
static short |
SVG_TRANSFORM_TRANSLATE |
static short |
SVG_TRANSFORM_UNKNOWN |
Modifier and Type | Method and Description |
---|---|
float |
getAngle() |
SVGMatrix |
getMatrix() |
short |
getType() |
void |
setMatrix(SVGMatrix matrix) |
void |
setRotate(float angle,
float cx,
float cy) |
void |
setScale(float sx,
float sy) |
void |
setSkewX(float angle) |
void |
setSkewY(float angle) |
void |
setTranslate(float tx,
float ty) |
static final short SVG_TRANSFORM_UNKNOWN
static final short SVG_TRANSFORM_MATRIX
static final short SVG_TRANSFORM_TRANSLATE
static final short SVG_TRANSFORM_SCALE
static final short SVG_TRANSFORM_ROTATE
static final short SVG_TRANSFORM_SKEWX
static final short SVG_TRANSFORM_SKEWY
short getType()
SVGMatrix getMatrix()
float getAngle()
void setMatrix(SVGMatrix matrix)
void setTranslate(float tx, float ty)
void setScale(float sx, float sy)
void setRotate(float angle, float cx, float cy)
void setSkewX(float angle)
void setSkewY(float angle)