summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--another.scad1
1 files changed, 1 insertions, 0 deletions
diff --git a/another.scad b/another.scad
index 49833ec..3c4f27a 100644
--- a/another.scad
+++ b/another.scad
@@ -478,19 +478,20 @@ module the_extruder(
if(what=="lever") color("green",0.7) lever();
else if(what=="body") color("yellow",0.7) body();
else if(what=="body.label") color("brown",0.7) body_label();
else if(what=="knob") color("red",0.7) knob();
else if(what=="springpad") color("blue",0.7) springpad();
else if(what=="both") {
color("green",0.7) lever();
color("yellow",0.7) body();
color("brown",0.7) body_label();
}else{
color("green",0.7) lever();
color("yellow",0.7) body();
+ color("brown",0.7) body_label();
color("red",0.7) knob();
color("brown",0.7) knob_label();
color("blue",0.7) springpad();
}
}
the_extruder(what="*",left=false,debug=true);