pub struct Phase { /* private fields */ }

Implementations§

source§

impl Phase

source

pub fn new( points: Vec<SplinePoint<(Scalar, Scalar)>> ) -> Result<Self, SplineError>

source

pub fn linear( value_frame: Range<Scalar>, time_frame: Range<Scalar> ) -> Result<Self, SplineError>

source

pub fn bezier( (x1, y1, x2, y2): (Scalar, Scalar, Scalar, Scalar), value_frame: Range<Scalar>, time_frame: Range<Scalar> ) -> Result<Self, SplineError>

source

pub fn ease( ease: Ease, value_frame: Range<Scalar>, time_frame: Range<Scalar> ) -> Result<Self, SplineError>

source

pub fn point(point: Scalar) -> Result<Self, SplineError>

source

pub fn time_frame(&self) -> Range<Scalar>

source

pub fn duration(&self) -> Scalar

source

pub fn points(&self) -> &[SplinePoint<(Scalar, Scalar)>]

source

pub fn set_points(&mut self, points: Vec<SplinePoint<(Scalar, Scalar)>>)

source

pub fn spline(&self) -> &Spline<(Scalar, Scalar)>

source

pub fn time_iter(&self, steps: usize) -> impl Iterator<Item = Scalar>

source

pub fn sample(&self, time: Scalar) -> Scalar

Trait Implementations§

source§

impl Clone for Phase

source§

fn clone(&self) -> Phase

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Phase

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for Phase

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Phase

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<Phase> for PhaseDef

source§

fn from(v: Phase) -> Self

Converts to this type from the input type.
source§

impl Serialize for Phase

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl TryFrom<Vec<SplinePoint<(f32, f32)>, Global>> for Phase

§

type Error = SplineError

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

fn try_from(value: PhaseDef) -> Result<Self, Self::Error>

Performs the conversion.

Auto Trait Implementations§

§

impl RefUnwindSafe for Phase

§

impl Send for Phase

§

impl Sync for Phase

§

impl Unpin for Phase

§

impl UnwindSafe for Phase

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
§

impl<T> Finalize for T

§

unsafe fn finalize_raw(data: *mut ())

Safety Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Initialize for Twhere T: Default,

§

fn initialize(&mut self)

§

unsafe fn initialize_raw(data: *mut ())

Safety Read more
source§

impl<T, U> Into<U> for Twhere 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> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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 Twhere U: TryFrom<T>,

§

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.
§

impl<T> Component for Twhere T: Send + Sync + 'static,

source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,