pub struct ThighState {
pub girth_left: f32,
pub girth_right: f32,
pub inner_left: f32,
pub inner_right: f32,
pub outer_left: f32,
pub outer_right: f32,
}Expand description
State.
Fields§
§girth_left: f32Overall girth factor (0.5..2.0 normalised around 1.0 neutral).
girth_right: f32§inner_left: f32Inner thigh fullness (0..1).
inner_right: f32§outer_left: f32Outer thigh fullness (0..1).
outer_right: f32Trait Implementations§
Source§impl Clone for ThighState
impl Clone for ThighState
Source§fn clone(&self) -> ThighState
fn clone(&self) -> ThighState
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 ThighState
impl Debug for ThighState
Auto Trait Implementations§
impl Freeze for ThighState
impl RefUnwindSafe for ThighState
impl Send for ThighState
impl Sync for ThighState
impl Unpin for ThighState
impl UnsafeUnpin for ThighState
impl UnwindSafe for ThighState
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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