Added alternative case

This commit is contained in:
Schnitzel 2018-07-23 18:48:23 +02:00
parent 2f6c7888d5
commit 9d1a639b52
2 changed files with 28 additions and 0 deletions

28
case_open_top.scad Normal file
View File

@ -0,0 +1,28 @@
$fn = 200;
difference(){
cube([40,30,14]);
translate([2,2,2]){
cube([36,26,13]);
}
translate([0,7.5,3.5]){
cube([4,15,6]);
}
}
difference(){
translate([0, 40, 0]){
cube([40,30,1]);
translate([2,2,1]){
cube([36,26,1]);
}
}
translate([32,47,0]){
//cube([5,5,2]);
cylinder(h=2,r=3);
}
translate([25+2.5,60,0]){
cube([7,5,2]);
//cylinder(h=2,r=2.5);
}
}