TM2IN  0.5.1
triangulation.h
Go to the documentation of this file.
1 //
2 // Created by dongmin on 18. 7. 20.
3 //
4 
5 #ifndef TM2IN_TRIANGULATION_H
6 #define TM2IN_TRIANGULATION_H
7 
9 #include "detail/cgal_config.h"
10 #include "detail/cgal/plane.h"
11 #include "detail/cgal/polygon.h"
12 
13 namespace TM2IN {
14  namespace algorithm {
19  int triangulate(TM2IN::Wall::Surface *pSurface, std::vector<TM2IN::Wall::Triangle*>& result);
20  }
21 }
22 
23 #endif //TM2IN_TRIANGULATION_H
Definition: Surface.h:18
Definition: collinear.cpp:10
int triangulate(TM2IN::Wall::Surface *pSurface, std::vector< TM2IN::Wall::Triangle * > &result)
Triangulate one TM2IN::Surface to multiple TM2IN::Triangle objects.
Definition: triangulation.cpp:16