Loading...
Searching...
No Matches
NCPoint.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import <Foundation/Foundation.h>
3
23DEFAULT_EXPORT_ATTRIBUTE
24@interface NCPoint : NSObject
25
29- (nonnull instancetype)initWithX:(float)x
30 y:(float)y;
31
35+ (nonnull instancetype)pointWithX:(float)x
36 y:(float)y;
37
50@property (nonatomic, readonly) float x;
51
64@property (nonatomic, readonly) float y;
65
66@end