Interface SVGLine

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

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

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

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

    • defineLine

      default void defineLine(SVGNumber x1, SVGNumber y1, SVGNumber x2, SVGNumber y2)
      Sets the start and end points for this line.
      Parameters:
      x1 - The x coordinate for the starting point of the line.
      y1 - The y coordinate for the starting point of the line.
      x2 - The x coordinate for the ending point of the line.
      y2 - The y coordinate for the ending point of the line.
    • setEndPoint

      default void setEndPoint(SVGNumber x, SVGNumber y)
      Sets the end point for this line.
      Parameters:
      x - The x coordinate for the ending point of the line.
      y - The y coordinate for the ending point of the line.
    • setPathLength

      Sets the length of the path represented by this SVG <line> 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 <line> 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 <line> 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.
    • setStartPoint

      default void setStartPoint(SVGNumber x, SVGNumber y)
      Sets the start point for this line.
      Parameters:
      x - The x coordinate for the starting point of the line.
      y - The y coordinate for the starting point of the line.
    • setX1

      void setX1(SVGNumber value)
      Sets the x coordinate of the starting point for this line.
      Parameters:
      value - The x coordinate.
    • setX2

      void setX2(SVGNumber value)
      Sets the x coordinate of the ending point for this line.
      Parameters:
      value - The x coordinate.
    • setY1

      void setY1(SVGNumber value)
      Sets the y coordinate of the starting point for this line.
      Parameters:
      value - The y coordinate.
    • setY2

      void setY2(SVGNumber value)
      Sets the y coordinate of the ending point for this line.
      Parameters:
      value - The y coordinate.