pub struct StabilizationSettings {
pub cross_iteration_memory: bool,
pub initial_smoothing_alpha: f64,
pub maximum_smoothing_alpha: f64,
pub alpha_steps_up: f64,
pub alpha_steps_down: f64,
}
Expand description
Settings for dual stabilization following wentgest rule
Fields§
§cross_iteration_memory: bool
§initial_smoothing_alpha: f64
§maximum_smoothing_alpha: f64
§alpha_steps_up: f64
§alpha_steps_down: f64
Trait Implementations§
Source§impl Clone for StabilizationSettings
impl Clone for StabilizationSettings
Source§fn clone(&self) -> StabilizationSettings
fn clone(&self) -> StabilizationSettings
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 moreAuto Trait Implementations§
impl Freeze for StabilizationSettings
impl RefUnwindSafe for StabilizationSettings
impl Send for StabilizationSettings
impl Sync for StabilizationSettings
impl Unpin for StabilizationSettings
impl UnwindSafe for StabilizationSettings
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