Last active
August 29, 2015 14:04
-
-
Save tangrs/09e82102d1aaaa7bc87e to your computer and use it in GitHub Desktop.
Files used in The Success Box
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use <rpi.scad> // The RPi SCAD model can be found at https://github.com/TomHodson/Raspberry-Pi-OpenSCAD-Model | |
module box() { | |
wall_width = 3; | |
dim = [88, 85, 80]; | |
difference() { | |
cube(size=dim + [2*wall_width, 2*wall_width, wall_width]); | |
translate(v=[wall_width, wall_width, -1]) | |
cube(size=dim + [0,0,1]); | |
translate(v=[-10,2.25,34]) | |
cube(size=[35, 4, 27]); | |
translate(v=[-10,4,63]) | |
cube(size=[17.3, 10, 13.3]); | |
translate(v=[80,6.5,37.5]) | |
cube(size=[17.3,18,16]); | |
translate(v=[44+2.25, 42.5+2.25, 70]) | |
cylinder(d=24, h=20); | |
translate(v=[2.25,0,0]) { | |
translate(v=[44, 95, 40]) | |
rotate(a=[90,0,0]) | |
cylinder(d=55, h=20); | |
translate(v=[11.8, 95, 40]) | |
rotate(a=[90,0,0]) | |
cylinder(d=5, h=20); | |
translate(v=[60, 95, 68]) | |
rotate(a=[90,0,0]) | |
cylinder(d=5, h=20); | |
translate(v=[60, 95, 12]) | |
rotate(a=[90,0,0]) | |
cylinder(d=5, h=20); | |
} | |
} | |
} | |
rotate(a=[180,0,0]) { | |
//projection(cut = true) | |
//translate(v=[0,0,-89]) | |
box(); | |
translate(v=[4,6,77]) | |
rotate(a=[-90,0,0]) | |
rpi(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment