Uses of Class
math.geom2d.curve.PolyCurve2D

Packages that use PolyCurve2D
math.geom2d.curve Curves interface hierarchy, and implementations of curve sets and various poly-curves. 
math.geom2d.spline Bezier curves, and more generally polynomial curves. 
 

Uses of PolyCurve2D in math.geom2d.curve
 

Subclasses of PolyCurve2D in math.geom2d.curve
 class BoundaryPolyCurve2D<T extends ContinuousOrientedCurve2D>
          A single continuous oriented curve, which defines the boundary of a planar domain.
 class PolyOrientedCurve2D<T extends ContinuousOrientedCurve2D>
          A PolyOrientedCurve2D is a set of piecewise smooth curve arcs, such that the end of a curve is the beginning of the next curve, and such that they do not intersect nor self-intersect.
 

Methods in math.geom2d.curve that return PolyCurve2D
 PolyCurve2D<? extends ContinuousCurve2D> PolyCurve2D.getReverseCurve()
           
 PolyCurve2D<? extends ContinuousCurve2D> PolyCurve2D.getSubCurve(double t0, double t1)
          Return an instance of PolyCurve2D.
 PolyCurve2D<? extends ContinuousCurve2D> PolyCurve2D.transform(AffineTransform2D trans)
           
 

Uses of PolyCurve2D in math.geom2d.spline
 

Subclasses of PolyCurve2D in math.geom2d.spline
 class PolyBezierCurve2D
          A set of bezier curves, making a continuous curve.