Loading...
Searching...
No Matches
NCPoint.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import <Foundation/Foundation.h>
3
15DEFAULT_EXPORT_ATTRIBUTE
16@interface NCPoint : NSObject
17
21- (nonnull instancetype)initWithX:(float)x
22 y:(float)y;
23
27+ (nonnull instancetype)pointWithX:(float)x
28 y:(float)y;
29
33@property (nonatomic, readonly) float x;
34
38@property (nonatomic, readonly) float y;
39
40@end