mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
22 lines
621 B
Objective-C
22 lines
621 B
Objective-C
//
|
|
// LOTAnimatablePointValue.h
|
|
// LottieAnimator
|
|
//
|
|
// Created by brandon_withrow on 6/23/16.
|
|
// Copyright © 2016 Brandon Withrow. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreGraphics/CoreGraphics.h>
|
|
#import "LOTAnimatableValue.h"
|
|
|
|
@interface LOTAnimatablePointValue : NSObject <LOTAnimatableValue>
|
|
|
|
- (instancetype)initWithPointValues:(NSDictionary *)pointValues frameRate:(NSNumber *)frameRate;
|
|
- (void)remapPointsFromBounds:(CGRect)frombounds toBounds:(CGRect)toBounds;
|
|
|
|
@property (nonatomic, readonly) CGPoint initialPoint;
|
|
@property (nonatomic, assign) BOOL usePathAnimation;
|
|
|
|
@end
|