Uses of Interface
math.geom2d.curve.Curve2D

Packages that use Curve2D
math.geom2d Planar geometry toolbox. 
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 Curve2D in math.geom2d
 

Methods in math.geom2d that return types with arguments of type Curve2D
 CurveSet2D<Curve2D> Box2D.clipCurve(Curve2D curve)
          Clip a curve, and return a CurveSet2D.
 CurveSet2D<Curve2D> Box2D.clipCurveOld(Curve2D curve)
           
 

Methods in math.geom2d with parameters of type Curve2D
 CurveSet2D<Curve2D> Box2D.clipCurve(Curve2D curve)
          Clip a curve, and return a CurveSet2D.
 CurveSet2D<Curve2D> Box2D.clipCurveOld(Curve2D curve)
           
 

Uses of Curve2D in math.geom2d.conic
 

Subinterfaces of Curve2D in math.geom2d.conic
 interface Conic2D
          Interface for all conics : parametric conics, or ellipses, parabolas, and hyperbolas.
 

Classes in math.geom2d.conic that implement Curve2D
 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 Hyperbola2D
          Superclass for all linear and pieces smooth curves : polylines, conics, lines ...
 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.
 class ParametricConic2D
          A parametric Conic is defined directly from its parametric equation: a*x^2 + b*x*y + c*y^2 + d*x + e*y + f
 

Methods in math.geom2d.conic that return Curve2D
 Curve2D ParametricConic2D.getSubCurve(double t0, double t1)
           
 

Uses of Curve2D in math.geom2d.curve
 

Classes in math.geom2d.curve with type parameters of type Curve2D
 class CurveSet2D<T extends Curve2D>
          A parameterized set of curves.
 

Subinterfaces of Curve2D in math.geom2d.curve
 interface Boundary2D
          A Boundary2D is the curve which defines the contour of a domain in the plane.
 interface ContinuousBoundary2D
          a continuous boundary is a continuous oriented curve which delimits a planar domain.
 interface ContinuousCurve2D
          Interface for all curves which can be drawn with one stroke.
 interface ContinuousOrientedCurve2D
          Defines a part of the boundary of a planar domain.
 interface OrientedCurve2D
          An OrientedCurve2D defines an 'inside' and an 'outside'.
 interface SmoothCurve2D
          Interface for smooth and continuous curves.
 interface SmoothOrientedCurve2D
           
 

Classes in math.geom2d.curve that implement Curve2D
 class BoundaryPolyCurve2D<T extends ContinuousOrientedCurve2D>
          A single continuous oriented curve, which defines the boundary of a planar domain.
 class BoundarySet2D<T extends ContinuousBoundary2D>
          A BoundarySet2D is a set of continuous oriented curves.
 class CurveSet2D<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.
 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 Curve2D
 Curve2D Curve2D.getReverseCurve()
          Returns the curve with same trace on the plane with parametrization in reverse order.
 Curve2D CurveSet2D.getReverseCurve()
           
 Curve2D Curve2D.getSubCurve(double t0, double t1)
          Returns a portion of the original curve, delimited by two positions on the curve.
 Curve2D Curve2D.transform(AffineTransform2D trans)
          Transforms the curve by an affine transform.
 

Methods in math.geom2d.curve that return types with arguments of type Curve2D
 CurveSet2D<? extends Curve2D> Curve2D.clip(Box2D box)
          When a curve is clipped, the result is a set of curves.
 CurveSet2D<? extends Curve2D> CurveSet2D.clip(Box2D box)
          Clip a curve, and return a CurveSet2D.
 CurveSet2D<? extends Curve2D> CurveSet2D.getSubCurve(double t0, double t1)
          Return an instance of CurveSet2D.
 CurveSet2D<? extends Curve2D> CurveSet2D.transform(AffineTransform2D trans)
          Transform each curve, and build a new CurveSet2D with the set of transformed curves.
 

Constructors in math.geom2d.curve with parameters of type Curve2D
CurveSet2D(T[] curves)
          Constructor from an array of curves.
 

Uses of Curve2D in math.geom2d.line
 

Classes in math.geom2d.line that implement Curve2D
 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.
 

Uses of Curve2D in math.geom2d.spline
 

Classes in math.geom2d.spline that implement Curve2D
 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.