Easing

public enum Easing

Undocumented

  • Linear interpolation.

    Declaration

    Swift

    case linear
  • x^e interpolation in, with the given exponent.

    Declaration

    Swift

    case powerIn(exponent: Double)
  • x^e interpolation in-out, with the given exponent.

    Declaration

    Swift

    case powerInOut(exponent: Double)
  • b^x interpolation in, with the given base.

    Declaration

    Swift

    case exponentialIn(base: Double)
  • Ease in / ease out (half sine wave)

    Declaration

    Swift

    case sineInOut