pub struct ExpoOut;Expand description
An exponenential tween out. See here
Implementations§
Trait Implementations§
Source§impl Ord for ExpoOut
impl Ord for ExpoOut
Source§impl PartialOrd for ExpoOut
impl PartialOrd for ExpoOut
Source§impl<Value> Tween<Value> for ExpoOutwhere
Value: TweenValue,
impl<Value> Tween<Value> for ExpoOutwhere
Value: TweenValue,
Source§fn tween(&mut self, value_delta: Value, percent_time: f32) -> Value
fn tween(&mut self, value_delta: Value, percent_time: f32) -> Value
Returns a new value based on the value_delta and the percent. Read more
Source§fn is_finite(&self) -> bool
fn is_finite(&self) -> bool
All Tweens in this library use this default method, except Looper and Oscillator, which
which are both unbounded (because they never stop returning values), and Extrapolator,
which simply unbounds tweens. Read more
impl Copy for ExpoOut
impl Eq for ExpoOut
impl StructuralPartialEq for ExpoOut
Auto Trait Implementations§
impl Freeze for ExpoOut
impl RefUnwindSafe for ExpoOut
impl Send for ExpoOut
impl Sync for ExpoOut
impl Unpin for ExpoOut
impl UnsafeUnpin for ExpoOut
impl UnwindSafe for ExpoOut
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