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
24DEFAULT_EXPORT_ATTRIBUTE
25@interface NCBoundingBox : NSObject
26
30- (nonnull instancetype)initWithBottomLeft:(nonnull NCPoint *)bottomLeft
31 topRight:(nonnull NCPoint *)topRight;
32
36+ (nonnull instancetype)boundingBoxWithBottomLeft:(nonnull NCPoint *)bottomLeft
37 topRight:(nonnull NCPoint *)topRight;
38
51@property (nonatomic, readonly, nonnull) NCPoint * bottomLeft;
52
65@property (nonatomic, readonly, nonnull) NCPoint * topRight;
66
67@end