public class LineSegment3D extends Object implements ContinuousCurve3D
Shape3D.EmptySet3D
Modifier and Type | Field and Description |
---|---|
protected double |
x1 |
protected double |
x2 |
protected double |
y1 |
protected double |
y2 |
protected double |
z1 |
protected double |
z2 |
Constructor and Description |
---|
LineSegment3D(Point3D p1,
Point3D p2) |
Modifier and Type | Method and Description |
---|---|
Shape3D |
clip(Box3D box) |
boolean |
contains(Point3D point) |
Box3D |
getBoundingBox() |
Collection<LineSegment3D> |
getContinuousCurves()
Returns the collection of continuous curves which constitute this curve.
|
double |
getDistance(LineSegment3D segment)
Returns distance of this segment from 'segment'.
|
double |
getDistance(Point3D point)
Gets the distance of the shape to the given point, or the distance of
point to the frontier of the shape in the case of a plain shape.
|
Point3D |
getFirstPoint()
Get the first point of the curve.
|
Point3D |
getLastPoint()
Get the last point of the curve.
|
Point3D |
getPoint(double t)
Gets the point from a parametric representation of the curve.
|
Point3D |
getPoint(double t,
Point3D point)
Same as getPoint(t), but gives the point as a parameter.
|
double |
getPosition(Point3D point)
If point does not project on the line segment, return Double.NaN.
|
Curve3D |
getReverseCurve()
Returns the curve with same trace on the plane with parametrization in
reverse order.
|
Collection<Point3D> |
getSingularPoints()
Returns the2 end points.
|
LineSegment3D |
getSubCurve(double t0,
double t1)
Returns a portion of the original curve, delimited by two positions on
the curve.
|
StraightLine3D |
getSupportingLine() |
double |
getT0()
Return 0, by definition of LineSegment.
|
double |
getT1()
Return 1, by definition of LineSegment.
|
boolean |
isBounded()
Returns true, as a LineSegment3D is always bounded.
|
boolean |
isEmpty()
Returns false, as a LineSegment3D is never empty.
|
double |
project(Point3D point)
Returns the position of the closest orthogonal projection of the point on
the curve, or of the closest singular point.
|
Point3D |
projectPoint(Point3D point) |
Curve3D |
transform(AffineTransform3D trans)
Transforms the curve by an affine transform.
|
protected double x1
protected double y1
protected double z1
protected double x2
protected double y2
protected double z2
public StraightLine3D getSupportingLine()
public Collection<LineSegment3D> getContinuousCurves()
Curve3D
getContinuousCurves
in interface Curve3D
public Point3D getFirstPoint()
Curve3D
getPoint(getT0())
.getFirstPoint
in interface Curve3D
public Point3D getLastPoint()
Curve3D
getPoint(getT1())
.getLastPoint
in interface Curve3D
public Point3D getPoint(double t)
Curve3D
public Point3D getPoint(double t, Point3D point)
Curve3D
public double getPosition(Point3D point)
getPosition
in interface Curve3D
point
- a point belonging to the curveCurve3D.getPosition(math.geom3d.Point3D)
public Curve3D getReverseCurve()
Curve3D
getReverseCurve
in interface Curve3D
public Collection<Point3D> getSingularPoints()
getSingularPoints
in interface Curve3D
Curve3D.getSingularPoints()
public LineSegment3D getSubCurve(double t0, double t1)
Curve3D
getSubCurve
in interface Curve3D
t0
- position of the start of the sub-curvet1
- position of the end of the sub-curvepublic double getT0()
getT0
in interface Curve3D
Curve3D.getT0()
public double getT1()
getT1
in interface Curve3D
Curve3D.getT1()
public double project(Point3D point)
Curve3D
public Curve3D transform(AffineTransform3D trans)
Curve3D
public Box3D getBoundingBox()
getBoundingBox
in interface Shape3D
public double getDistance(Point3D point)
Shape3D
getDistance
in interface Shape3D
public double getDistance(LineSegment3D segment)
Based on: http://softsurfer.com/Archive/algorithm_0106/
dist3D_Segment_to_Segment()
segment
- public boolean isBounded()
isBounded
in interface Shape3D
Shape3D.isBounded()
public boolean isEmpty()
isEmpty
in interface Shape3D
Shape3D.isEmpty()
Copyright © 2012 AMIS research group, Faculty of Mathematics and Physics, Charles University in Prague, Czech Republic. All Rights Reserved.