From e7c6f0e71c17e70897369ce3248d3785306687fa Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Wed, 7 Aug 2024 20:10:10 +0200 Subject: [PATCH] Add `Core::tolerance` --- crates/fj-core/src/core.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/crates/fj-core/src/core.rs b/crates/fj-core/src/core.rs index e1e65fc7d..3988ae203 100644 --- a/crates/fj-core/src/core.rs +++ b/crates/fj-core/src/core.rs @@ -38,6 +38,11 @@ impl Core { default_tolerance, } } + + /// Access the tolerance value used for intermediate geometry representation + pub fn tolerance(&self) -> Tolerance { + self.default_tolerance + } } impl Default for Core {