Skip to content

Commit

Permalink
Fix dimensions of left wall
Browse files Browse the repository at this point in the history
  • Loading branch information
hannobraun committed Dec 16, 2021
1 parent 1c13315 commit 9df88c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions models/enclosure/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,10 @@ pub extern "C" fn model(_args: &HashMap<String, String>) -> fj::Shape {

#[rustfmt::skip]
let left = fj::Sketch::from_points(vec![
[ 0., 0.],
[outer_depth, 0.],
[outer_depth, inner_height],
[ 0., inner_height],
[ 0., 0.],
[inner_height, 0.],
[inner_height, outer_depth],
[ 0., outer_depth],
]);
let left = fj::Sweep {
shape: left.into(),
Expand Down

0 comments on commit 9df88c2

Please sign in to comment.