Package org.djutils.draw.line
Interface LineSegment<P extends Point<P>,D extends Directed<D>>
- Type Parameters:
P
- The point type (2d or 3d)D
- The directed type (2d or 3d)
- All Superinterfaces:
Drawable<P>
,Project<P>
,Serializable
- All Known Implementing Classes:
LineSegment2d
,LineSegment3d
public interface LineSegment<P extends Point<P>,D extends Directed<D>>
extends Drawable<P>, Serializable, Project<P>
LineSegment is the interface for a line segment bound by 2 end points. 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-2024 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
-
Method Summary
Modifier and TypeMethodDescriptionclosestPointOnSegment
(P point) Project a Point on this LineSegment.Get the end point of this LineSegment.double
Get the length (distance from start point to end point) of this LineSegment.default D
getLocation
(double position) Create a DirectedPoint at the specified position along this LineSegment.getLocationExtended
(double position) Create a DirectedPoint at the specified position along this LineSegment.Get the start point of this LineSegment.reverse()
Construct a new LineSegment with the points of this LineSegment in reverse order.Methods inherited from interface org.djutils.draw.Drawable
getDimensions, getPointList, getPoints, size, toString, toString, toString, toString
Methods inherited from interface org.djutils.draw.line.Project
projectOrthogonal, projectOrthogonalExtended, projectOrthogonalFractional, projectOrthogonalFractionalExtended
-
Method Details
-
getStartPoint
P getStartPoint()Get the start point of this LineSegment.- Returns:
- P; the start point of the LineSegment
-
getEndPoint
P getEndPoint()Get the end point of this LineSegment.- Returns:
- P; the end point of the LineSegment
-
getLength
double getLength()Get the length (distance from start point to end point) of this LineSegment.- Returns:
- double; (distance from start point to end point) of this LineSegment
-
closestPointOnSegment
Project 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.- Parameters:
point
- P; the point to project onto the segment- Returns:
- P; either the start point, or the end point of the segment or a Point that lies somewhere in between those two.
- Throws:
NullPointerException
- when point is null
-
reverse
LineSegment<P,D> reverse()Construct a new LineSegment with the points of this LineSegment in reverse order.- Returns:
- LineSegment; the new LineSegment
-
getLocation
Create a DirectedPoint at the specified position along this LineSegment.- Parameters:
position
- double; the distance from the start point of this LineSegment.- Returns:
- D; a DirectedPoint beginning at the specified position
- Throws:
DrawRuntimeException
- when position is NaN, < 0 or > length of this LineSegment
-
getLocationExtended
Create a DirectedPoint at the specified position along this LineSegment.- Parameters:
position
- double; the distance from the start point of this LineSegment.- Returns:
- D; a DirectedPoint at the specified position
- Throws:
DrawRuntimeException
- when position is NaN or infinite
-