[][src]Struct yoyo_physics::bezier::Bezier

pub struct Bezier<T> where
    T: Float
{ pub from_value: T, pub to_value: T, pub duration: f32, pub control_points: [(T, T); 2], }

Cubic Bezier curve that is scaled to the given domain and range.

Fields

from_value: T

This is the start coordinate of the range of the Bezier curve.

to_value: T

This is the end coordinate of the range of the Bezier curve.

duration: f32

This is the scale of the domain of the Bezier curve.

control_points: [(T, T); 2]

These are the two dynamic control points (P_1 and P_2). The first and last control points (P_0 and P_3) are fixed to (0, 0) and (1, 1) respectively.

Trait Implementations

impl<T: Clone> Clone for Bezier<T> where
    T: Float
[src]

impl<T: Copy> Copy for Bezier<T> where
    T: Float
[src]

impl<T> Curve for Bezier<T> where
    T: Float
[src]

type Value = T

This is the type that this curve operates on.

type Velocity = T

This is the type of velocity that this curve works with.

Auto Trait Implementations

impl<T> RefUnwindSafe for Bezier<T> where
    T: RefUnwindSafe

impl<T> Send for Bezier<T> where
    T: Send

impl<T> Sync for Bezier<T> where
    T: Sync

impl<T> Unpin for Bezier<T> where
    T: Unpin

impl<T> UnwindSafe for Bezier<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.