Add Core::tolerance

This commit is contained in:
Hanno Braun 2024-08-07 20:10:10 +02:00
parent b41344f81d
commit e7c6f0e71c

View File

@ -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 {