Uses of Class
ProGAL.geom2d.Circle

Packages that use Circle
ProGAL.geom2d This package contains classes that are all related to two-dimensional geometric concepts. 
 

Uses of Circle in ProGAL.geom2d
 

Methods in ProGAL.geom2d that return Circle
 Circle TriangulationFace.getCircumCircle()
           
 Circle Triangle.getCircumCircle()
           
 Circle TriangulationVertex.getOrbit(Point p)
           
static Circle Circle.minimumEnclosingCircle_bruteforce(java.util.List<Point> points)
          Deprecated. 
static Circle Circle.minimumEnclosingCircle_Welzl(java.util.List<Point> points)
           
static Circle ApolloniusSolver.solveApollonius(Circle c1, Circle c2, Circle c3, int s1, int s2, int s3)
          Solves the Apollonius problem of finding a circle tangent to three other circles in the plane.
 

Methods in ProGAL.geom2d with parameters of type Circle
 boolean Circle.contains(Circle c)
           
 java.lang.Double Circle.enteringAngle(Point p, Circle C, boolean ccw)
           
 java.lang.Double Circle.exitingAngle(Point p, Circle C, boolean ccw)
           
 Point[] Circle.intersections(Circle c)
           
 void TriangulationFace.setCircumCircle(Circle c)
           
static Circle ApolloniusSolver.solveApollonius(Circle c1, Circle c2, Circle c3, int s1, int s2, int s3)
          Solves the Apollonius problem of finding a circle tangent to three other circles in the plane.
 

Constructors in ProGAL.geom2d with parameters of type Circle
Circle(Circle c)
          Constructs a circle that is a copy of a given circle
Circle(Circle c1, Circle c2)
           
Circle(Circle circle1, Circle circle2, Circle circle3)