Loading...
Searching...
No Matches
NCBoundingBox.h
Go to the documentation of this file.
1#import "NCExport.h"
2#import "NCPoint.h"
3#import <Foundation/Foundation.h>
4
25DEFAULT_EXPORT_ATTRIBUTE
26@interface NCBoundingBox : NSObject
27
31- (nonnull instancetype)initWithBottomLeft:(nonnull NCPoint *)bottomLeft
32 topRight:(nonnull NCPoint *)topRight;
33
37+ (nonnull instancetype)boundingBoxWithBottomLeft:(nonnull NCPoint *)bottomLeft
38 topRight:(nonnull NCPoint *)topRight;
39
53@property (nonatomic, readonly, nonnull) NCPoint * bottomLeft;
54
68@property (nonatomic, readonly, nonnull) NCPoint * topRight;
69
70@end