Loading...
Searching...
No Matches
NCVector3d.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import <Foundation/Foundation.h>
3
16DEFAULT_EXPORT_ATTRIBUTE
17@interface NCVector3d : NSObject
18
22- (nonnull instancetype)initWithX:(float)x
23 y:(float)y
24 z:(float)z;
25
29+ (nonnull instancetype)vector3dWithX:(float)x
30 y:(float)y
31 z:(float)z;
32
36@property (nonatomic, readonly) float x;
37
41@property (nonatomic, readonly) float y;
42
46@property (nonatomic, readonly) float z;
47
48- (NSComparisonResult)compare:(nonnull NCVector3d *)other;
49
50@end