Uses of Class
math.geom2d.conic.Circle2D

Packages that use Circle2D
math.geom2d.conic Conic curves like circles, ellipses, parabolas and hyperbolas Contains definition of various conic curves. 
math.geom2d.transform Hieararchy of planar transforms, and implementation of common transforms like rotations, translations, reflections or scalings. 
 

Uses of Circle2D in math.geom2d.conic
 

Fields in math.geom2d.conic declared as Circle2D
protected  Circle2D CircleArc2D.circle
           
protected  Circle2D Disc2D.circle
           
 

Methods in math.geom2d.conic that return Circle2D
 Circle2D Circle2D.getReverseCurve()
          Returns the circle with same center and same radius, but with the other orientation.
 Circle2D CircleArc2D.getSupportCircle()
          Returns the circle which contains the circle arc.
 

Constructors in math.geom2d.conic with parameters of type Circle2D
CircleArc2D(Circle2D circle, double startAngle, double angleExtent)
          create a new circle arc based on an already existing circle.
CircleArc2D(Circle2D circle, double startAngle, double endAngle, boolean direct)
          create a new circle arc based on an already existing circle, specifying if arc is direct or not.
CircleArc2D(Circle2D circle, Point2D startPoint, Point2D endPoint)
          create a new circle arc based on an already existing circle, and two points giving angles of arc, assuming arc is direct.
CircleArc2D(Circle2D circle, Point2D startPoint, Point2D endPoint, boolean direct)
          Deprecated. as this is a too much specific function.
Disc2D(Circle2D circle)
           
 

Uses of Circle2D in math.geom2d.transform
 

Fields in math.geom2d.transform declared as Circle2D
protected  Circle2D CircleInversion2D.circle
           
 

Methods in math.geom2d.transform with parameters of type Circle2D
 void CircleInversion2D.setCircle(Circle2D circle)
           
 

Constructors in math.geom2d.transform with parameters of type Circle2D
CircleInversion2D(Circle2D circle)