Uses of Interface
math.geom2d.curve.SmoothOrientedCurve2D

Packages that use SmoothOrientedCurve2D
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. 
 

Uses of SmoothOrientedCurve2D in math.geom2d.conic
 

Classes in math.geom2d.conic that implement SmoothOrientedCurve2D
 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 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 SmoothOrientedCurve2D
 CurveSet2D<? extends SmoothOrientedCurve2D> Circle2D.clip(Box2D box)
          Clip the circle by a box.
 CurveSet2D<? extends SmoothOrientedCurve2D> Ellipse2D.clip(Box2D box)
          Clip the ellipse by a box.
 

Uses of SmoothOrientedCurve2D in math.geom2d.curve
 

Methods in math.geom2d.curve that return SmoothOrientedCurve2D
 SmoothOrientedCurve2D SmoothOrientedCurve2D.getReverseCurve()
           
 SmoothOrientedCurve2D SmoothOrientedCurve2D.getSubCurve(double t0, double t1)
           
 SmoothOrientedCurve2D SmoothOrientedCurve2D.transform(AffineTransform2D trans)
           
 

Methods in math.geom2d.curve that return types with arguments of type SmoothOrientedCurve2D
 CurveSet2D<? extends SmoothOrientedCurve2D> SmoothOrientedCurve2D.clip(Box2D box)
           
 

Uses of SmoothOrientedCurve2D in math.geom2d.line
 

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