Go to the documentation of this file.00001 #ifndef MESH_VOLUME_H
00002
00003 #define MESH_VOLUME_H
00004
00059 namespace ConvexDecomposition
00060 {
00061
00062
00063 double computeMeshVolume(const double *vertices,unsigned int tcount,const unsigned int *indices);
00064 double computeMeshVolume2(const double *vertices,unsigned int tcount,const unsigned int *indices);
00065
00066 float computeMeshVolume(const float *vertices,unsigned int tcount,const unsigned int *indices);
00067
00068 };
00069
00070 #endif