Package com.sun.javafx.geom.transform
Class BaseTransform
java.lang.Object
com.sun.javafx.geom.transform.BaseTransform
- Direct Known Subclasses:
Identity
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract booleanis2D()abstract booleanThis constant indicates that the transform defined by this object performs an arbitrary conversion of the input coordinates.abstract booleanabstract voidtransform(float[] srcPts, int srcOff, float[] dstPts, int dstOff, int numPts) abstract BaseBoundstransform(BaseBounds bounds, BaseBounds result)
-
Field Details
-
IDENTITY_TRANSFORM
-
-
Constructor Details
-
BaseTransform
public BaseTransform()
-
-
Method Details
-
isIdentity
public abstract boolean isIdentity()This constant indicates that the transform defined by this object performs an arbitrary conversion of the input coordinates. If this transform can be classified by any of the above constants, the type will either be the constant TYPE_IDENTITY or a combination of the appropriate flag bits for the various coordinate conversions that this transform performs.- See Also:
-
-
invalid @see
#TYPE_IDENTITY -
invalid @see
#TYPE_TRANSLATION -
invalid @see
#TYPE_UNIFORM_SCALE -
invalid @see
#TYPE_GENERAL_SCALE -
invalid @see
#TYPE_FLIP -
invalid @see
#TYPE_QUADRANT_ROTATION -
invalid @see
#TYPE_GENERAL_ROTATION -
invalid @see
#getType
-
-
isTranslateOrIdentity
public abstract boolean isTranslateOrIdentity() -
is2D
public abstract boolean is2D() -
transform
public abstract void transform(float[] srcPts, int srcOff, float[] dstPts, int dstOff, int numPts) -
transform
-