pub struct LodPlannerOptions {
pub refine_enter_pixels: f32,
pub refine_exit_pixels: f32,
pub viewport_height: u32,
}Expand description
Screen-space refinement and hysteresis settings.
Fields§
§refine_enter_pixels: f32Enter refinement above this projected error in pixels.
refine_exit_pixels: f32Leave refinement below this lower projected error in pixels.
viewport_height: u32Logical viewport height in pixels.
Implementations§
Trait Implementations§
Source§impl Clone for LodPlannerOptions
impl Clone for LodPlannerOptions
Source§fn clone(&self) -> LodPlannerOptions
fn clone(&self) -> LodPlannerOptions
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 LodPlannerOptions
impl Debug for LodPlannerOptions
Source§impl PartialEq for LodPlannerOptions
impl PartialEq for LodPlannerOptions
Source§fn eq(&self, other: &LodPlannerOptions) -> bool
fn eq(&self, other: &LodPlannerOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LodPlannerOptions
impl StructuralPartialEq for LodPlannerOptions
Auto Trait Implementations§
impl Freeze for LodPlannerOptions
impl RefUnwindSafe for LodPlannerOptions
impl Send for LodPlannerOptions
impl Sync for LodPlannerOptions
impl Unpin for LodPlannerOptions
impl UnsafeUnpin for LodPlannerOptions
impl UnwindSafe for LodPlannerOptions
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