MBMVec4.h 934 B

12345678910111213141516171819202122232425262728293031323334
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** 4 component vector. */
  4. NS_SWIFT_NAME(Vec4)
  5. __attribute__((visibility ("default")))
  6. @interface MBMVec4 : NSObject
  7. // This class provides custom init which should be called
  8. - (nonnull instancetype)init NS_UNAVAILABLE;
  9. // This class provides custom init which should be called
  10. + (nonnull instancetype)new NS_UNAVAILABLE;
  11. - (nonnull instancetype)initWithX:(double)x
  12. y:(double)y
  13. z:(double)z
  14. w:(double)w;
  15. /** The x component of the vector. */
  16. @property (nonatomic, readonly) double x;
  17. /** The y component of the vector. */
  18. @property (nonatomic, readonly) double y;
  19. /** The z component of the vector. */
  20. @property (nonatomic, readonly) double z;
  21. /** The w component of the vector. */
  22. @property (nonatomic, readonly) double w;
  23. @end