Skip to content

Commit

Permalink
Merge pull request #168 from hugglesfox/new
Browse files Browse the repository at this point in the history
Fix triangle-rectangle intersection bug
  • Loading branch information
macite authored Apr 8, 2024
2 parents 31b5afa + dd15868 commit c27fa34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coresdk/src/coresdk/triangle_geometry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ namespace splashkit_lib
// otherwise it's on the right
else
{
top_intersection = m * l + c;
top_intersection = m * r + c;
bottom_intersection = m * l + c;
}

Expand Down

0 comments on commit c27fa34

Please sign in to comment.