mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-17 11:00:07 +00:00
36 lines
973 B
Objective-C
36 lines
973 B
Objective-C
//
|
|
// LOTShapeStar.h
|
|
// Lottie
|
|
//
|
|
// Created by brandon_withrow on 7/27/17.
|
|
// Copyright © 2017 Airbnb. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "LOTKeyframe.h"
|
|
|
|
typedef enum : NSUInteger {
|
|
LOTPolystarShapeNone,
|
|
LOTPolystarShapeStar,
|
|
LOTPolystarShapePolygon
|
|
} LOTPolystarShape;
|
|
|
|
@interface LOTShapeStar : NSObject
|
|
|
|
- (instancetype)initWithJSON:(NSDictionary *)jsonDictionary;
|
|
|
|
@property (nonatomic, readonly) NSString *keyname;
|
|
@property (nonatomic, readonly) LOTKeyframeGroup *outerRadius;
|
|
@property (nonatomic, readonly) LOTKeyframeGroup *outerRoundness;
|
|
|
|
@property (nonatomic, readonly) LOTKeyframeGroup *innerRadius;
|
|
@property (nonatomic, readonly) LOTKeyframeGroup *innerRoundness;
|
|
|
|
@property (nonatomic, readonly) LOTKeyframeGroup *position;
|
|
@property (nonatomic, readonly) LOTKeyframeGroup *numberOfPoints;
|
|
@property (nonatomic, readonly) LOTKeyframeGroup *rotation;
|
|
|
|
@property (nonatomic, readonly) LOTPolystarShape type;
|
|
|
|
@end
|