last few months of work
[mirrors/Designs.git] / cnc / 3D / little_box.scad
diff --git a/cnc/3D/little_box.scad b/cnc/3D/little_box.scad
new file mode 100644 (file)
index 0000000..d761508
--- /dev/null
@@ -0,0 +1,22 @@
+$fn=100;
+
+module bottom(dia=15) {
+difference() {
+union() {
+cylinder(20, dia+4, dia+4);
+cylinder(15, dia+8, dia+8);
+}
+translate([0,0,3]) cylinder(21, dia, dia);
+}
+}
+
+module top(dia=15) {
+difference() {
+cylinder(20, dia+8, dia+8);
+translate([0,0,3]) cylinder(21, dia, dia);
+translate([0,0,15]) cylinder(6, dia+4, dia+4);
+}
+}
+
+translate([-60,0,0]) bottom();
+top();
\ No newline at end of file
This page took 0.195875 seconds and 4 git commands to generate.