Uses of Interface
math.geom2d.ShapeSet2D

Packages that use ShapeSet2D
math.geom2d Planar geometry toolbox. 
math.geom2d.circulinear Definition of circulinear shapes and some implementations. 
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.point Data structures for point sets. 
math.geom2d.spline Bezier curves, and more generally polynomial curves. 
 

Uses of ShapeSet2D in math.geom2d
 

Classes in math.geom2d that implement ShapeSet2D
 class ShapeArray2D<T extends Shape2D>
          Default Implementation of ShapeSet2D.
 

Methods in math.geom2d that return ShapeSet2D
 ShapeSet2D<? extends Shape2D> ShapeArray2D.transform(AffineTransform2D trans)
           
 

Uses of ShapeSet2D in math.geom2d.circulinear
 

Subinterfaces of ShapeSet2D in math.geom2d.circulinear
 interface CirculinearCurveSet2D<T extends CirculinearCurve2D>
          A specialization of CurveSet2D that accepts only instances of CirculinearCurve2D.
 

Classes in math.geom2d.circulinear that implement ShapeSet2D
 class BoundaryPolyCirculinearCurve2D<T extends CirculinearContinuousCurve2D>
          A continuous boundary which is composed of several continuous circulinear curves.
 class CirculinearContourArray2D<T extends CirculinearContour2D>
          A circulinear boundary which is composed of several CirculinearContour2D.
 class CirculinearCurveArray2D<T extends CirculinearCurve2D>
          A specialization of CurveArray2D that accepts only instances of CirculinearCurve2D.
 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 ShapeSet2D in math.geom2d.conic
 

Classes in math.geom2d.conic that implement ShapeSet2D
 class Hyperbola2D
          An Hyperbola, which is represented as a curve set of two boundary curves which are instances of HyperbolaBranch2D.
 

Uses of ShapeSet2D in math.geom2d.curve
 

Subinterfaces of ShapeSet2D in math.geom2d.curve
 interface CurveSet2D<T extends Curve2D>
           A parameterized set of curves.
 

Classes in math.geom2d.curve that implement ShapeSet2D
 class CurveArray2D<T extends Curve2D>
           A parameterized set of curves.
 class PolyCurve2D<T extends ContinuousCurve2D>
          A PolyCurve2D 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.
 

Uses of ShapeSet2D in math.geom2d.domain
 

Subinterfaces of ShapeSet2D in math.geom2d.domain
 interface DomainSet2D<T extends Domain2D>
          General interface for a set of domains, that is itself a domain.
 

Classes in math.geom2d.domain that implement ShapeSet2D
 class BoundaryPolyCurve2D<T extends ContinuousOrientedCurve2D>
          A single continuous oriented curve, which defines the boundary of a planar domain.
 class ContourArray2D<T extends Contour2D>
          A ContourArray2D is a set of contours.
 class DomainArray2D<T extends Domain2D>
          An array of domains.
 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.
 

Uses of ShapeSet2D in math.geom2d.point
 

Subinterfaces of ShapeSet2D in math.geom2d.point
 interface PointSet2D
          A set of points.
 

Classes in math.geom2d.point that implement ShapeSet2D
 class PointArray2D
          Represent the union of a finite number of Point2D.
 

Uses of ShapeSet2D in math.geom2d.spline
 

Classes in math.geom2d.spline that implement ShapeSet2D
 class PolyCubicBezierCurve2D
          A set of Bezier curves that forms a continuous curve.