You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

28 lines
553 B

module kasten(){
b=8;
l=10;
h=4;
d1=2;
d2=1.5;
difference(){
hull(){
translate([-(b-d1)/2,0,0])cube([b-d1,l,h]);
translate([-b/2,0,0])cube([b,l,h-d2]);
}
schwelle();
}
translate([0,0.8,h]) cube([b-d1,0.4,0.1],true);
translate([0,2.9,h]) cube([b-d1,0.4,0.1],true);
translate([0,5,h]) cube([b-d1,0.4,0.1],true);
translate([0,7.1,h]) cube([b-d1,0.4,0.1],true);
translate([0,9.2,h]) cube([b-d1,0.4,0.1],true);
}
module schwelle(){
b=6;
l=30;
h=2.5;
translate([-b/2,1,-1])cube([b,l,h+1]);
}
color([0.46,0.50,0.5]) kasten();