2021-10-12 15:07:00 +04:00

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
}