Compare commits

...

3 Commits

Author SHA1 Message Date
Joel Ebel
2250e70c25 Merge branch 'master' into top_hole 2019-12-27 14:21:42 -05:00
Joel Ebel
f0a6e1f797 Add a cylinder example too. 2018-07-02 14:48:20 -04:00
Joel Ebel
b186bdd3ce Add an example of cutting a top hole in the box 2018-07-02 14:29:54 -04:00

View File

@ -148,7 +148,7 @@ Foot4Y = PCBWidth - Foot4YFromEdge;
/* [STL element to export] */
// - Top shell
TShell = 0; // [0:No, 1:Yes]
TShell = 1; // [0:No, 1:Yes]
// - Bottom shell
BShell = 1; // [0:No, 1:Yes]
// - Front panel
@ -665,6 +665,12 @@ module TopShell() {
}
}
Holes(top=1);
translate([60, 40, -Thick]) {
cube([30, 90, Thick*3]);
}
translate([120, 85, -Thick]) {
cylinder(Thick*3, d=16);
}
}
}
}