Skip to main content

Tween

Struct Tween 

Source
pub struct Tween { /* private fields */ }
Expand description

A manager for a tween on a single f32 value.

Implementations§

Source§

impl Tween

Source

pub fn new( easer: fn(f32, f32, f32, f32) -> f32, start_value: f32, end_value: f32, duration: f32, ) -> Tween

Creates a new Tween given the easing function, value bounds, and duration.

Source

pub fn reset(&mut self)

Resets the tween to the beginning.

Source

pub fn has_completed(&self) -> bool

Returns true if the tween has completed.

Source

pub fn apply(&mut self, time_advance: f32) -> f32

Returns the new value after applying the tween, advancing time by time_advance.

Source

pub fn reverse(&mut self)

Reverses the tween, adjusting the current time position such that it will retrace its steps so far.

Source

pub fn current_time(&self) -> f32

Returns the current time position of the tween.

Source

pub fn start_value(&self) -> f32

Returns the starting value of the tween.

Source

pub fn end_value(&self) -> f32

Returns the ending value of the tween.

Source

pub fn duration(&self) -> f32

Returns the duration of the tween.

Auto Trait Implementations§

§

impl Freeze for Tween

§

impl RefUnwindSafe for Tween

§

impl Send for Tween

§

impl Sync for Tween

§

impl Unpin for Tween

§

impl UnsafeUnpin for Tween

§

impl UnwindSafe for Tween

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.