UniPRT SDK v1.0.0.0
 
Loading...
Searching...
No Matches
_PglLine.h
1//
2// _PglLine.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/24.
6//
7
8#ifndef _PglLine_h
9#define _PglLine_h
10
11#import <Foundation/Foundation.h>
12
13#import <UniPRT/ALine.h>
14#import <UniPRT/IPoint.h>
15#import <UniPRT/PrintPlane.h>
16#import <UniPRT/Defaults.h>
17#import <UniPRT/Point.h>
18#import <UniPRT/PglLine.h>
19
45@interface _PglLine : ALine
46
72- (instancetype)initWithStart:(id<IPoint>)start end:(id<IPoint>)end lineThickness:(float)lineThickness;
73
105- (instancetype)initWithXStart:(float)xStart yStart:(float)yStart xEnd:(float)xEnd yEnd:(float)yEnd lineThickness:(float)lineThickness;
106
133- (NSString *)description;
134
135@end
136
137#endif /* _PglLine_h */
A class representing a line shape.
Definition _PglLine.h:46
NSString * description()
Returns a string that can be sent to the printer.
Base class for lines.
Definition ALine.h:34