50 bool operator<(
const Edge& p_edge)
const {
51 return id < p_edge.id;
54 Edge(
int p_vtx_a=0,
int p_vtx_b=0) {
56 if (p_vtx_a>p_vtx_b) {
57 SWAP(p_vtx_a,p_vtx_b);
71 bool operator<(
const Face& p_face)
const {
73 return points_over.size() < p_face.points_over.size();
81 FaceConnect() { left=NULL; right=NULL; }
83 struct RetFaceConnect {
85 RetFaceConnect() { left=NULL; right=NULL; }
90 static uint32_t debug_stop_after;
95 #endif // QUICK_HULL_H
Definition: geometry.h:816
Definition: quick_hull.h:37
Definition: quick_hull.h:65
Definition: quick_hull.h:42