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>
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;
A class representing a box shape for TSPL.
Definition _Box.h:44
id< IRuler > ruler
The ruler used to measure the box.
Definition _Box.h:56
float lineThickness
The thickness of the box's lines.
Definition _Box.h:92
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
id< IPoint > end
The ending point of the box.
Definition _Box.h:80
NSString * description()
Returns a string that can be sent to the printer.
A protocol defining the interface for Box classes.
Definition IBox.h:32