// This file is generated and will be overwritten automatically. #import /** 3 component vector. */ NS_SWIFT_NAME(Vec3) __attribute__((visibility ("default"))) @interface MBMVec3 : 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; /** 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; @end