From 4d880c1cbcbfeb911fe8cf8cae95008088f60f20 Mon Sep 17 00:00:00 2001 From: Hugo Ledoux Date: Tue, 16 Jan 2024 14:59:33 +0100 Subject: [PATCH] Add a get for jump_and_walk (useful for python bindings mostly) --- src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib.rs b/src/lib.rs index 41fa4ad..64f9ce2 100755 --- a/src/lib.rs +++ b/src/lib.rs @@ -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 {