summaryrefslogtreecommitdiff
path: root/3d-parts/blackblockpart2.scad
diff options
context:
space:
mode:
Diffstat (limited to '3d-parts/blackblockpart2.scad')
-rw-r--r--3d-parts/blackblockpart2.scad29
1 files changed, 29 insertions, 0 deletions
diff --git a/3d-parts/blackblockpart2.scad b/3d-parts/blackblockpart2.scad
new file mode 100644
index 0000000..b922313
--- /dev/null
+++ b/3d-parts/blackblockpart2.scad
@@ -0,0 +1,29 @@
+//par1 for blackblock by joak
+//copyleft
+$fn = 100;
+
+
+module part1(){
+ difference(){
+ union(){
+ rotate(0,[0,1,0])
+ translate([0,0,0])
+ cylinder(r = 17, h = 30, center = true);
+ rotate(90,[0,1,0])
+ translate([0,0,25])
+ cylinder(r = 11.25, h = 30, center = true);
+ }
+ union(){
+ rotate(0,[0,1,0])
+ translate([0,0,0])
+ #cylinder(r = 12.65, h = 30, center = true);
+ rotate(90,[0,1,0])
+ translate([0,0,-15])
+ cylinder(r = 1.5, h = 10, center = true);
+ }
+ }
+ }
+
+
+
+part1(); \ No newline at end of file