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