last few months of work
[mirrors/Designs.git] / cnc / 3D / little_box.scad
CommitLineData
c23cf911
TM
1$fn=100;
2
3module bottom(dia=15) {
4difference() {
5union() {
6cylinder(20, dia+4, dia+4);
7cylinder(15, dia+8, dia+8);
8}
9translate([0,0,3]) cylinder(21, dia, dia);
10}
11}
12
13module top(dia=15) {
14difference() {
15cylinder(20, dia+8, dia+8);
16translate([0,0,3]) cylinder(21, dia, dia);
17translate([0,0,15]) cylinder(6, dia+4, dia+4);
18}
19}
20
21translate([-60,0,0]) bottom();
22top();
This page took 0.133066 seconds and 4 git commands to generate.