Banuba SDK
BNBVec3.h
Go to the documentation of this file.
1 // AUTOGENERATED FILE - DO NOT MODIFY!
2 // This file was generated by Djinni from scene.djinni
3 
4 #import <Foundation/Foundation.h>
5 
6 
7 #ifndef DJINNI_EXPORT
8  #define DJINNI_EXPORT __attribute__((__visibility__("default")))
9 #endif
10 
12 @interface BNBVec3 : NSObject
13 - (nonnull instancetype)initWithX:(float)x
14  y:(float)y
15  z:(float)z;
16 + (nonnull instancetype)vec3WithX:(float)x
17  y:(float)y
18  z:(float)z;
19 
20 @property (nonatomic, readonly) float x;
21 
22 @property (nonatomic, readonly) float y;
23 
24 @property (nonatomic, readonly) float z;
25 
26 @end
BNBVec3::y
float y
Definition: BNBVec3.h:22
BNBVec3::z
float z
Definition: BNBVec3.h:24
BNBVec3::x
float x
Definition: BNBVec3.h:20
DJINNI_EXPORT
#define DJINNI_EXPORT
Definition: BNBVec3.h:8
BNBVec3
Definition: BNBVec3.h:12