Untested implementation of split_mesh()

This commit is contained in:
Alessandro Ranellucci 2013-09-09 21:41:28 +02:00
parent b6548137de
commit 93dddb7ee2
2 changed files with 50 additions and 0 deletions

View file

@ -23,6 +23,7 @@ class TriangleMesh
void align_to_origin();
void rotate(double angle, Point* center);
std::vector<Polygons>* slice(const std::vector<double> &z);
std::vector<TriangleMesh> split() const;
stl_file stl;
};