Banuba SDK
BNBVec4.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 BNBVec4 : NSObject
13 - (nonnull instancetype)initWithX:(float)x
14  y:(float)y
15  z:(float)z
16  w:(float)w;
17 + (nonnull instancetype)vec4WithX:(float)x
18  y:(float)y
19  z:(float)z
20  w:(float)w;
21 
22 @property (nonatomic, readonly) float x;
23 
24 @property (nonatomic, readonly) float y;
25 
26 @property (nonatomic, readonly) float z;
27 
28 @property (nonatomic, readonly) float w;
29 
30 @end
BNBVec4::w
float w
Definition: BNBVec4.h:28
BNBVec4::z
float z
Definition: BNBVec4.h:26
DJINNI_EXPORT
#define DJINNI_EXPORT
Definition: BNBVec4.h:8
BNBVec4::x
float x
Definition: BNBVec4.h:22
BNBVec4::y
float y
Definition: BNBVec4.h:24
BNBVec4
Definition: BNBVec4.h:12