Loading...
Searching...
No Matches
NCVector3d.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import <Foundation/Foundation.h>
3
8DEFAULT_EXPORT_ATTRIBUTE
9@interface NCVector3d : NSObject
10
14- (nonnull instancetype)initWithX:(float)x
15 y:(float)y
16 z:(float)z;
17
21+ (nonnull instancetype)vector3dWithX:(float)x
22 y:(float)y
23 z:(float)z;
24
25@property (nonatomic, readonly) float x;
26
27@property (nonatomic, readonly) float y;
28
29@property (nonatomic, readonly) float z;
30
31- (NSComparisonResult)compare:(nonnull NCVector3d *)other;
32
33@end