Loading...
Searching...
No Matches
NCCamera.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import "NCGlobalPoint.h"
3#import <Foundation/Foundation.h>
4
27DEFAULT_EXPORT_ATTRIBUTE
28@interface NCCamera : NSObject
29
33- (nonnull instancetype)initWithPoint:(nonnull NCGlobalPoint *)point
34 zoom:(float)zoom
35 rotation:(float)rotation
36 tilt:(float)tilt;
37
41+ (nonnull instancetype)cameraWithPoint:(nonnull NCGlobalPoint *)point
42 zoom:(float)zoom
43 rotation:(float)rotation
44 tilt:(float)tilt;
45
49@property (nonatomic, readonly, nonnull) NCGlobalPoint * point;
50
54@property (nonatomic, readonly) float zoom;
55
60@property (nonatomic, readonly) float rotation;
61
66@property (nonatomic, readonly) float tilt;
67
68@end