1
0
mirror of https://github.com/FULU-Foundation/OrcaSlicer-bambulab.git synced 2026-07-24 10:05:52 +00:00

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
+1 -1
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;