Package org.djutils.draw.line
Class LineSegment2d
java.lang.Object
org.djutils.draw.line.LineSegment2d
- All Implemented Interfaces:
Serializable,Iterable<Point2d>,Drawable<Point2d>,Drawable2d,LineSegment<Point2d,,DirectedPoint2d> Project<Point2d>
public class LineSegment2d
extends Object
implements Drawable2d, LineSegment<Point2d,DirectedPoint2d>
LineSegment2d is a line segment bound by 2 end points in 2D-space. A line segment stores the order in which it has been
created, so the end points are known as 'start' and 'end'.
Copyright (c) 2020-2025 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUTILS License.
- Author:
- Alexander Verbraeck, Peter Knoppers, Wouter Schakel
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionLineSegment2d(double startX, double startY, double endX, double endY) Construct a new LineSegment2d from four coordinates.LineSegment2d(double startX, double startY, Point2d end) Construct a new LineSegment2d from two coordinates and a Point2d.LineSegment2d(Point2d start, double endX, double endY) Construct a new LineSegment2d from a Point2d and two coordinates.LineSegment2d(Point2d start, Point2d end) Construct a new LineSegment2d from two Point2d objects. -
Method Summary
Modifier and TypeMethodDescriptionclosestPointOnSegment(Point2d point) Project a Point on this LineSegment.booleanRetrieve the bounding rectangle of the object in absolute coordinates.Get the end point of this LineSegment.doubleGet the length (distance from start point to end point) of this LineSegment.getLocationExtended(double position) Create a DirectedPoint at the specified position along this LineSegment.Get the start point of this LineSegment.inthashCode()iterator()projectOrthogonal(Point2d point) Project a point onto this object.projectOrthogonalExtended(Point2d point) Project a point onto this object.doubleProject a point onto this object.doubleProject a point onto this object.reverse()Construct a new LineSegment with the points of this LineSegment in reverse order.intsize()Retrieve the number of points that make up the object.toString()Produce a string describing the Drawable using default conversion for the (double) coordinate values.Produce a String describing the Drawable.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.djutils.draw.Drawable
getPointList, toString, toStringMethods inherited from interface org.djutils.draw.Drawable2d
getDimensionsMethods inherited from interface java.lang.Iterable
forEach, spliteratorMethods inherited from interface org.djutils.draw.line.LineSegment
getLocation
-
Field Details
-
startX
public final double startXThe start x-coordinate. -
startY
public final double startYThe start y-coordinate. -
endX
public final double endXThe end x-coordinate. -
endY
public final double endYThe end y-coordinate.
-
-
Constructor Details
-
LineSegment2d
public LineSegment2d(double startX, double startY, double endX, double endY) Construct a new LineSegment2d from four coordinates.- Parameters:
startX- the x-coordinate of the start pointstartY- the y-coordinate of the start pointendX- the x-coordinate of the end pointendY- the y-coordinate of the end point- Throws:
IllegalArgumentException- when(startX,startY)is the same as(endX,endY)
-
LineSegment2d
Construct a new LineSegment2d from a Point2d and two coordinates.- Parameters:
start- the start pointendX- the x-coordinate of the end pointendY- the y-coordinate of the end point- Throws:
NullPointerException- whenstartisnullIllegalArgumentException- whenstarthas the exact coordinates(endX,endY)
-
LineSegment2d
public LineSegment2d(double startX, double startY, Point2d end) throws NullPointerException, IllegalArgumentException Construct a new LineSegment2d from two coordinates and a Point2d.- Parameters:
startX- the x-coordinate of the start pointstartY- the y-coordinate of the start pointend- the end point- Throws:
NullPointerException- whenendisnullIllegalArgumentException- whenendhas the exact coordinates(startX,startY)
-
LineSegment2d
Construct a new LineSegment2d from two Point2d objects.- Parameters:
start- the start pointend- the end point- Throws:
NullPointerException- whenstart, orendisnullIllegalArgumentException- whenstarthas the same coordinates asend
-
-
Method Details
-
getStartPoint
Description copied from interface:LineSegmentGet the start point of this LineSegment.- Specified by:
getStartPointin interfaceLineSegment<Point2d,DirectedPoint2d> - Returns:
- the start point of this LineSegment
-
getEndPoint
Description copied from interface:LineSegmentGet the end point of this LineSegment.- Specified by:
getEndPointin interfaceLineSegment<Point2d,DirectedPoint2d> - Returns:
- the end point of this LineSegment
-
getLength
public double getLength()Description copied from interface:LineSegmentGet the length (distance from start point to end point) of this LineSegment.- Specified by:
getLengthin interfaceLineSegment<Point2d,DirectedPoint2d> - Returns:
- (distance from start point to end point) of this LineSegment
-
iterator
-
size
public int size()Description copied from interface:DrawableRetrieve the number of points that make up the object. -
getAbsoluteBounds
Description copied from interface:Drawable2dRetrieve the bounding rectangle of the object in absolute coordinates.- Specified by:
getAbsoluteBoundsin interfaceDrawable2d- Returns:
- the bounding box of the object in absolute coordinates
-
getLocationExtended
Description copied from interface:LineSegmentCreate a DirectedPoint at the specified position along this LineSegment.- Specified by:
getLocationExtendedin interfaceLineSegment<Point2d,DirectedPoint2d> - Parameters:
position- the distance from the start point of this LineSegment.- Returns:
- a DirectedPoint at the specified position
-
closestPointOnSegment
Description copied from interface:LineSegmentProject a Point on this LineSegment. If the the projected points lies outside the line segment, the nearest end point of the line segment is returned. Otherwise the returned point lies between the end points of the line segment.
Adapted from example code provided by Paul Bourke.- Specified by:
closestPointOnSegmentin interfaceLineSegment<Point2d,DirectedPoint2d> - Parameters:
point- the point to project onto this segment- Returns:
- either the start point, or the end point of this segment or a Point that lies somewhere in between those two.
-
reverse
Description copied from interface:LineSegmentConstruct a new LineSegment with the points of this LineSegment in reverse order.- Specified by:
reversein interfaceLineSegment<Point2d,DirectedPoint2d> - Returns:
- the new LineSegment
-
projectOrthogonal
Description copied from interface:ProjectProject a point onto this object. For PolyLines and Polygons, there may be multiple valid solutions. In that case the solution that lies on the closest segment is returned. If there is no valid solution on the closest segment,nullis returned.- Specified by:
projectOrthogonalin interfaceProject<Point2d>- Parameters:
point- the point- Returns:
- the projection of the point (may be null if no sensible projection is possible). If the result is not
null; the result lies somewhere on this object.
-
projectOrthogonalExtended
Description copied from interface:ProjectProject a point onto this object. For PolyLines and Polygons, there may be multiple valid solutions. In that case the solution that lies on the closest segment is returned.- Specified by:
projectOrthogonalExtendedin interfaceProject<Point2d>- Parameters:
point- the point- Returns:
- the projection of the point. This result cannot be
null, but it may not lie on this object, but, in stead, lie on a line, or plane that extends this object
-
projectOrthogonalFractional
Description copied from interface:ProjectProject a point onto this object. For PolyLines and Polygons, there may be multiple valid solutions. In that case the solution that lies on the closest segment is returned. If there is no valid solution on the closest segment,NaNis returned.- Specified by:
projectOrthogonalFractionalin interfaceProject<Point2d>- Parameters:
point- the point- Returns:
- the fractional position of the projection of the point (may be
NaNif no sensible projection is possible). If the result is notNaN; the result lies somewhere on this object.
-
projectOrthogonalFractionalExtended
Description copied from interface:ProjectProject a point onto this object. For PolyLines and Polygons, there may be multiple valid solutions. In that case the solution that lies on the closest segment is returned.- Specified by:
projectOrthogonalFractionalExtendedin interfaceProject<Point2d>- Parameters:
point- the point- Returns:
- the fractional position of the projection of the point. This result cannot be
NaN, but it may be outside the range 0.0 .. 1.0.
-
toString
Description copied from interface:DrawableProduce a string describing the Drawable using default conversion for the (double) coordinate values. Regrettably, it is not allowed to provide a default implementation here. -
toString
Description copied from interface:DrawableProduce a String describing the Drawable.- Specified by:
toStringin interfaceDrawable<Point2d>- Parameters:
doubleFormat- a format string (something like "%6.3f") which will be used to render every coordinate value)doNotIncludeClassName- iftrue; the output oftoStringis not prefixed by the class name. This is useful for concatenating the textual representation of lots of Drawables (e.g. an array, or a List).- Returns:
- textual representation of the Drawable
-
hashCode
public int hashCode() -
equals
-