refinement and fixes for folded cases with ui improvements

This commit is contained in:
Edward Kisiel
2024-02-17 17:26:09 -05:00
parent 0d5f8ef357
commit 5c43d0961d
2 changed files with 147 additions and 143 deletions

View File

@@ -125,7 +125,7 @@ bottom_ext_standoff = [5.75,5,3.6,10,4,1,0,0,0,4.5,5.1];
/* [Folding Case Adjustments] */
//Material Thickness
material_thickness = .5; //[.1:.1:3]
material_thickness = .5; //[.1:.01:3]
// Bend Allowance
bend_allowance = 1; //[0:.01:5]
// Bottom clearence
@@ -257,6 +257,9 @@ if (view == "platter") {
}
}
}
if(case_design == "paper") {
case_folded(case_design, case_style);
}
if(case_design == "tray") {
echo(width=width+2*sidethick,depth=depth,top=top_height,bottom=bottom_height);
}
@@ -535,6 +538,9 @@ if (view == "model") {
}
}
}
if(case_design == "paper") {
case_folded(case_design, case_style);
}
if(case_design == "tray") {
echo(width=width+2*sidethick,depth=depth,top=top_height,bottom=bottom_height);
}
@@ -652,6 +658,6 @@ if (view == "part") {
}
if (view == "folded") {
if(case_design == "paper") {
case_folded(case_design, case_style);
projection() case_folded(case_design, case_style);
}
}