Loading...
Searching...
No Matches
NCCamera.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import "NCPoint.h"
3#import <Foundation/Foundation.h>
4
27DEFAULT_EXPORT_ATTRIBUTE
28@interface NCCamera : NSObject
29
33- (nonnull instancetype)initWithPoint:(nonnull NCPoint *)point
34 zoom:(float)zoom
35 rotation:(float)rotation;
36
40+ (nonnull instancetype)cameraWithPoint:(nonnull NCPoint *)point
41 zoom:(float)zoom
42 rotation:(float)rotation;
43
47@property (nonatomic, readonly, nonnull) NCPoint * point;
48
52@property (nonatomic, readonly) float zoom;
53
58@property (nonatomic, readonly) float rotation;
59
60@end