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 b1bce84 commit 9562195
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xmsgrid/python/geometry/GmMultiPolyIntersector_py.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ void initGmMultiPolyIntersector(py::module &m) {
// ---------------------------------------------------------------------------
gmMpi.def("TraverseLineSegment", [](xms::GmMultiPolyIntersector &self, py::iterable pt1, py::iterable pt2)
-> py::tuple {
Pt3d p1 = xms::Pt3dFromPyIter(pt1);
Pt3d p2 = xms::Pt3dFromPyIter(pt2);
xms::Pt3d p1 = xms::Pt3dFromPyIter(pt1);
xms::Pt3d p2 = xms::Pt3dFromPyIter(pt2);
xms::VecInt poly_ids;
xms::VecDbl t_vals;
xms::VecPt3d pts;
Expand Down

0 comments on commit 9562195

Please sign in to comment.