Easing
public enum Easing
Undocumented
-
Linear interpolation.
Declaration
Swift
case linear
-
x^e
interpolation in, with the givenexponent
.Declaration
Swift
case powerIn(exponent: Double)
-
x^e
interpolation in-out, with the givenexponent
.Declaration
Swift
case powerInOut(exponent: Double)
-
b^x
interpolation in, with the givenbase
.Declaration
Swift
case exponentialIn(base: Double)
-
Ease in / ease out (half sine wave)
Declaration
Swift
case sineInOut