Go to the documentation of this file.00001 #ifndef PLANE_TRI_H
00002
00003 #define PLANE_TRI_H
00004
00059 namespace ConvexDecomposition
00060 {
00061
00062
00063 enum PlaneTriResult
00064 {
00065 PTR_FRONT,
00066 PTR_BACK,
00067 PTR_SPLIT,
00068 };
00069
00070 PlaneTriResult planeTriIntersection(const double *plane,
00071 const double *triangle,
00072 unsigned int tstride,
00073 double epsilon,
00074 double *front,
00075 unsigned int &fcount,
00076 double *back,
00077 unsigned int &bcount);
00078
00079 };
00080
00081
00082 #endif