Uses of Class
math.geom2d.line.Polyline2D

Packages that use Polyline2D
math.geom2d.conic Conic curves like circles, ellipses, parabolas and hyperbolas Contains definition of various conic curves. 
math.geom2d.curve Curves interface hierarchy, and implementations of curve sets and various poly-curves. 
math.geom2d.line Straight curves : straight lines, line segments, rays, and polylines. 
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 ParabolaArc2D.getAsPolyline(int n)
          Returns the polyline approximating this parabola arc, by using N line segments.
 Polyline2D Ellipse2D.getAsPolyline(int n)
          return as a closed polyline with n line segments.
 Polyline2D HyperbolaBranchArc2D.getAsPolyline(int n)
           
 Polyline2D HyperbolaBranch2D.getAsPolyline(int n)
          returns a hyperbola arc with -100
 Polyline2D EllipseArc2D.getAsPolyline(int n)
           
 Polyline2D Parabola2D.getAsPolyline(int n)
          return the polyline of the parabola arc from t=-100 to t=100.
 

Uses of Polyline2D in math.geom2d.curve
 

Methods in math.geom2d.curve that return Polyline2D
 Polyline2D ContinuousCurve2D.getAsPolyline(int n)
          Returns an approximation of the curve as a polyline with n line segments.
 Polyline2D PolyCurve2D.getAsPolyline(int n)
           
 

Uses of Polyline2D in math.geom2d.line
 

Subclasses of Polyline2D in math.geom2d.line
 class ClosedPolyline2D
          Extends Polyline2D, by considering the last point is connected to the first one.
 

Methods in math.geom2d.line that return Polyline2D
 Polyline2D Polyline2D.getAsPolyline(int n)
           
 Polyline2D LineObject2D.getAsPolyline(int n)
           
 Polyline2D LineArc2D.getAsPolyline(int n)
           
 Polyline2D Polyline2D.getReverseCurve()
          Returns the polyline with same points considered in reverse order.
 Polyline2D Polyline2D.getSubCurve(double t0, double t1)
          Return an instance of Polyline2D.
 Polyline2D ClosedPolyline2D.getSubCurve(double t0, double t1)
          Return an instance of Polyline2D.
 Polyline2D Polyline2D.transform(AffineTransform2D trans)
           
 

Methods in math.geom2d.line that return types with arguments of type Polyline2D
 CurveSet2D<? extends Polyline2D> Polyline2D.clip(Box2D box)
          Clip the polyline by a box.
 

Uses of Polyline2D in math.geom2d.spline
 

Methods in math.geom2d.spline that return Polyline2D
 Polyline2D BezierCurve2D.getAsPolyline(int n)
          Creates a polyline with n line segments approximating the Bezier curve.