Package org.djutils.draw.line
Interface LineSegment<P extends Point<P,S>,R extends Ray<R,P,S>,S extends Space>
-
- Type Parameters:
P
- The point type (2d or 3d)R
- The ray type (2d or 3d)S
- The space type (2d or 3d)
- All Superinterfaces:
Drawable<P,S>
,Serializable
- All Known Implementing Classes:
LineSegment2d
,LineSegment3d
public interface LineSegment<P extends Point<P,S>,R extends Ray<R,P,S>,S extends Space> extends Drawable<P,S>, Serializable
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-2021 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
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description P
closestPointOnSegment(P point)
Project a Point on this LineSegment.P
getEndPoint()
Get the end point of this LineSegment.double
getLength()
Get the length (distance from start point to end point) of this LineSegment.default R
getLocation(double position)
Create a Ray on a specified point on this LineSegment.R
getLocationExtended(double position)
Create a Ray on a specified point on this LineSegment.P
getStartPoint()
Get the start point of this LineSegment.
-
-
-
Method Detail
-
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
P closestPointOnSegment(P point)
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 Point2d that lies somewhere in between those two.
-
getLocation
default R getLocation(double position) throws DrawRuntimeException
Create a Ray on a specified point on this LineSegment.- Parameters:
position
- double; the distance from the start point of this LineSegment.- Returns:
- R; a ray beginning at the specified position
- Throws:
DrawRuntimeException
- when position is NaN, < 0 or > length of this LineSegment
-
getLocationExtended
R getLocationExtended(double position) throws DrawRuntimeException
Create a Ray on a specified point on this LineSegment.- Parameters:
position
- double; the distance from the start point of this LineSegment.- Returns:
- R; a ray beginning at the specified position
- Throws:
DrawRuntimeException
- when position is NaN or infinite
-
-