mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-12-23 22:55:00 +00:00
22 lines
617 B
Objective-C
22 lines
617 B
Objective-C
//
|
|
// LAAnimatablePointValue.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 "LAAnimatableValue.h"
|
|
|
|
@interface LAAnimatablePointValue : NSObject <LAAnimatableValue>
|
|
|
|
- (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
|