Interface SVGRect

All Known Implementing Classes:
SVGOMAnimatedRect.AnimSVGRect, SVGOMAnimatedRect.BaseSVGRect, SVGOMRect

public interface SVGRect
Represents rectangular geometry.

Rectangles are defined as consisting of a (x,y) coordinate pair identifying a minimum X value, a minimum Y value, and a width and height, which are usually constrained to be non-negative.

  • Method Summary

    Modifier and Type
    Method
    Description
    float
    The height.
    float
    The width.
    float
    The minimum X value.
    float
    The minimum Y value.
    void
    setHeight(float height)
    Sets the height of the rectangle.
    void
    setWidth(float width)
    Sets the width of the rectangle.
    void
    setX(float x)
    Sets the minimum X value.
    void
    setY(float y)
    Sets the minimum Y value.
  • Method Details

    • getX

      float getX()
      The minimum X value.
      Returns:
      the minimum X value in user units.
    • setX

      void setX(float x) throws DOMException
      Sets the minimum X value.
      Parameters:
      x - the minimum X value in user units.
      Throws:
      DOMException - NO_MODIFICATION_ALLOWED_ERR if the rectangle corresponds to a read only attribute or when the object itself is read only.
    • getY

      float getY()
      The minimum Y value.
      Returns:
      the minimum Y value in user units.
    • setY

      void setY(float y) throws DOMException
      Sets the minimum Y value.
      Parameters:
      y - the minimum Y value in user units.
      Throws:
      DOMException - NO_MODIFICATION_ALLOWED_ERR if the rectangle corresponds to a read only attribute or when the object itself is read only.
    • getWidth

      float getWidth()
      The width.
      Returns:
      the width in user units.
    • setWidth

      void setWidth(float width) throws DOMException
      Sets the width of the rectangle.
      Parameters:
      width - the width in user units.
      Throws:
      DOMException - NO_MODIFICATION_ALLOWED_ERR if the rectangle corresponds to a read only attribute or when the object itself is read only.
    • getHeight

      float getHeight()
      The height.
      Returns:
      the height in user units.
    • setHeight

      void setHeight(float height) throws DOMException
      Sets the height of the rectangle.
      Parameters:
      height - the height in user units.
      Throws:
      DOMException - NO_MODIFICATION_ALLOWED_ERR if the rectangle corresponds to a read only attribute or when the object itself is read only.