UniPRT SDK v1.0.0.0
 
Loading...
Searching...
No Matches
ILine.h
1//
2// ILine.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/8.
6//
7
8#ifndef ILine_h
9#define ILine_h
10
11// ILine.h
12#import <Foundation/Foundation.h>
13#import <UniPRT/IRuler.h>
14#import <UniPRT/IPoint.h>
15
32@protocol ILine <NSObject>
33
44@property (nonatomic, strong) id<IRuler> ruler;
45
56@property (nonatomic, strong) id<IPoint> start;
57
68@property (nonatomic, strong) id<IPoint> end;
69
80@property (nonatomic, assign) float lineThickness;
81
82@end
83
84#endif /* ILine_h */