Skip to content

Commit

Permalink
chore: fixes after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
RobWalt committed Nov 6, 2023
1 parent 0da711d commit 436110d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions geo/src/algorithm/spade_boolops/trait_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ where
op_pred: F,
) -> SpadeBoolopsResult<T> {
vec![p1.clone(), p2.clone()]
.constrained_outer_triangulation()
.constrained_outer_triangulation(Default::default())
.map_err(SpadeBoolopsError::TriangulationError)?
.into_iter()
.filter(|tri| op_pred(tri))
Expand Down Expand Up @@ -65,7 +65,7 @@ where

// do the real boolean operation only on the intersecting parts
let boolop_result = vec![MultiPolygon::new(p1_inter), MultiPolygon::new(p2_inter)]
.constrained_outer_triangulation()
.constrained_outer_triangulation(Default::default())
.map_err(SpadeBoolopsError::TriangulationError)?
.into_iter()
.filter(|tri| op_pred(tri))
Expand Down Expand Up @@ -94,7 +94,7 @@ where
// gets confused otherwise in some edge case tests
[boolop_result, p1_non_inter, p2_non_inter]
.concat()
.constrained_triangulation()
.constrained_triangulation(Default::default())
.map_err(SpadeBoolopsError::TriangulationError)?
.stitch_together()
.map_err(SpadeBoolopsError::StitchError)
Expand Down

0 comments on commit 436110d

Please sign in to comment.