Skip to content

Commit

Permalink
GmMultiPolyIntersector for python - CI errors
Browse files Browse the repository at this point in the history
  • Loading branch information
mkennard-aquaveo committed Jan 4, 2024
1 parent 2610bb9 commit d32b079
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ def test_traverse_line_segment_1_out_in(self):
expected_t_vals = (0.11111111111111111, 1.0)
expected_pts = ((0.0, 5.0, 0.0), (8.0, 5.0, 0.0))
self._run_test((-1, 5), (8, 5), pts, polys, expected_ids, expected_t_vals, expected_pts)
polys = [(2, 3, 4, 5)]
polys = [(0, 1, 2, 3)]
expected_ids = (2, -1)
expected_t_vals = (0.11111111111111111, 0.6666666666666666)
expected_t_vals = (0.11111111111111111, 1.0)
self._run_test((-1, 5), (8, 5), pts, polys, expected_ids, expected_t_vals, expected_pts, 2, 'intersects')

def test_polygon_from_point(self):
Expand Down

0 comments on commit d32b079

Please sign in to comment.