Package org.w3c.dom.svg
Interface SVGTransform
-
public interface SVGTransform
-
-
Field Summary
Fields Modifier and Type Field 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
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method 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)
-
-
-
Field Detail
-
SVG_TRANSFORM_UNKNOWN
static final short SVG_TRANSFORM_UNKNOWN
- See Also:
- Constant Field Values
-
SVG_TRANSFORM_MATRIX
static final short SVG_TRANSFORM_MATRIX
- See Also:
- Constant Field Values
-
SVG_TRANSFORM_TRANSLATE
static final short SVG_TRANSFORM_TRANSLATE
- See Also:
- Constant Field Values
-
SVG_TRANSFORM_SCALE
static final short SVG_TRANSFORM_SCALE
- See Also:
- Constant Field Values
-
SVG_TRANSFORM_ROTATE
static final short SVG_TRANSFORM_ROTATE
- See Also:
- Constant Field Values
-
SVG_TRANSFORM_SKEWX
static final short SVG_TRANSFORM_SKEWX
- See Also:
- Constant Field Values
-
SVG_TRANSFORM_SKEWY
static final short SVG_TRANSFORM_SKEWY
- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
short getType()
-
getMatrix
SVGMatrix getMatrix()
-
getAngle
float getAngle()
-
setMatrix
void setMatrix(SVGMatrix matrix)
-
setTranslate
void setTranslate(float tx, float ty)
-
setScale
void setScale(float sx, float sy)
-
setRotate
void setRotate(float angle, float cx, float cy)
-
setSkewX
void setSkewX(float angle)
-
setSkewY
void setSkewY(float angle)
-
-