mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-07 08:01:10 +00:00
19 lines
344 B
Swift
19 lines
344 B
Swift
//
|
|
// Interpolatable.swift
|
|
// lottie-swift
|
|
//
|
|
// Created by Brandon Withrow on 1/14/19.
|
|
//
|
|
|
|
import Foundation
|
|
import CoreGraphics
|
|
|
|
protocol Interpolatable {
|
|
|
|
func interpolateTo(_ to: Self,
|
|
amount: CGFloat,
|
|
spatialOutTangent: CGPoint?,
|
|
spatialInTangent: CGPoint?) -> Self
|
|
|
|
}
|