Skip to content

Commit

Permalink
oo
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Jul 20, 2024
1 parent 8ed44d5 commit d6ad58e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ mod tests {
let from = Vec2::new(5.0 - i as f32 / 10.0, 0.9);
let to = Vec2::new(i as f32 / 10.0, 2.1);
let path = dbg!(mesh.path(from, to).unwrap());
assert_eq!(path.path, vec![vec2(2.0, 2.0), vec2(3.0, 1.0), to]);
assert_eq!(path.path, vec![vec2(3.0, 1.0), vec2(2.0, 2.0), to]);
}
}

Expand Down

0 comments on commit d6ad58e

Please sign in to comment.