Uses of Class
org.hipparchus.geometry.euclidean.twod.Line
-
Packages that use Line Package Description org.hipparchus.geometry.euclidean.threed This package provides basic 3D geometry components.org.hipparchus.geometry.euclidean.twod This package provides basic 2D geometry components.org.hipparchus.geometry.euclidean.twod.hull This package provides algorithms to generate the convex hull for a set of points in an two-dimensional euclidean space. -
-
Uses of Line in org.hipparchus.geometry.euclidean.threed
Method parameters in org.hipparchus.geometry.euclidean.threed with type arguments of type Line Modifier and Type Method Description protected SubPlane
SubPlane. buildNew(Plane hyperplane, Region<Euclidean2D,Vector2D,Line,SubLine> remainingRegion)
Build a sub-hyperplane from an hyperplane and a region.Constructor parameters in org.hipparchus.geometry.euclidean.threed with type arguments of type Line Constructor Description SubPlane(Plane hyperplane, Region<Euclidean2D,Vector2D,Line,SubLine> remainingRegion)
Simple constructor. -
Uses of Line in org.hipparchus.geometry.euclidean.twod
Methods in org.hipparchus.geometry.euclidean.twod that return Line Modifier and Type Method Description Line
Line. copySelf()
Copy the instance.Line
Segment. getLine()
Get the line containing the segment.Line
Line. getReverse()
Get the reverse of the instance.Methods in org.hipparchus.geometry.euclidean.twod that return types with arguments of type Line Modifier and Type Method Description static Transform<Euclidean2D,Vector2D,Line,SubLine,Euclidean1D,Vector1D,OrientedPoint,SubOrientedPoint>
Line. getTransform(double cXX, double cYX, double cXY, double cYY, double cX1, double cY1)
Get aTransform
embedding an affine transform.SubHyperplane.SplitSubHyperplane<Euclidean2D,Vector2D,Line,SubLine>
SubLine. split(Line hyperplane)
Split the instance in two parts by an hyperplane.Methods in org.hipparchus.geometry.euclidean.twod with parameters of type Line Modifier and Type Method Description protected SubLine
SubLine. buildNew(Line hyperplane, Region<Euclidean1D,Vector1D,OrientedPoint,SubOrientedPoint> remainingRegion)
Build a sub-hyperplane from an hyperplane and a region.double
Line. getOffset(Line line)
Get the offset (oriented distance) of a parallel line.Vector2D
Line. intersection(Line other)
Get the intersection point of the instance and another line.boolean
Line. isParallelTo(Line line)
Check the instance is parallel to another line.boolean
Line. sameOrientationAs(Line other)
Check if the instance has the same orientation as another hyperplane.SubHyperplane.SplitSubHyperplane<Euclidean2D,Vector2D,Line,SubLine>
SubLine. split(Line hyperplane)
Split the instance in two parts by an hyperplane.Method parameters in org.hipparchus.geometry.euclidean.twod with type arguments of type Line Modifier and Type Method Description PolygonsSet
PolygonsSet. buildNew(BSPTree<Euclidean2D,Vector2D,Line,SubLine> tree)
Build a region using the instance as a prototype.Constructors in org.hipparchus.geometry.euclidean.twod with parameters of type Line Constructor Description Line(Line line)
Copy constructor.Segment(Vector2D start, Vector2D end, Line line)
Build a segment.SubLine(Line hyperplane, Region<Euclidean1D,Vector1D,OrientedPoint,SubOrientedPoint> remainingRegion)
Simple constructor.Constructor parameters in org.hipparchus.geometry.euclidean.twod with type arguments of type Line Constructor Description PolygonsSet(BSPTree<Euclidean2D,Vector2D,Line,SubLine> tree, double tolerance)
Build a polygons set from a BSP tree. -
Uses of Line in org.hipparchus.geometry.euclidean.twod.hull
Methods in org.hipparchus.geometry.euclidean.twod.hull that return types with arguments of type Line Modifier and Type Method Description Region<Euclidean2D,Vector2D,Line,SubLine>
ConvexHull2D. createRegion()
Returns a new region that is enclosed by the convex hull.
-