MBNNAttitudeData.h 844 B

12345678910111213141516171819202122232425262728293031
  1. // This file is generated and will be overwritten automatically.
  2. #import <Foundation/Foundation.h>
  3. NS_SWIFT_NAME(AttitudeData)
  4. __attribute__((visibility ("default")))
  5. @interface MBNNAttitudeData : 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)initWithPitch:(float)pitch
  11. yaw:(float)yaw
  12. roll:(float)roll;
  13. /** pitch in radians */
  14. @property (nonatomic, readonly) float pitch;
  15. /** yaw in radians */
  16. @property (nonatomic, readonly) float yaw;
  17. /** roll in radians */
  18. @property (nonatomic, readonly) float roll;
  19. - (BOOL)isEqualToAttitudeData:(nonnull MBNNAttitudeData *)other;
  20. @end