Uses of Class
math.geom2d.polygon.LinearCurve2D

Packages that use LinearCurve2D
math.geom2d.curve Curves interface hierarchy, and implementations of curve sets and various poly-curves. 
math.geom2d.polygon Definitions and implementations of shapes composed several line segments: polylines, rings, polygons. 
 

Uses of LinearCurve2D in math.geom2d.curve
 

Methods in math.geom2d.curve that return LinearCurve2D
 LinearCurve2D ContinuousCurve2D.asPolyline(int n)
          Returns an approximation of the curve as a polyline with n line segments.
 LinearCurve2D AbstractContinuousCurve2D.asPolyline(int n)
          Converts this continuous curve to an instance of LinearCurve2D with the given number of edges.
 

Uses of LinearCurve2D in math.geom2d.polygon
 

Subclasses of LinearCurve2D in math.geom2d.polygon
 class LinearRing2D
           A LinearRing2D is a Polyline2D whose last point is connected to the first one.
 class Polyline2D
          A polyline is a continuous curve where each piece of the curve is a LineSegment2D.
 

Methods in math.geom2d.polygon that return types with arguments of type LinearCurve2D
 CurveSet2D<? extends LinearCurve2D> LinearCurve2D.clip(Box2D box)
          Clips the polyline by a box.
 java.util.Collection<? extends LinearCurve2D> LinearCurve2D.continuousCurves()
           
 

Methods in math.geom2d.polygon with parameters of type LinearCurve2D
static boolean Polylines2D.hasMultipleVertices(LinearCurve2D polyline)
          Checks if the open polyline has multiple vertices.
static boolean Polylines2D.hasMultipleVertices(LinearCurve2D polyline, boolean closed)
          Checks if the input polyline has multiple vertices.
static java.util.Collection<Point2D> Polylines2D.intersect(LinearCurve2D poly1, LinearCurve2D poly2)
          Return all intersection points between the 2 polylines.