pub struct BrowState {
pub inner_raise_left: f32,
pub inner_raise_right: f32,
pub outer_raise_left: f32,
pub outer_raise_right: f32,
pub lower_left: f32,
pub lower_right: f32,
pub furrow: f32,
pub arch_left: f32,
pub arch_right: f32,
pub target_inner_left: f32,
pub target_inner_right: f32,
}Expand description
Runtime state for both eyebrows.
Fields§
§inner_raise_left: f32Left inner brow raise (0..1).
inner_raise_right: f32Right inner brow raise (0..1).
outer_raise_left: f32Left outer brow raise (0..1).
outer_raise_right: f32Right outer brow raise (0..1).
lower_left: f32Left brow lower amount (0..1).
lower_right: f32Right brow lower amount (0..1).
furrow: f32Furrow / scrunch intensity (0..1, bilateral).
arch_left: f32Arch intensity (0..1, per side).
arch_right: f32Arch intensity right side.
target_inner_left: f32Target inner raise left (for smooth interpolation).
target_inner_right: f32Target inner raise right.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BrowState
impl RefUnwindSafe for BrowState
impl Send for BrowState
impl Sync for BrowState
impl Unpin for BrowState
impl UnsafeUnpin for BrowState
impl UnwindSafe for BrowState
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