Uses of Interface
math.geom2d.conic.CircularShape2D

Packages that use CircularShape2D
math.geom2d.conic Definition of various conic curves like circles, ellipses, parabolas and hyperbolas, and their respective arcs. 
 

Uses of CircularShape2D in math.geom2d.conic
 

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

Methods in math.geom2d.conic that return CircularShape2D
 CircularShape2D CircularShape2D.reverse()
           
 CircularShape2D CircularShape2D.subCurve(double t0, double t1)
           
 

Methods in math.geom2d.conic that return types with arguments of type CircularShape2D
 CurveSet2D<? extends CircularShape2D> Circle2D.clip(Box2D box)
          Clips the circle by a box.
 CurveSet2D<? extends CircularShape2D> CircularShape2D.clip(Box2D box)
           
 

Methods in math.geom2d.conic with parameters of type CircularShape2D
static java.util.Collection<Point2D> Circle2D.getIntersections(CircularShape2D circle, LinearShape2D line)
          Deprecated. replaced by lineCircleIntersections(LinearShape2D, CircularShape2D) (0.11.1)
static java.util.Collection<Point2D> Circle2D.lineCircleIntersections(LinearShape2D line, CircularShape2D circle)
          Computes intersections of a circle with a line.