pub struct OutElastic;Expand description
§The OutElastic Easing Function.
§examples.
use eazy::Curve;
use eazy::standard::elastic::OutElastic;
let p = OutElastic.y(1.0);
assert_eq!(p, 1.0004883);Trait Implementations§
Source§impl Curve for OutElastic
impl Curve for OutElastic
Auto Trait Implementations§
impl Freeze for OutElastic
impl RefUnwindSafe for OutElastic
impl Send for OutElastic
impl Sync for OutElastic
impl Unpin for OutElastic
impl UnwindSafe for OutElastic
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