diff options
author | dakkar <dakkar@thenautilus.net> | 2023-06-27 14:03:38 +0100 |
---|---|---|
committer | dakkar <dakkar@thenautilus.net> | 2023-06-27 14:03:38 +0100 |
commit | 2d463fc184293392924f034e4f1d432a41521ae8 (patch) | |
tree | f1d39412a37040fad8cf465a91588450e3e322b4 /soap-box.scad | |
parent | slightly better sizes (diff) | |
download | soap-box-2d463fc184293392924f034e4f1d432a41521ae8.tar.gz soap-box-2d463fc184293392924f034e4f1d432a41521ae8.tar.bz2 soap-box-2d463fc184293392924f034e4f1d432a41521ae8.zip |
fix pegs
Diffstat (limited to 'soap-box.scad')
-rw-r--r-- | soap-box.scad | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/soap-box.scad b/soap-box.scad index d823f31..a8a7a4f 100644 --- a/soap-box.scad +++ b/soap-box.scad @@ -63,8 +63,8 @@ module soap_net() { union() { cube ([net_width_mm,net_length_mm,net_thickness_mm]); - translate ([0,-wall_thickness_mm*1.5,0]) peg(); - translate ([net_width_mm,-wall_thickness_mm*1.5,0]) peg(); + translate ([0,-wall_thickness_mm,0]) peg(); + translate ([net_width_mm,-wall_thickness_mm,0]) peg(); } } |