Skip to content

Commit

Permalink
fix(Intersections): fix test error in self intersection detection
Browse files Browse the repository at this point in the history
  • Loading branch information
panquez committed May 10, 2023
1 parent 1043f13 commit acbda5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ namespace
if( triangle_intersects_other(
t1, t2, t1_vertices, t2_vertices, common_points )
|| triangle_intersects_other(
t1, t2, t1_vertices, t2_vertices, common_points ) )
t2, t1, t2_vertices, t1_vertices, common_points ) )
{
return true;
}
Expand Down

0 comments on commit acbda5d

Please sign in to comment.