Package org.eclipse.nebula.cwt.svg
Class SvgTransform
- java.lang.Object
-
- org.eclipse.nebula.cwt.svg.SvgTransform
-
class SvgTransform extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) static class
SvgTransform.Type
-
Field Summary
Fields Modifier and Type Field Description (package private) float[]
data
(package private) SvgTransform
next
-
Constructor Summary
Constructors Constructor Description SvgTransform()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description (package private) float[]
apply(float x, float y)
(package private) boolean
isIdentity()
(package private) void
scale(float s)
(package private) void
scale(float x, float y)
(package private) void
setData(SvgTransform.Type type, java.lang.String[] sa)
(package private) void
skew(float x, float y)
(package private) void
translate(float x, float y)
-
-
-
Field Detail
-
next
SvgTransform next
-
data
float[] data
-
-
Method Detail
-
apply
float[] apply(float x, float y)
-
isIdentity
boolean isIdentity()
-
scale
void scale(float s)
-
scale
void scale(float x, float y)
-
setData
void setData(SvgTransform.Type type, java.lang.String[] sa)
-
skew
void skew(float x, float y)
-
translate
void translate(float x, float y)
-
-