Skip to content

Commit

Permalink
fix(Intersections): fix test error in self intersection detection (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
panquez committed May 11, 2023
1 parent 1043f13 commit af1f58b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bindings/python/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# pip-compile bindings/python/requirements.in
#
opengeode-core==14.*,>=14.0.13
opengeode-core==14.*,>=14.0.16
# via
# -r bindings/python/requirements.in
# opengeode-geosciences
Expand All @@ -14,7 +14,7 @@ opengeode-geosciences==7.*,>=7.0.6
# via
# -r bindings/python/requirements.in
# opengeode-geosciencesio
opengeode-geosciencesio==4.*,>=4.1.1
opengeode-geosciencesio==4.*,>=4.1.2
# via -r bindings/python/requirements.in
opengeode-io==6.*,>=6.0.4
# via -r bindings/python/requirements.in
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 af1f58b

Please sign in to comment.