pub struct ScaleCurve {
pub x: FloatCurve,
pub y: FloatCurve,
}Expand description
A scale-over-life curve: (time, scale_x, scale_y).
Fields§
§x: FloatCurve§y: FloatCurveImplementations§
Trait Implementations§
Source§impl Clone for ScaleCurve
impl Clone for ScaleCurve
Source§fn clone(&self) -> ScaleCurve
fn clone(&self) -> ScaleCurve
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 moreAuto Trait Implementations§
impl Freeze for ScaleCurve
impl RefUnwindSafe for ScaleCurve
impl Send for ScaleCurve
impl Sync for ScaleCurve
impl Unpin for ScaleCurve
impl UnsafeUnpin for ScaleCurve
impl UnwindSafe for ScaleCurve
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