Uses of Class
math.geom2d.domain.PolyOrientedCurve2D

Packages that use PolyOrientedCurve2D
math.geom2d.circulinear Definition of circulinear shapes and some implementations. 
math.geom2d.domain Definition of planar domains, and basic implementations. 
 

Uses of PolyOrientedCurve2D in math.geom2d.circulinear
 

Subclasses of PolyOrientedCurve2D in math.geom2d.circulinear
 class BoundaryPolyCirculinearCurve2D<T extends CirculinearContinuousCurve2D>
          A continuous boundary which is composed of several continuous circulinear curves.
 class GenericCirculinearRing2D
          A basic implementation of a CirculinearRing2D, which is assumed to be always bounded and closed.
 class PolyCirculinearCurve2D<T extends CirculinearContinuousCurve2D>
          A continuous curve which is composed of several continuous circulinear curves.
 

Uses of PolyOrientedCurve2D in math.geom2d.domain
 

Subclasses of PolyOrientedCurve2D in math.geom2d.domain
 class BoundaryPolyCurve2D<T extends ContinuousOrientedCurve2D>
          A single continuous oriented curve, which defines the boundary of a planar domain.
 

Methods in math.geom2d.domain that return PolyOrientedCurve2D
static
<T extends ContinuousOrientedCurve2D>
PolyOrientedCurve2D<T>
PolyOrientedCurve2D.create(java.util.Collection<T> curves)
          Static factory for creating a new PolyOrientedCurve2D from a collection of curves.
static
<T extends ContinuousOrientedCurve2D>
PolyOrientedCurve2D<T>
PolyOrientedCurve2D.create(java.util.Collection<T> curves, boolean closed)
          Static factory for creating a new PolyOrientedCurve2D from a collection of curves and a flag indicating if the curve is closed or not.
static
<T extends ContinuousOrientedCurve2D>
PolyOrientedCurve2D<T>
PolyOrientedCurve2D.create(T... curves)
          Static factory for creating a new PolyOrientedCurve2D from an array of curves.
static
<T extends ContinuousOrientedCurve2D>
PolyOrientedCurve2D<T>
PolyOrientedCurve2D.create(T[] curves, boolean closed)
          Static factory for creating a new PolyOrientedCurve2D from an array of curves and a flag indicating if the curve is closed or not.
static
<T extends ContinuousOrientedCurve2D>
PolyOrientedCurve2D<T>
PolyOrientedCurve2D.createClosed(T... curves)
          Static factory for creating a new PolyOrientedCurve2D from an array of curves.
 PolyOrientedCurve2D<? extends ContinuousOrientedCurve2D> PolyOrientedCurve2D.reverse()
           
 PolyOrientedCurve2D<? extends ContinuousOrientedCurve2D> PolyOrientedCurve2D.subCurve(double t0, double t1)
          Returns a portion of this curve as an instance of PolyOrientedCurve2D.
 PolyOrientedCurve2D<?> PolyOrientedCurve2D.transform(AffineTransform2D trans)