summaryrefslogtreecommitdiff
path: root/body/laser_holder.scad
diff options
context:
space:
mode:
Diffstat (limited to 'body/laser_holder.scad')
-rw-r--r--body/laser_holder.scad6
1 files changed, 3 insertions, 3 deletions
diff --git a/body/laser_holder.scad b/body/laser_holder.scad
index 34a6466..f5c4562 100644
--- a/body/laser_holder.scad
+++ b/body/laser_holder.scad
@@ -74,7 +74,7 @@ module laser_holder_bottom_holes(
}
}
-module laser_holder_holes(d = default_laser_d, l = default_laser_l, d_padding = 0.5)
+module laser_holder_holes_(d = default_laser_d, l = default_laser_l, d_padding = 0.5)
{
union()
{
@@ -86,7 +86,7 @@ module laser_holder_holes(d = default_laser_d, l = default_laser_l, d_padding =
translate([0, -l * 2 / 3, 0])
laser_holder_tension_hole(d=d);
// bottom holes
- laser_holder_bottom_holes();
+ //laser_holder_bottom_holes();
}
}
@@ -98,7 +98,7 @@ module laser_holder(d = default_laser_d, l = default_laser_l, d_padding = 0.5)
difference()
{
laser_holder_wo_holes();
- laser_holder_holes(d=d, l=l, d_padding = d_padding);
+ laser_holder_holes_(d=d, l=l, d_padding = d_padding);
}
}