Files Classes Functions Hierarchy
00001 #ifndef DELAUNAY_5_H 00002 #define DELAUNAY_5_H 00003 00004 #include <vector> 00005 using namespace std; 00006 00007 #include <point.h> 00008 #include <typedefs.h> 00009 00015 class delaunay3D 00016 { 00017 uint n; 00018 00020 vector< point3<double> > const & vi; 00021 public: 00022 00024 delaunay3D( vector< point3<double> > const & vi_); 00025 00028 vector< point4<uint> > tet; 00029 00034 void eval(); 00035 00036 private: 00037 00038 bool const evaluateTetrahedron 00039 ( 00040 uintc i, 00041 uintc j, 00042 uintc k, 00043 uintc z 00044 ); 00045 00046 }; 00047 00048 00049 00050 #endif 00051
1.5.8