11#import <Foundation/Foundation.h>
13#import <UniPRT/IBox.h>
14#import <UniPRT/IPoint.h>
15#import <UniPRT/PrintPlane.h>
16#import <UniPRT/Defaults.h>
17#import <UniPRT/Point.h>
18#import <UniPRT/PglBox.h>
57@property (nonatomic, strong) id<IRuler>
ruler;
69@property (nonatomic, strong) id<IPoint>
start;
81@property (nonatomic, strong) id<IPoint>
end;
132- (instancetype)initWithStart:(
id<IPoint>)start end:(
id<IPoint>)end lineThickness:(
float)lineThickness;
165- (instancetype)initWithXStart:(
float)xStart yStart:(
float)yStart xEnd:(
float)xEnd yEnd:(
float)yEnd lineThickness:(
float)lineThickness;
A class representing a box shape.
Definition _PglBox.h:45
NSString * description()
Returns a string that describes the contents of the receiver.
id< IPoint > start
The starting point of the box.
Definition _PglBox.h:69
id< IRuler > ruler
The ruler used to measure the box.
Definition _PglBox.h:57
float lineThickness
The thickness of the box's lines.
Definition _PglBox.h:93
id< IPoint > end
The ending point of the box.
Definition _PglBox.h:81
float cornerRounding
The corner rounding radius of the box.
Definition _PglBox.h:105
A protocol defining the interface for Box classes.
Definition IBox.h:32