00001 #ifndef SPLIT_PLANE_H
00002
00003 #define SPLIT_PLANE_H
00004
00061 namespace ConvexDecomposition
00062 {
00063
00064 class ConvexDecompInterface;
00065
00066 bool computeSplitPlane(unsigned int vcount,
00067 const double *vertices,
00068 unsigned int tcount,
00069 const unsigned int *indices,
00070 ConvexDecompInterface *callback,
00071 double *plane);
00072
00073
00074 };
00075
00076 #endif