12#import <Foundation/Foundation.h>
14#import <UniPRT/ILine.h>
15#import <UniPRT/IPoint.h>
16#import <UniPRT/IRuler.h>
46@property (nonatomic, strong) id<IRuler>
ruler;
58@property (nonatomic, strong) id<IPoint>
start;
70@property (nonatomic, strong) id<IPoint>
end;
109- (instancetype)initWithStart:(
id<IPoint>)start end:(
id<IPoint>)end lineThickness:(
float)lineThickness;
Base class for lines.
Definition ALine.h:34
id< IPoint > end
Ending point of the line.
Definition ALine.h:70
id< IPoint > start
Starting point of the line.
Definition ALine.h:58
float lineThickness
Thickness of the line.
Definition ALine.h:82
NSString * description()
Returns a string representation of the line for debugging purposes.
id< IRuler > ruler
The ruler used for placement. If not set, the default ruler setting is used.
Definition ALine.h:46
A protocol defining the interface for Line classes.
Definition ILine.h:32