pub enum PlocSearchDistance {
Minimum,
VeryLow,
Low,
Medium,
High,
VeryHigh,
}Expand description
In PLOC, the number of nodes before and after the current one that are evaluated for pairing. Minimum (1) has a fast path in building and still results in decent quality BVHs especially when paired with a bit of reinsertion.
Variants§
Trait Implementations§
Source§impl Clone for PlocSearchDistance
impl Clone for PlocSearchDistance
Source§fn clone(&self) -> PlocSearchDistance
fn clone(&self) -> PlocSearchDistance
Returns a duplicate of the value. Read more
1.0.0 · 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 PlocSearchDistance
impl Debug for PlocSearchDistance
Source§impl Default for PlocSearchDistance
impl Default for PlocSearchDistance
Source§fn default() -> PlocSearchDistance
fn default() -> PlocSearchDistance
Returns the “default value” for a type. Read more
Source§impl From<u32> for PlocSearchDistance
impl From<u32> for PlocSearchDistance
impl Copy for PlocSearchDistance
Auto Trait Implementations§
impl Freeze for PlocSearchDistance
impl RefUnwindSafe for PlocSearchDistance
impl Send for PlocSearchDistance
impl Sync for PlocSearchDistance
impl Unpin for PlocSearchDistance
impl UnwindSafe for PlocSearchDistance
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