TM2IN  0.5.1
self_intersect.h
Go to the documentation of this file.
1 //
2 // Created by dongmin on 18. 7. 23.
3 //
4 
5 #ifndef TM2IN_SELF_INTERSECT_H
6 #define TM2IN_SELF_INTERSECT_H
7 #include <vector>
8 
9 #include "features/HalfEdge.h"
10 
11 using namespace std;
12 
13 namespace TM2IN {
14  namespace detail {
15  namespace algorithm {
19  bool has_self_intersection(vector<HalfEdge*> edges);
20  }
21  }
22 }
23 
24 #endif //TM2IN_SELF_INTERSECT_H
Definition: collinear.cpp:10
bool has_self_intersection(vector< HalfEdge * > edges)
Definition: self_intersect.cpp:11