Go to the documentation of this file.00001 #ifndef TRIANGULATE_H
00002
00003 #define TRIANGULATE_H
00004
00061 namespace ConvexDecomposition
00062 {
00063
00064
00065 unsigned int triangulate3d(unsigned int pcount,
00066 const double *vertices,
00067 double *triangles,
00068 unsigned int maxTri,
00069 const double *plane);
00070
00071 unsigned int triangulate3d(unsigned int pcount,
00072 const unsigned int *indices,
00073 const double *vertices,
00074 double *triangles,
00075 unsigned int maxTri,
00076 const double *plane);
00077
00078 unsigned int triangulate2d(unsigned int pcount,
00079 const double *vertices,
00080 double *triangles,
00081 unsigned int maxTri);
00082
00083 };
00084
00085 #endif