| 12345678910111213141516171819202122232425262728293031323334 |
- // This file is generated and will be overwritten automatically.
- #import <Foundation/Foundation.h>
- /** 4 component vector. */
- NS_SWIFT_NAME(Vec4)
- __attribute__((visibility ("default")))
- @interface MBMVec4 : NSObject
- // This class provides custom init which should be called
- - (nonnull instancetype)init NS_UNAVAILABLE;
- // This class provides custom init which should be called
- + (nonnull instancetype)new NS_UNAVAILABLE;
- - (nonnull instancetype)initWithX:(double)x
- y:(double)y
- z:(double)z
- w:(double)w;
- /** The x component of the vector. */
- @property (nonatomic, readonly) double x;
- /** The y component of the vector. */
- @property (nonatomic, readonly) double y;
- /** The z component of the vector. */
- @property (nonatomic, readonly) double z;
- /** The w component of the vector. */
- @property (nonatomic, readonly) double w;
- @end
|