MBNNPoint3d.h 767 B

12345678910111213141516171819202122232425262728293031
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. NS_SWIFT_NAME(Point3d)
  4. __attribute__((visibility ("default")))
  5. @interface MBNNPoint3d : NSObject
  6. // This class provides custom init which should be called
  7. - (nonnull instancetype)init NS_UNAVAILABLE;
  8. // This class provides custom init which should be called
  9. + (nonnull instancetype)new NS_UNAVAILABLE;
  10. - (nonnull instancetype)initWithX:(float)x
  11. y:(float)y
  12. z:(float)z;
  13. /** X axis */
  14. @property (nonatomic, readonly) float x;
  15. /** Y axis */
  16. @property (nonatomic, readonly) float y;
  17. /** Z axis */
  18. @property (nonatomic, readonly) float z;
  19. - (BOOL)isEqualToPoint3d:(nonnull MBNNPoint3d *)other;
  20. @end