Uses of Class
ProGAL.geom3d.volumes.Sphere

Packages that use Sphere
ProGAL.geom3d This package contains classes that are all related to three-dimensional geometric concepts. 
ProGAL.geom3d.tessellation.BowyerWatson   
ProGAL.geom3d.volumes   
 

Uses of Sphere in ProGAL.geom3d
 

Methods in ProGAL.geom3d that return Sphere
static Sphere ApolloniusSolver.solveApollonius(Point[] centers, double[] radii, int[] s)
           
static Sphere ApolloniusSolver.solveApollonius(Sphere c0, Sphere c1, Sphere c2, Sphere c3, int s0, 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.geom3d with parameters of type Sphere
 Circle Plane.getIntersection(Sphere sphere)
          Get intersection of a sphere with the plane.
static Sphere ApolloniusSolver.solveApollonius(Sphere c0, Sphere c1, Sphere c2, Sphere c3, int s0, 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.geom3d with parameters of type Sphere
PointWeighted(Sphere s)
          Construct a weighted point with the center of the sphere as its coordinates and with the square of its radius as weight.
 

Uses of Sphere in ProGAL.geom3d.tessellation.BowyerWatson
 

Fields in ProGAL.geom3d.tessellation.BowyerWatson declared as Sphere
 Sphere Tet.circumSphere
           
 

Uses of Sphere in ProGAL.geom3d.volumes
 

Methods in ProGAL.geom3d.volumes that return Sphere
 Sphere Tetrahedron.circumSphere()
          Find the circumscribing sphere
 Sphere Sphere.clone()
          Returns a deep clone of this sphere.
static Sphere Sphere.getMinSphere(Circle c)
          Get the sphere with the specified circle as equator
static Sphere Sphere.getMinSphere(PointList points)
          Gets the smallest sphere containing a set of points.
static Sphere Sphere.getMinSphere(Point p1, Point p2)
          Get the smallest sphere through two given points.
static Sphere Sphere.getMinSphere(Point p0, Point p1, Point p2)
          Get the smallest sphere through three points.
static Sphere Sphere.getMinSphere(Point p0, Point p1, Point p2, Point p3)
          Constructs the sphere through four points.
 

Methods in ProGAL.geom3d.volumes with parameters of type Sphere
static Point[] Sphere.getIntersections(Sphere s1, Sphere s2, Sphere s3)
          Find the two, one or zero points that is at the intersection of the three sphere shells.
 boolean Sphere.isIntersected(Sphere sphere)
          Returns true if this sphere is intersected or touched by another sphere.
 

Method parameters in ProGAL.geom3d.volumes with type arguments of type Sphere
static double Sphere.unionVolume_Grid(java.util.Collection<Sphere> spheres)
          Estimate the volume of the union of a set of spheres.
 

Constructors in ProGAL.geom3d.volumes with parameters of type Sphere
Lens(Sphere s0, Sphere s1)
          Construct a lens from the two spheres.