pub struct ClassifyOptions {
pub tolerance: f64,
pub max_recovery_attempts: usize,
}Expand description
Options controlling the classification algorithm.
Fields§
§tolerance: f64Distance threshold for “on boundary” detection.
max_recovery_attempts: usizeMaximum recovery attempts when ray hits face boundary.
Trait Implementations§
Source§impl Clone for ClassifyOptions
impl Clone for ClassifyOptions
Source§fn clone(&self) -> ClassifyOptions
fn clone(&self) -> ClassifyOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ClassifyOptions
impl Debug for ClassifyOptions
Auto Trait Implementations§
impl Freeze for ClassifyOptions
impl RefUnwindSafe for ClassifyOptions
impl Send for ClassifyOptions
impl Sync for ClassifyOptions
impl Unpin for ClassifyOptions
impl UnsafeUnpin for ClassifyOptions
impl UnwindSafe for ClassifyOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more