pub struct AuthoringConfig {
pub threshold: f32,
pub smooth_iterations: u32,
pub normalize: bool,
}Expand description
Configuration for morph target authoring.
Fields§
§threshold: f32Minimum delta magnitude to include (default 1e-5).
smooth_iterations: u32Number of Laplacian smooth iterations before storing (default 0).
normalize: boolNormalize max delta to 1.0 (default false).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AuthoringConfig
impl RefUnwindSafe for AuthoringConfig
impl Send for AuthoringConfig
impl Sync for AuthoringConfig
impl Unpin for AuthoringConfig
impl UnsafeUnpin for AuthoringConfig
impl UnwindSafe for AuthoringConfig
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more