Add a cylinder example too.

This commit is contained in:
Joel Ebel 2018-07-02 14:48:20 -04:00
parent b186bdd3ce
commit f0a6e1f797

View File

@ -655,6 +655,9 @@ module TopShell() {
translate([60, 40, -Thick]) { translate([60, 40, -Thick]) {
cube([30, 90, Thick*3]); cube([30, 90, Thick*3]);
} }
translate([120, 85, -Thick]) {
cylinder(Thick*3, d=16);
}
} }
} }
} }