Skip to content

Commit

Permalink
Add a get for jump_and_walk (useful for python bindings mostly)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugoledoux committed Jan 16, 2024
1 parent 2bbdec5 commit 4d880c1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,10 @@ impl Triangulation {
self.jump_and_walk = b;
}

pub fn get_jump_and_walk(&self) -> bool {
self.jump_and_walk
}

/// Is using robut predicates (with [crate robust](https://docs.rs/robust))?
/// (activated by default)
pub fn is_using_robust_predicates(&self) -> bool {
Expand Down

0 comments on commit 4d880c1

Please sign in to comment.