Class BaseTransform

java.lang.Object
com.sun.javafx.geom.transform.BaseTransform
Direct Known Subclasses:
Identity

public abstract class BaseTransform extends Object
  • Field Details

    • IDENTITY_TRANSFORM

      public static final BaseTransform 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

      public abstract BaseBounds transform(BaseBounds bounds, BaseBounds result)