Class SVGPointImpl

java.lang.Object
org.loboevolution.html.dom.svgimpl.SVGPointImpl
All Implemented Interfaces:
SVGPoint

public class SVGPointImpl extends Object implements SVGPoint

SVGPointImpl class.

  • Constructor Details

    • SVGPointImpl

      public SVGPointImpl()

      Constructor for SVGPointImpl.

    • SVGPointImpl

      public SVGPointImpl(float x, float y)

      Constructor for SVGPointImpl.

      Parameters:
      x - a float.
      y - a float.
    • SVGPointImpl

      public SVGPointImpl(SVGPoint point)

      Constructor for SVGPointImpl.

      Parameters:
      point - a SVGPoint object.
  • Method Details

    • getX

      public float getX()

      getX.

      Specified by:
      getX in interface SVGPoint
      Returns:
      a float.
    • setX

      public void setX(float x)

      setX.

      Specified by:
      setX in interface SVGPoint
      Parameters:
      x - a float.
    • getY

      public float getY()

      getY.

      Specified by:
      getY in interface SVGPoint
      Returns:
      a float.
    • setY

      public void setY(float y)

      setY.

      Specified by:
      setY in interface SVGPoint
      Parameters:
      y - a float.
    • matrixTransform

      public SVGPoint matrixTransform(SVGMatrix matrix)

      matrixTransform.

      Specified by:
      matrixTransform in interface SVGPoint
      Parameters:
      matrix - a SVGMatrix object.
      Returns:
      a SVGPoint object.