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
path: root/utils
diff options
context:
space:
mode:
authorJoseph Lenox <lordofhyphens@gmail.com>2016-06-01 03:14:20 +0300
committerJoseph Lenox <lordofhyphens@gmail.com>2016-06-01 03:14:20 +0300
commit08a2775dbdc54179c755095f3d9c81c4303f5fee (patch)
tree22f65becb7a2aef7d77bbdc2dc3dde958073b448 /utils
parent2a8c139ca42c759a590bb72a23257140789399a9 (diff)
Update solid_layers.scad
Oops, left a hardcoded 0.3 in. Fixed.
Diffstat (limited to 'utils')
-rw-r--r--utils/modifier_helpers/solid_layers.scad2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/modifier_helpers/solid_layers.scad b/utils/modifier_helpers/solid_layers.scad
index 80a92fee0..378294949 100644
--- a/utils/modifier_helpers/solid_layers.scad
+++ b/utils/modifier_helpers/solid_layers.scad
@@ -15,7 +15,7 @@ initial_offset=0; // don't generate below this
position_on_bed=[0,0,0]; // in case you need to move it around
// don't touch below unless you know what you are doing.
-simple_layers = round(model_height/0.3);
+simple_layers = round(model_height/layer_height);
translate(position_on_bed)
for (i = [initial_offset:N:simple_layers]) {
translate([0,0,i*layer_height])