Uses of Interface
math.geom2d.curve.ContinuousCurve2D

Packages that use ContinuousCurve2D
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 ContinuousCurve2D in math.geom2d.conic
 

Classes in math.geom2d.conic that implement ContinuousCurve2D
 class Circle2D
          A circle in the plane, defined as the set of points located at an equal distance from the circle center.
 class CircleArc2D
          A circle arc, defined by the center and the radius of the containing circle, by a starting angle, and by a (signed) angle extent.
 class Ellipse2D
          An ellipse in the plane.
 class EllipseArc2D
          An arc of ellipse.
 class HyperbolaBranch2D
          Branch of an Hyperbola2D.
 class HyperbolaBranchArc2D
          An arc of hyperbola, defined from the parent hyperbola branch, and two positions on the parent curve.
 class Parabola2D
          A parabola, defined by its vertex, its orientation, and its pedal.
 class ParabolaArc2D
          An arc of parabola, defined by a parent parabola, and two limits for the parametrization.
 

Methods in math.geom2d.conic that return types with arguments of type ContinuousCurve2D
 java.util.Collection<ContinuousCurve2D> ParabolaArc2D.getContinuousCurves()
           
 java.util.Collection<ContinuousCurve2D> Ellipse2D.getContinuousCurves()
           
 java.util.Collection<? extends ContinuousCurve2D> ParametricConic2D.getContinuousCurves()
           
 java.util.Collection<ContinuousCurve2D> HyperbolaBranchArc2D.getContinuousCurves()
           
 java.util.Collection<ContinuousCurve2D> HyperbolaBranch2D.getContinuousCurves()
           
 java.util.Collection<ContinuousCurve2D> EllipseArc2D.getContinuousCurves()
           
 java.util.Collection<ContinuousCurve2D> Parabola2D.getContinuousCurves()
           
 

Uses of ContinuousCurve2D in math.geom2d.curve
 

Classes in math.geom2d.curve with type parameters of type ContinuousCurve2D
 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.
 

Subinterfaces of ContinuousCurve2D in math.geom2d.curve
 interface ContinuousBoundary2D
          a continuous boundary is a continuous oriented curve which delimits a planar domain.
 interface ContinuousOrientedCurve2D
          Defines a part of the boundary of a planar domain.
 interface SmoothCurve2D
          Interface for smooth and continuous curves.
 interface SmoothOrientedCurve2D
           
 

Classes in math.geom2d.curve that implement ContinuousCurve2D
 class BoundaryPolyCurve2D<T extends ContinuousOrientedCurve2D>
          A single continuous oriented curve, which defines the boundary of a planar domain.
 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.
 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 ContinuousCurve2D
 ContinuousCurve2D ContinuousCurve2D.getReverseCurve()
           
 ContinuousCurve2D ContinuousCurve2D.getSubCurve(double t0, double t1)
           
 ContinuousCurve2D ContinuousCurve2D.transform(AffineTransform2D trans)
           
 

Methods in math.geom2d.curve that return types with arguments of type ContinuousCurve2D
 CurveSet2D<? extends ContinuousCurve2D> ContinuousCurve2D.clip(Box2D box)
           
 CurveSet2D<? extends ContinuousCurve2D> PolyCurve2D.clip(Box2D box)
          Clip the PolyCurve2D by a box.
 java.util.Collection<? extends ContinuousCurve2D> Curve2D.getContinuousCurves()
          Returns the collection of continuous curves which constitute this curve.
 java.util.Collection<ContinuousCurve2D> CurveSet2D.getContinuousCurves()
           
 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)
           
 

Constructors in math.geom2d.curve with parameters of type ContinuousCurve2D
PolyCurve2D(T[] curves)
           
 

Uses of ContinuousCurve2D in math.geom2d.line
 

Classes in math.geom2d.line that implement ContinuousCurve2D
 class ClosedPolyline2D
          Extends Polyline2D, by considering the last point is connected to the first one.
 class LineArc2D
          LineArc2D is a generic class to represent edges, straight lines, and rays.
 class LineObject2D
          Straight Object defined from 2 points.
 class LineSegment2D
          Straight Edge defined by two points.
 class Polyline2D
          A polyline is a continuous curve where each piece of the curve is a LineSegment2D.
 class Ray2D
          Ray, or half-line, defined from an origin and a direction vector.
 class StraightLine2D
          Representation of straigth lines.
 class StraightObject2D
          Base class for straight curves, such as straight lines, rays, or edges.
 

Methods in math.geom2d.line that return types with arguments of type ContinuousCurve2D
 java.util.Collection<ContinuousCurve2D> Polyline2D.getContinuousCurves()
           
 java.util.Collection<ContinuousCurve2D> LineObject2D.getContinuousCurves()
           
 java.util.Collection<ContinuousCurve2D> LineArc2D.getContinuousCurves()
           
 

Uses of ContinuousCurve2D in math.geom2d.spline
 

Classes in math.geom2d.spline that implement ContinuousCurve2D
 class BezierCurve2D
          An extension of the Bezier curve provided in java.awt.geom, with support for SmoothCurve2D and OrientedCurve2D.
 class PolyBezierCurve2D
          A set of bezier curves, making a continuous curve.
 

Methods in math.geom2d.spline that return types with arguments of type ContinuousCurve2D
 java.util.Collection<ContinuousCurve2D> BezierCurve2D.getContinuousCurves()