Interface SVGTransform

All Known Implementing Classes:
SVGTransformImpl

public interface SVGTransform

SVGTransform interface.

  • Field Details

    • SVG_TRANSFORM_UNKNOWN

      static final short SVG_TRANSFORM_UNKNOWN
      Constant SVG_TRANSFORM_UNKNOWN=0
      See Also:
    • SVG_TRANSFORM_MATRIX

      static final short SVG_TRANSFORM_MATRIX
      Constant SVG_TRANSFORM_MATRIX=1
      See Also:
    • SVG_TRANSFORM_TRANSLATE

      static final short SVG_TRANSFORM_TRANSLATE
      Constant SVG_TRANSFORM_TRANSLATE=2
      See Also:
    • SVG_TRANSFORM_SCALE

      static final short SVG_TRANSFORM_SCALE
      Constant SVG_TRANSFORM_SCALE=3
      See Also:
    • SVG_TRANSFORM_ROTATE

      static final short SVG_TRANSFORM_ROTATE
      Constant SVG_TRANSFORM_ROTATE=4
      See Also:
    • SVG_TRANSFORM_SKEWX

      static final short SVG_TRANSFORM_SKEWX
      Constant SVG_TRANSFORM_SKEWX=5
      See Also:
    • SVG_TRANSFORM_SKEWY

      static final short SVG_TRANSFORM_SKEWY
      Constant SVG_TRANSFORM_SKEWY=6
      See Also:
  • Method Details

    • getType

      short getType()

      getType.

      Returns:
      a short.
    • getMatrix

      SVGMatrix getMatrix()

      getMatrix.

      Returns:
      a SVGMatrix object.
    • getAngle

      float getAngle()

      getAngle.

      Returns:
      a float.
    • setMatrix

      void setMatrix(SVGMatrix matrix)

      setMatrix.

      Parameters:
      matrix - a SVGMatrix object.
    • setTranslate

      void setTranslate(float tx, float ty)

      setTranslate.

      Parameters:
      tx - a float.
      ty - a float.
    • setScale

      void setScale(float sx, float sy)

      setScale.

      Parameters:
      sx - a float.
      sy - a float.
    • setRotate

      void setRotate(float angle, float cx, float cy)

      setRotate.

      Parameters:
      angle - a float.
      cx - a float.
      cy - a float.
    • setSkewX

      void setSkewX(float angle)

      setSkewX.

      Parameters:
      angle - a float.
    • setSkewY

      void setSkewY(float angle)

      setSkewY.

      Parameters:
      angle - a float.