struct PerVertexMotion {
zoom: f32,
zoomexp: f32,
rot: f32,
cx: f32,
cy: f32,
dx: f32,
dy: f32,
sx: f32,
sy: f32,
warp: f32,
}Expand description
Per-vertex motion outputs read from the evaluator after running per-vertex equations.
Fields§
§zoom: f32§zoomexp: f32§rot: f32§cx: f32§cy: f32§dx: f32§dy: f32§sx: f32§sy: f32§warp: f32Trait Implementations§
Source§impl Clone for PerVertexMotion
impl Clone for PerVertexMotion
Source§fn clone(&self) -> PerVertexMotion
fn clone(&self) -> PerVertexMotion
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 PerVertexMotion
impl Debug for PerVertexMotion
impl Copy for PerVertexMotion
Auto Trait Implementations§
impl Freeze for PerVertexMotion
impl RefUnwindSafe for PerVertexMotion
impl Send for PerVertexMotion
impl Sync for PerVertexMotion
impl Unpin for PerVertexMotion
impl UnwindSafe for PerVertexMotion
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,
§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
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