EasingBounce
public struct EasingBounce
EasingBounce provides easing equations that produces successively smaller value peaks, like a bouncing ball.
Remark
See http://easings.net for visual examples.-
Provides an easing equation that produces successively smaller value peaks, like a bouncing ball. The effect is applied to the beginning of a motion.
Declaration
Swift
public static func easeIn() -> EasingUpdateClosure
Return Value
Returns a closure containing the easing equation.
-
Provides an easing equation that produces successively smaller value peaks, like a bouncing ball. The effect is applied to the end of a motion.
Declaration
Swift
public static func easeOut() -> EasingUpdateClosure
Return Value
Returns a closure containing the easing equation.
-
Provides an easing equation that produces successively smaller value peaks, like a bouncing ball. The effect is applied to the beginning and end of a motion.
Declaration
Swift
public static func easeInOut() -> EasingUpdateClosure
Return Value
Returns a closure containing the easing equation.