summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--multimixer.scad14
1 files changed, 9 insertions, 5 deletions
diff --git a/multimixer.scad b/multimixer.scad
index 21f71e4..80f41f1 100644
--- a/multimixer.scad
+++ b/multimixer.scad
@@ -15,2 +15,3 @@ module multimixer(
debug = 0, // how many inputs -1 the debug cutout spans
+ print = false,
) {
@@ -38,6 +39,4 @@ module multimixer(
- //translate([pf_d(pf)/2+shell,0,0])
- //translate([0,0,l_output+pushfit_h])
- module laydown(dia) {
- r = dia/2;
+ module laydown() {
+ r = pushfit_d/2+shell;
h_bottom = l_output+pushfit_h;
@@ -61,3 +60,8 @@ module multimixer(
}
- laydown(dia=pushfit_d+shell*2) difference() {
+ module finalize() {
+ if(print) laydown() children();
+ else children();
+ }
+
+ finalize() difference() {
hull() {