Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2019-03-01 20:09:42 +0300
committerbubnikv <bubnikv@gmail.com>2019-03-01 20:09:42 +0300
commit9996a01c84812b794b73ac9ae3cc93dc3d82794b (patch)
tree645d7586bef7ed3fa038010e5bb21e17e6f2cd40
parent44c64f4a98928069a2c155903a82495122b5c2a4 (diff)
Fixed Perl bindings.
-rw-r--r--xs/xsp/TriangleMesh.xsp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/xsp/TriangleMesh.xsp b/xs/xsp/TriangleMesh.xsp
index 95f2f7d52..edfb4a198 100644
--- a/xs/xsp/TriangleMesh.xsp
+++ b/xs/xsp/TriangleMesh.xsp
@@ -185,7 +185,7 @@ TriangleMesh::slice(z)
std::vector<ExPolygons> layers;
TriangleMeshSlicer mslicer(THIS);
- mslicer.slice(z_f, &layers, [](){});
+ mslicer.slice(z_f, 0.049f, &layers, [](){});
AV* layers_av = newAV();
size_t len = layers.size();