Package org.djutils.draw.line
Class LineSegment3d
java.lang.Object
org.djutils.draw.line.LineSegment3d
- All Implemented Interfaces:
Serializable
,Drawable<Point3d>
,Drawable3d
,LineSegment<Point3d,
,DirectedPoint3d> Project<Point3d>
public class LineSegment3d
extends Object
implements Drawable3d, LineSegment<Point3d,DirectedPoint3d>
LineSegment3d is a line segment bound by 2 end points in 3D-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-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
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionLineSegment3d
(double startX, double startY, double startZ, double endX, double endY, double endZ) Construct a new LineSegment3d from six coordinates.LineSegment3d
(double startX, double startY, double startZ, Point3d end) Construct a new LineSegment3d from three coordinates and a Point3d.LineSegment3d
(Point3d start, double endX, double endY, double endZ) Construct a new LineSegment3d from a Point3d and three coordinates.LineSegment3d
(Point3d start, Point3d end) Construct a new LineSegment3d from two Point3d objects. -
Method Summary
Modifier and TypeMethodDescriptionclosestPointOnSegment
(Point3d point) Project a Point on this LineSegment.boolean
Retrieve the bounding box of the object.Get the end point of this LineSegment.double
Get 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.Retrieve, or generate all points that make up the object.Get the start point of this LineSegment.int
hashCode()
project()
Project the object onto the z=0 plane.projectOrthogonal
(Point3d point) Project a point onto this object.projectOrthogonalExtended
(Point3d point) Project a point onto this object.double
Project a point onto this object.double
Project a point onto this object.reverse()
Construct a new LineSegment with the points of this LineSegment in reverse order.int
size()
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, wait
Methods inherited from interface org.djutils.draw.Drawable
getPointList, toString, toString
Methods inherited from interface org.djutils.draw.Drawable3d
getDimensions
Methods 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. -
startZ
public final double startZThe start z-coordinate. -
endX
public final double endXThe end x-coordinate. -
endY
public final double endYThe end y-coordinate. -
endZ
public final double endZThe end z-coordinate.
-
-
Constructor Details
-
LineSegment3d
public LineSegment3d(double startX, double startY, double startZ, double endX, double endY, double endZ) throws DrawRuntimeException Construct a new LineSegment3d from six coordinates.- Parameters:
startX
- double; the x-coordinate of the start pointstartY
- double; the y-coordinate of the start pointstartZ
- double; the z-coordinate of the start pointendX
- double; the x-coordinate of the end pointendY
- double; the y-coordinate of the end pointendZ
- double; the z-coordinate of the end point- Throws:
DrawRuntimeException
- when (startX,startY) is equals end (endX,endY)
-
LineSegment3d
public LineSegment3d(Point3d start, double endX, double endY, double endZ) throws NullPointerException, DrawRuntimeException Construct a new LineSegment3d from a Point3d and three coordinates.- Parameters:
start
- Point3d; the start pointendX
- double; the x-coordinate of the end pointendY
- double; the y-coordinate of the end pointendZ
- double; the z-coordinate of the end point- Throws:
NullPointerException
- when start is nullDrawRuntimeException
- when start has the exact coordinates endX, endY
-
LineSegment3d
public LineSegment3d(double startX, double startY, double startZ, Point3d end) throws NullPointerException, DrawRuntimeException Construct a new LineSegment3d from three coordinates and a Point3d.- Parameters:
startX
- double; the x-coordinate of the start pointstartY
- double; the y-coordinate of the start pointstartZ
- double; the z-coordinate of the start pointend
- Point3d; the end point- Throws:
NullPointerException
- when end is nullDrawRuntimeException
- when end has the exact coordinates startX, startY, startZ
-
LineSegment3d
Construct a new LineSegment3d from two Point3d objects.- Parameters:
start
- Point3d; the start pointend
- Point3d; the end point- Throws:
NullPointerException
- when start is nullDrawRuntimeException
- when start has the exact coordinates endX, endY, endZ
-
-
Method Details
-
getStartPoint
Description copied from interface:LineSegment
Get the start point of this LineSegment.- Specified by:
getStartPoint
in interfaceLineSegment<Point3d,
DirectedPoint3d> - Returns:
- P; the start point of the LineSegment
-
getEndPoint
Description copied from interface:LineSegment
Get the end point of this LineSegment.- Specified by:
getEndPoint
in interfaceLineSegment<Point3d,
DirectedPoint3d> - Returns:
- P; the end point of the LineSegment
-
getLength
public double getLength()Description copied from interface:LineSegment
Get the length (distance from start point to end point) of this LineSegment.- Specified by:
getLength
in interfaceLineSegment<Point3d,
DirectedPoint3d> - Returns:
- double; (distance from start point to end point) of this LineSegment
-
getPoints
Description copied from interface:Drawable
Retrieve, or generate all points that make up the object. -
size
public int size()Description copied from interface:Drawable
Retrieve the number of points that make up the object. -
getBounds
Description copied from interface:Drawable3d
Retrieve the bounding box of the object.- Specified by:
getBounds
in interfaceDrawable3d
- Returns:
- Bounds3d; the bounding box of the object
-
project
Description copied from interface:Drawable3d
Project the object onto the z=0 plane.- Specified by:
project
in interfaceDrawable3d
- Returns:
- Drawable2d; the projected object
- Throws:
InvalidProjectionException
- when projecting onto the z=0 plane results in an invalid object. E.g. a Line3d that consists of points that all have the exact same x and y coordinates cannot be a line after projecting on the z=0 plane.DrawRuntimeException
-
getLocationExtended
Description copied from interface:LineSegment
Create a DirectedPoint at the specified position along this LineSegment.- Specified by:
getLocationExtended
in interfaceLineSegment<Point3d,
DirectedPoint3d> - 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
-
closestPointOnSegment
Description copied from interface:LineSegment
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.- Specified by:
closestPointOnSegment
in interfaceLineSegment<Point3d,
DirectedPoint3d> - 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.
-
reverse
Description copied from interface:LineSegment
Construct a new LineSegment with the points of this LineSegment in reverse order.- Specified by:
reverse
in interfaceLineSegment<Point3d,
DirectedPoint3d> - Returns:
- LineSegment; the new LineSegment
-
projectOrthogonal
Description copied from interface:Project
Project 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, null is returned.- Specified by:
projectOrthogonal
in interfaceProject<Point3d>
- Parameters:
point
- P; the point- Returns:
- P; 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.
- Throws:
NullPointerException
- when point is null;
-
projectOrthogonalExtended
Description copied from interface:Project
Project 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:
projectOrthogonalExtended
in interfaceProject<Point3d>
- Parameters:
point
- P; the point- Returns:
- P; 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
- Throws:
NullPointerException
- when point is null;
-
projectOrthogonalFractional
Description copied from interface:Project
Project 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, NaN is returned.- Specified by:
projectOrthogonalFractional
in interfaceProject<Point3d>
- Parameters:
point
- P; the point- Returns:
- double; the fractional position of the projection of the point (may be NaN if no sensible projection is possible). If the result is not NaN; the result lies somewhere on this object.
- Throws:
NullPointerException
- when point is null;
-
projectOrthogonalFractionalExtended
Description copied from interface:Project
Project 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:
projectOrthogonalFractionalExtended
in interfaceProject<Point3d>
- Parameters:
point
- P; the point- Returns:
- double; 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.
- Throws:
NullPointerException
- when point is null;
-
toString
Description copied from interface:Drawable
Produce 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:Drawable
Produce a String describing the Drawable.- Specified by:
toString
in interfaceDrawable<Point3d>
- Parameters:
doubleFormat
- String; a format string (something like "%6.3f") which will be used to render every coordinate value)doNotIncludeClassName
- boolean; if true; the output of toString is 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:
- String; textual representation of the Drawable
-
hashCode
public int hashCode() -
equals
-