Loading...
Searching...
No Matches
NCPoint.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import <Foundation/Foundation.h>
3
24DEFAULT_EXPORT_ATTRIBUTE
25@interface NCPoint : NSObject
26
30- (nonnull instancetype)initWithX:(float)x
31 y:(float)y;
32
36+ (nonnull instancetype)pointWithX:(float)x
37 y:(float)y;
38
52@property (nonatomic, readonly) float x;
53
67@property (nonatomic, readonly) float y;
68
69@end