summaryrefslogtreecommitdiff
path: root/3d-parts/blackblockpart1.scad
diff options
context:
space:
mode:
authorid_ed25519_bbb.git <joak@nospace.at>2016-12-22 01:12:28 +0100
committerid_ed25519_bbb.git <joak@nospace.at>2016-12-22 01:12:28 +0100
commit3a1ba894872e52a36cb77ec4a433ad1017b4289d (patch)
treeccd77a76a416e5f0d76ab82b20284655f434bca6 /3d-parts/blackblockpart1.scad
parent29b1b4822cf065ba5812b992951c65bcf99d1487 (diff)
and the rest
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