Go to the documentation of this file.00001 #ifndef CCENTER_H
00002 #define CCENTER_H
00003 #include "meshkit/GeomPredicates.hpp"
00004 #include "meshkit/basic_math.hpp"
00005 using namespace QM;
00006 void TetCircumCenter( double *a, double *b, double *c, double *d, double *r, double *p);
00007 void TriCircumCenter2D( double *a, double *b, double *c, double *r, double *p);
00008 void TriCircumCenter3D( double *a, double *b, double *c, double *r, double *p);
00009 void TriCircumCenter3D( double *a, double *b, double *c, double *r);
00010
00011 namespace UnitTest
00012 {
00013 int test_tet_circumcenter();
00014 int test_tri2d_circumcenter();
00015 int test_tri3d_circumcenter();
00016 }
00017
00018 #endif