Interface SVGPoint

All Known Implementing Classes:
SVGPointImpl

public interface SVGPoint

SVGPoint interface.

  • Method Summary

    Modifier and Type
    Method
    Description
    float
    getX.
    float
    getY.
    matrixTransform.
    void
    setX(float x)
    setX.
    void
    setY(float y)
    setY.
  • Method Details

    • getX

      float getX()

      getX.

      Returns:
      a float.
    • setX

      void setX(float x)

      setX.

      Parameters:
      x - a float.
      Throws:
      DOMException - if any.
    • getY

      float getY()

      getY.

      Returns:
      a float.
    • setY

      void setY(float y)

      setY.

      Parameters:
      y - a float.
      Throws:
      DOMException - if any.
    • matrixTransform

      SVGPoint matrixTransform(SVGMatrix matrix)

      matrixTransform.

      Parameters:
      matrix - a SVGMatrix object.
      Returns:
      a SVGPoint object.