Uses of Interface
math.geom2d.curve.SmoothCurve2D

Packages that use SmoothCurve2D
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.line Implementations of 'linear shapes', i.e. curves which can be embedded into a straight lines, like straight lines, line segments, or rays
math.geom2d.spline Bezier curves, and more generally polynomial curves. 
 

Uses of SmoothCurve2D in math.geom2d.circulinear
 

Subinterfaces of SmoothCurve2D in math.geom2d.circulinear
 interface CircleLine2D
          Tagging interface to be able to consider in a same way circles and lines.
 interface CirculinearElement2D
           Circulinear elements are lowest level of circulinear curve: each circulinear curve can be divided into a set of circulinear elements.
 

Uses of SmoothCurve2D in math.geom2d.conic
 

Subinterfaces of SmoothCurve2D in math.geom2d.conic
 interface CircularShape2D
          Tagging interface for grouping Circle2D and CircleArc2D.
 interface EllipseArcShape2D
          An interface to gather CircleArc2D and EllipseArc2D.
 interface EllipseShape2D
          A common interface for Circle2D and Ellipse2D.
 

Classes in math.geom2d.conic that implement SmoothCurve2D
 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.
 

Uses of SmoothCurve2D in math.geom2d.curve
 

Classes in math.geom2d.curve that implement SmoothCurve2D
 class AbstractSmoothCurve2D
          Provides a base implementation for smooth curves.
 

Methods in math.geom2d.curve that return SmoothCurve2D
abstract  SmoothCurve2D AbstractSmoothCurve2D.clone()
           
static SmoothCurve2D Curves2D.getFirstSmoothCurve(Curve2D curve)
           
static SmoothCurve2D Curves2D.getLastSmoothCurve(Curve2D curve)
           
 SmoothCurve2D SmoothCurve2D.reverse()
           
 SmoothCurve2D SmoothCurve2D.subCurve(double t0, double t1)
           
 SmoothCurve2D SmoothCurve2D.transform(AffineTransform2D trans)
           
 

Methods in math.geom2d.curve that return types with arguments of type SmoothCurve2D
 CurveSet2D<? extends SmoothCurve2D> SmoothCurve2D.clip(Box2D box)
           
static CurveSet2D<SmoothCurve2D> Curves2D.clipSmoothCurve(SmoothCurve2D curve, Box2D box)
          Clip a continuous smooth curve.
static CurveSet2D<SmoothCurve2D> Curves2D.clipSmoothCurve(SmoothCurve2D curve, StraightLine2D line)
          Clip a continuous smooth curve by the half-plane defined by a line.
 java.util.Collection<? extends SmoothCurve2D> AbstractSmoothCurve2D.smoothPieces()
           
 java.util.Collection<? extends SmoothCurve2D> ContinuousCurve2D.smoothPieces()
          Returns a set of smooth curves.
 java.util.Collection<? extends SmoothCurve2D> PolyCurve2D.smoothPieces()
          Returns a collection containing only instances of SmoothCurve2D.
 

Methods in math.geom2d.curve with parameters of type SmoothCurve2D
static CurveSet2D<SmoothCurve2D> Curves2D.clipSmoothCurve(SmoothCurve2D curve, Box2D box)
          Clip a continuous smooth curve.
static CurveSet2D<SmoothCurve2D> Curves2D.clipSmoothCurve(SmoothCurve2D curve, StraightLine2D line)
          Clip a continuous smooth curve by the half-plane defined by a line.
 

Uses of SmoothCurve2D in math.geom2d.domain
 

Subinterfaces of SmoothCurve2D in math.geom2d.domain
 interface SmoothContour2D
          Tagging interface to represent in unified way smooth curves that are also contours.
 interface SmoothOrientedCurve2D
          Interface for smooth and oriented curves.
 

Uses of SmoothCurve2D in math.geom2d.line
 

Subinterfaces of SmoothCurve2D in math.geom2d.line
 interface LinearElement2D
          A continuous linear shape, like a straight line, a line segment or a ray.
 

Classes in math.geom2d.line that implement SmoothCurve2D
 class AbstractLine2D
           Base class for straight curves, such as straight lines, rays, or edges.
 class InvertedRay2D
          Inverted ray is defined from an origin and a direction vector.
 class Line2D
          Line object defined from 2 points.
 class LineArc2D
          LineArc2D is a generic class to represent edges, straight lines, and rays.
 class LineSegment2D
          Line segment, defined as the set of points located between the two end points.
 class Ray2D
          Ray, or half-line, defined from an origin and a direction vector.
 class StraightLine2D
          Implementation of a straight line.
 

Uses of SmoothCurve2D in math.geom2d.spline
 

Classes in math.geom2d.spline that implement SmoothCurve2D
 class CubicBezierCurve2D
          A cubic bezier curve, defined by 4 control points.
 class QuadBezierCurve2D
          A quadratic Bezier curve, defined by 3 control points.