diff options
author | Robert "ar" Gerus <ar@bash.org.pl> | 2013-06-06 19:37:19 +0200 |
---|---|---|
committer | Robert "ar" Gerus <ar@bash.org.pl> | 2013-06-06 19:37:19 +0200 |
commit | 91b9242c5037fefa981f7ee181f2a4a2b96c6ed6 (patch) | |
tree | 69ec341e09767c2bbf92154df46f8f3833d2a8cd | |
parent | 7eb1133abb48700f0ff9ba05316d9f2dbd70d10e (diff) | |
download | 3dparts-91b9242c5037fefa981f7ee181f2a4a2b96c6ed6.tar.gz 3dparts-91b9242c5037fefa981f7ee181f2a4a2b96c6ed6.tar.bz2 3dparts-91b9242c5037fefa981f7ee181f2a4a2b96c6ed6.tar.xz 3dparts-91b9242c5037fefa981f7ee181f2a4a2b96c6ed6.zip |
my microwave turntable. should fit nicely.
-rw-r--r-- | microwave_turntable.scad | 35 | ||||
-rw-r--r-- | microwave_turntables.png | bin | 0 -> 9295 bytes |
2 files changed, 35 insertions, 0 deletions
diff --git a/microwave_turntable.scad b/microwave_turntable.scad new file mode 100644 index 0000000..b971f1e --- /dev/null +++ b/microwave_turntable.scad @@ -0,0 +1,35 @@ +module turntable() { + // tube + difference() { + cylinder(20,5,5,0); + translate([0,0,-1]) + cylinder(30 + 2,4,4,0); + } + + // cut-in for the tube + intersection() { + cylinder(20,5,5,0); + translate([-11,-11,0]) + cube([10,20,30]); + } + + // holder + difference() { + cylinder(3,25,25,0); + for(i = [0:120:360]) + rotate([0,0,i]) + translate([22,0,-5]) + cylinder(10,15,15,0); + } +} + +// my own +color("green") + turntable(); + +// thingiverse +translate([0,50,0]) + color("blue") + scale([0.8,0.8,0.8]) + import("thingiverse_microwave_turntable.stl"); + diff --git a/microwave_turntables.png b/microwave_turntables.png Binary files differnew file mode 100644 index 0000000..c5fb1d8 --- /dev/null +++ b/microwave_turntables.png |