11#import <Foundation/Foundation.h>
12#import <UniPRT/IBox.h>
13#import <UniPRT/IPoint.h>
14#import <UniPRT/PrintPlane.h>
15#import <UniPRT/Defaults.h>
16#import <UniPRT/Point.h>
17#import <UniPRT/_Box.h>
56@property (nonatomic, strong) id<IRuler>
ruler;
68@property (nonatomic, strong) id<IPoint>
start;
80@property (nonatomic, strong) id<IPoint>
end;
131- (instancetype)initWithStart:(
id<IPoint>)start end:(
id<IPoint>)end lineThickness:(
float)lineThickness;
164- (instancetype)initWithXStart:(
float)xStart yStart:(
float)yStart xEnd:(
float)xEnd yEnd:(
float)yEnd lineThickness:(
float)lineThickness;
id< IPoint > end
The ending point of the box.
Definition Box.h:80
id< IPoint > start
The starting point of the box.
Definition Box.h:68
float cornerRounding
The corner rounding radius of the box.
Definition Box.h:104
float lineThickness
The thickness of the box's lines.
Definition Box.h:92
NSString * description()
Returns a string that can be sent to the printer.
id< IRuler > ruler
The ruler used to measure the box.
Definition Box.h:56
A protocol defining the interface for Box classes.
Definition IBox.h:32