MBMVec3.h 809 B

123456789101112131415161718192021222324252627282930
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. /** 3 component vector. */
  4. NS_SWIFT_NAME(Vec3)
  5. __attribute__((visibility ("default")))
  6. @interface MBMVec3 : 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. /** The x component of the vector. */
  15. @property (nonatomic, readonly) double x;
  16. /** The y component of the vector. */
  17. @property (nonatomic, readonly) double y;
  18. /** The z component of the vector. */
  19. @property (nonatomic, readonly) double z;
  20. @end