Created
July 12, 2022 09:09
-
-
Save PimCoumans/1c2daf572a2294035f2131634e4a9552 to your computer and use it in GitHub Desktop.
Calculated timing function for manual interpolation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import QuartzCore | |
struct TimingFunction { | |
private let function: (Double) -> Double | |
init(_ function: @escaping (Double) -> Double) { | |
self.function = function | |
} | |
} | |
extension TimingFunction { | |
func apply(to value: Double) -> Double { | |
function(value) | |
} | |
func apply(to value: Double, in range: ClosedRange<Double>) -> Double { | |
range.lowerBound + function((value - range.lowerBound) / (range.upperBound - range.lowerBound)) | |
} | |
} | |
extension TimingFunction { | |
func reversed() -> Self { | |
Self { 1 - (function(1 - $0)) } | |
} | |
static func powered(_ power: Double) -> Self { | |
Self { pow($0, power) } | |
} | |
} | |
extension TimingFunction { | |
static let linear = Self { $0 } | |
static let quadIn = Self.powered(2) | |
static let quadOut = quadIn.reversed() | |
static let cubicIn = Self.powered(3) | |
static let cubicOut = cubicIn.reversed() | |
static let quartIn = Self.powered(4) | |
static let quartOut = quartIn.reversed() | |
static let quintIn = Self.powered(5) | |
static let quintOut = quintIn.reversed() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment