1include <BOSL2/std.scad>
2
3
4$fn=32;
5
6cuboid([60,40,40], rounding=5, edges="Z", anchor=BOTTOM) {
7 attach(TOP, BOTTOM) prismoid([60,40],[20,20], h=50, rounding1=5, rounding2=10) {
8 attach(TOP) cylinder(d=20, h=30, center=false) {
9 attach(TOP) cylinder(d1=50, d2=30, h=12, center=false);
10 }
11 attach([FRONT, BACK, LEFT, RIGHT]) cylinder(d1=14, d2=5, h=20) {
12 attach(TOP, LEFT, overlap=5) prismoid([30,20], [20,20], h=10, shift=[-7,0]);
13 }
14 }
15}
16
17
18// vim: expandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap