Uses of Class
math.geom2d.polygon.Polyline2D

Packages that use Polyline2D
math.geom2d.conic Definition of various conic curves like circles, ellipses, parabolas and hyperbolas, and their respective arcs. 
math.geom2d.curve Curves interface hierarchy, and implementations of curve sets and various poly-curves. 
math.geom2d.domain Definition of planar domains, and basic implementations. 
math.geom2d.line Implementations of 'linear shapes', i.e. curves which can be embedded into a straight lines, like straight lines, line segments, or rays
math.geom2d.polygon Definitions and implementations of shapes composed several line segments: polylines, rings, polygons. 
math.geom2d.spline Bezier curves, and more generally polynomial curves. 
 

Uses of Polyline2D in math.geom2d.conic
 

Methods in math.geom2d.conic that return Polyline2D
 Polyline2D EllipseArc2D.asPolyline(int n)
           
 Polyline2D CircleArc2D.asPolyline(int n)
           
 Polyline2D ParabolaArc2D.asPolyline(int n)
           
 

Uses of Polyline2D in math.geom2d.curve
 

Methods in math.geom2d.curve that return Polyline2D
 Polyline2D PolyCurve2D.asPolyline(int n)
          Converts this PolyCurve2D into a polyline with the given number of edges.
 

Uses of Polyline2D in math.geom2d.domain
 

Methods in math.geom2d.domain that return Polyline2D
static Polyline2D Boundaries2D.getBoundaryPortion(Box2D box, Point2D p0, Point2D p1)
          Extracts a portion of the boundary of a bounded box.
 

Uses of Polyline2D in math.geom2d.line
 

Methods in math.geom2d.line that return Polyline2D
 Polyline2D StraightLine2D.asPolyline(int n)
          Throws an exception when called.
 

Uses of Polyline2D in math.geom2d.polygon
 

Methods in math.geom2d.polygon that return Polyline2D
 Polyline2D Polyline2D.clone()
           
static Polyline2D Polyline2D.create(java.util.Collection<? extends Point2D> points)
          Static factory for creating a new Polyline2D from a collection of points.
static Polyline2D Polyline2D.create(Point2D... points)
          Static factory for creating a new Polyline2D from an array of points.
 Polyline2D Polyline2D.reverse()
          Returns the polyline with same points considered in reverse order.
 Polyline2D LinearRing2D.subCurve(double t0, double t1)
          Return an instance of Polyline2D.
 Polyline2D Polyline2D.subCurve(double t0, double t1)
          Return an instance of Polyline2D.
 Polyline2D Polyline2D.transform(AffineTransform2D trans)
           
 

Methods in math.geom2d.polygon that return types with arguments of type Polyline2D
 java.util.Collection<? extends Polyline2D> Polyline2D.continuousCurves()
           
 

Uses of Polyline2D in math.geom2d.spline
 

Methods in math.geom2d.spline that return Polyline2D
 Polyline2D CubicBezierCurve2D.asPolyline(int n)
           
 Polyline2D QuadBezierCurve2D.asPolyline(int n)