Change method signature for slice()

This commit is contained in:
Alessandro Ranellucci 2013-11-23 00:15:42 +01:00
parent 878d587196
commit 67a7e4f769
3 changed files with 11 additions and 13 deletions

View file

@ -28,7 +28,7 @@ class TriangleMesh
void translate(float x, float y, float z);
void align_to_origin();
void rotate(double angle, Point* center);
std::vector<Polygons>* slice(const std::vector<double> &z);
void slice(const std::vector<double> &z, std::vector<Polygons> &layers);
TriangleMeshPtrs split() const;
void merge(const TriangleMesh* mesh);
stl_file stl;