Skip to content

Instantly share code, notes, and snippets.

@alpha1125
Created April 16, 2020 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alpha1125/73880e9c46376207316af6270294b350 to your computer and use it in GitHub Desktop.
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
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