Skip to content

Commit

Permalink
Adjust the case foot height
Browse files Browse the repository at this point in the history
  • Loading branch information
bschwind committed Sep 15, 2024
1 parent eb21a7d commit afc2fee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/src/keyboard_case.rs
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,8 @@ fn case_foot(center: DVec2, pointing_down: bool) -> Shape {
.close()
};

sketch.fillet(0.7).to_face().extrude(dvec3(0.0, 0.0, -5.0)).into()
// A macbook keycap is about 1mm tall, so give it about 1.5mm of extra clearance.
sketch.fillet(0.7).to_face().extrude(dvec3(0.0, 0.0, -2.5)).into()
}

fn case_feet() -> Shape {
Expand Down

0 comments on commit afc2fee

Please sign in to comment.