// This file is generated and will be overwritten automatically. #import /** 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