LOTShapeTransform.h 742 B

12345678910111213141516171819202122232425
  1. //
  2. // LOTShapeTransform.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 <CoreGraphics/CoreGraphics.h>
  10. #import <QuartzCore/QuartzCore.h>
  11. #import "LOTKeyframe.h"
  12. @interface LOTShapeTransform : NSObject
  13. - (instancetype)initWithJSON:(NSDictionary *)jsonDictionary;
  14. @property (nonatomic, readonly) NSString *keyname;
  15. @property (nonatomic, readonly) LOTKeyframeGroup *position;
  16. @property (nonatomic, readonly) LOTKeyframeGroup *anchor;
  17. @property (nonatomic, readonly) LOTKeyframeGroup *scale;
  18. @property (nonatomic, readonly) LOTKeyframeGroup *rotation;
  19. @property (nonatomic, readonly) LOTKeyframeGroup *opacity;
  20. @end