Created
April 16, 2020 19:20
-
-
Save alpha1125/73880e9c46376207316af6270294b350 to your computer and use it in GitHub Desktop.
Simple organizer to hold your pencils/pens, that hang off the back of your monitor
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
WallThickness=1; | |
A=10; // lip length | |
B=20; // monitor thickness | |
C=30; // length of pocket (inside) | |
D=60; // overall Width | |
E=70; // overall Height. | |
OverallWidth=B+C+(wallThickness*3); | |
OverallLength=D; | |
OverallHeight=E; | |
union(){ | |
cube([wallThickness, D, A ]); | |
cube([B+wallThickness, D, wallThickness]); | |
translate([B+wallThickness,0,0]) | |
difference(){ | |
color("blue") | |
cube([C+(wallThickness*2), D,E]); | |
translate([wallThickness, wallThickness,-0.1]) | |
cube([C, D-(2*wallThickness),E-wallThickness]); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment