00001 #ifndef FIT_SPHERE_H 00002 00003 #define FIT_SPHERE_H 00004 00060 namespace ConvexDecomposition 00061 { 00062 00063 double computeBoundingSphere(unsigned int vcount,const double *points,double *center); 00064 float computeBoundingSphere(unsigned int vcount,const float *points,float *center); 00065 00066 double computeSphereVolume(double r); 00067 00068 }; 00069 00070 #endif