LOTShapeRectangle.h 603 B

12345678910111213141516171819202122
  1. //
  2. // LOTShapeRectangle.h
  3. // LottieAnimator
  4. //
  5. // Created by Brandon Withrow on 12/15/15.
  6. // Copyright © 2015 Brandon Withrow. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "LOTKeyframe.h"
  10. @interface LOTShapeRectangle : NSObject
  11. - (instancetype)initWithJSON:(NSDictionary *)jsonDictionary;
  12. @property (nonatomic, readonly) NSString *keyname;
  13. @property (nonatomic, readonly) LOTKeyframeGroup *position;
  14. @property (nonatomic, readonly) LOTKeyframeGroup *size;
  15. @property (nonatomic, readonly) LOTKeyframeGroup *cornerRadius;
  16. @property (nonatomic, readonly) BOOL reversed;
  17. @end