LOTPathInterpolator.h 526 B

12345678910111213141516171819202122232425
  1. //
  2. // LOTPathInterpolator.h
  3. // Lottie
  4. //
  5. // Created by brandon_withrow on 7/13/17.
  6. // Copyright © 2017 Airbnb. All rights reserved.
  7. //
  8. #import "LOTValueInterpolator.h"
  9. #import "LOTPlatformCompat.h"
  10. #import "LOTBezierPath.h"
  11. #import "LOTValueDelegate.h"
  12. NS_ASSUME_NONNULL_BEGIN
  13. @interface LOTPathInterpolator : LOTValueInterpolator
  14. - (LOTBezierPath *)pathForFrame:(NSNumber *)frame cacheLengths:(BOOL)cacheLengths;
  15. @property (nonatomic, weak, nullable) id<LOTPathValueDelegate> delegate;
  16. @end
  17. NS_ASSUME_NONNULL_END