Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
wlinna committed May 1, 2024
1 parent 894f977 commit 37eae57
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion crates/parry2d/tests/query/point_triangle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ use parry2d::{math::Point, query::PointQuery, shape::Triangle};

#[test]
fn project_local_point_point_on_ab() {
let verts = [Point::new(2.0, 1.0), Point::new(0.0, 1.0), Point::new(1.0, 0.0)];
let verts = [
Point::new(2.0, 1.0),
Point::new(0.0, 1.0),
Point::new(1.0, 0.0),
];
let tri1 = Triangle::new(verts[0], verts[1], verts[2]);
let tri2 = Triangle::new(verts[2], verts[0], verts[1]);

Expand Down

0 comments on commit 37eae57

Please sign in to comment.