ed_sensor_integration
mesh_tools.h
Go to the documentation of this file.
1 #ifndef DML_MESH_TOOLS_H_
2 #define DML_MESH_TOOLS_H_
3 
4 #include <geolib/datatypes.h>
5 
6 #include <vector>
7 
8 namespace geo
9 {
10 class Mesh;
11 }
12 
13 namespace dml
14 {
15 
16 // Projects mesh down (along z-axis) and generates 2D contour
17 void project2D(const geo::Mesh& mesh, std::vector<std::vector<geo::Vec2> >& contours);
18 
19 } // end namespace dml
20 
21 #endif
datatypes.h
geo
vector
dml
Definition: mesh_tools.h:13
dml::project2D
void project2D(const geo::Mesh &mesh, std::vector< std::vector< geo::Vec2 > > &contours)
Definition: mesh_tools.cpp:219
geo::Mesh