Interface SVGRectangle

All Superinterfaces:
AllowsConditionalProcessingAttributes, AllowsGlobalEventAttributes, AllowsGraphicalEventAttributes, AllowsPresentationAttributes, AllowsStyleAttributes, Element, SVGElement, SVGElementWithChildren
All Known Implementing Classes:
SVGElementAdapter, SVGGenericElement, SVGRectangleImpl

The definition for the SVG <rect> element.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: SVGRectangle.java 1074 2023-10-02 12:05:06Z tquadrat $
Since:
0.0.5
UML Diagram
UML Diagram for "org.tquadrat.foundation.svg.SVGRectangle"

UML Diagram for "org.tquadrat.foundation.svg.SVGRectangle"

UML Diagram for "org.tquadrat.foundation.svg.SVGRectangle"
  • Method Details

    • defineRectangle

      default void defineRectangle(SVGNumber x, SVGNumber y, SVGNumber width, SVGNumber height)
      Sets the start and end points for this line.
      Parameters:
      x - The x coordinate for the upper left corner of the rectangle.
      y - The y coordinate for the upper left corner of the rectangle.
      width - The width of the rectangle.
      height - The height of the rectangle.
    • setHeight

      void setHeight(SVGNumber value)
      Sets the height for this SVG <rect> element.
      Parameters:
      value - The height.
    • setPathLength

      Sets the length of the path represented by this SVG <rect> element.
      Parameters:
      length - The author's computation of the total length of the path, in user units. This type is used to calibrate the user agent's own distance-along-a-path calculations with that of the author. The user agent will scale all distance-along-a-path computations by the ratio of this type to the user agent's own computed type for total path length.

      A type of zero is valid, but a negative type is an error.
      Throws:
      IllegalArgumentException - The type is less than 0.
    • setPathLength

      default void setPathLength(double length)
      Sets the length of the path represented by this SVG <rect> element.
      Parameters:
      length - The author's computation of the total length of the path, in user units. This type is used to calibrate the user agent's own distance-along-a-path calculations with that of the author. The user agent will scale all distance-along-a-path computations by the ratio of this type to the user agent's own computed type for total path length.

      A type of zero is valid, but a negative type is an error.
      Throws:
      IllegalArgumentException - The type is less than 0.
    • setPathLength

      default void setPathLength(long length)
      Sets the length of the path represented by this SVG <rect> element.
      Parameters:
      length - The author's computation of the total length of the path, in user units. This type is used to calibrate the user agent's own distance-along-a-path calculations with that of the author. The user agent will scale all distance-along-a-path computations by the ratio of this type to the user agent's own computed type for total path length.

      A type of zero is valid, but a negative type is an error.
      Throws:
      IllegalArgumentException - The type is less than 0.
    • setRx

      void setRx(SVGNumber value)
      Sets the horizontal corner radius for this SVG <rect> element.
      Parameters:
      value - The horizontal corner radius.
    • setRy

      void setRy(SVGNumber value)
      Sets the vertical corner radius for this SVG <rect> element.
      Parameters:
      value - The vertical corner radius.
    • setWidth

      void setWidth(SVGNumber value)
      Sets the width for this SVG <rect> element.
      Parameters:
      value - The width.
    • setX

      void setX(SVGNumber value)
      Sets the x coordinate for the upper left corner of the rectangle.
      Parameters:
      value - The x coordinate.
    • setY

      void setY(SVGNumber value)
      Sets the y coordinate for the upper left corner of the rectangle.
      Parameters:
      value - The y coordinate.