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.
31 lines
887 B
31 lines
887 B
include<../sixinch_library.scad>
|
|
$fn = 50*1;
|
|
|
|
Part = "a"; // [a:All, b:FrontPlate, c:Cabinet, d:Lid, e:BackPlate, f:Handles]
|
|
Units = 4;
|
|
Depth = 115;
|
|
|
|
go();
|
|
|
|
module go(){
|
|
rotate([90,0,-90]){
|
|
if(Part=="a"){
|
|
frontplate(Units,[],[],[],[Units/2],[45],[45]);
|
|
cabinet(Depth,Units,[45],[],[Units/2]);
|
|
lid(Depth,Units,[45],[45]);
|
|
back_plate(Units,Depth,[45],[45],[Units/2],[],[]);
|
|
handle(Units,false);
|
|
}else if(Part=="b"){
|
|
frontplate(Units,[],[],[],[Units/2],[45],[45]);
|
|
}else if(Part=="c"){
|
|
cabinet(Depth,Units,[45],[],[Units/2]);
|
|
}else if(Part=="d"){
|
|
lid(Depth,Units,[45],[45]);
|
|
}else if(Part=="e"){
|
|
back_plate(Units,Depth,[45],[45],[Units/2],[],[]);
|
|
}else if(Part=="f"){
|
|
handle(Units,true);
|
|
}
|
|
}
|
|
}
|