2020-08-03 21:04:52 +03:00

14 lines
340 B
Objective-C

#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@class PGRectangle;
@interface PGCameraShotMetadata : NSObject
@property (nonatomic, assign) CGFloat deviceAngle;
@property (nonatomic, strong) PGRectangle *rectangle;
+ (CGFloat)relativeDeviceAngleFromAngle:(CGFloat)angle orientation:(UIInterfaceOrientation)orientation;
@end