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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortamasmeszaros <meszaros.q@gmail.com>2019-11-13 17:55:37 +0300
committertamasmeszaros <meszaros.q@gmail.com>2019-11-13 17:55:37 +0300
commitd4d037792d086b009473eeb3e3bda20e60808f59 (patch)
tree472c415043fac6ab4a70ef7b8c48f2711025cc68 /src/libslic3r/SLA
parent97811130a18e01ee8c4ae5e59f60918de53ee119 (diff)
Holes are now visible on slices in preview.
Diffstat (limited to 'src/libslic3r/SLA')
-rw-r--r--src/libslic3r/SLA/SupportTreeBuilder.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libslic3r/SLA/SupportTreeBuilder.hpp b/src/libslic3r/SLA/SupportTreeBuilder.hpp
index 4859b004c..90cf417c8 100644
--- a/src/libslic3r/SLA/SupportTreeBuilder.hpp
+++ b/src/libslic3r/SLA/SupportTreeBuilder.hpp
@@ -74,7 +74,7 @@ Contour3D sphere(double rho, Portion portion = make_portion(0.0, 2.0*PI),
// h: Height
// ssteps: how many edges will create the base circle
// sp: starting point
-Contour3D cylinder(double r, double h, size_t ssteps, const Vec3d &sp = {0,0,0});
+Contour3D cylinder(double r, double h, size_t ssteps = 45, const Vec3d &sp = {0,0,0});
const constexpr long ID_UNSET = -1;