UniPRT SDK v2.0.0.0
 
载入中...
搜索中...
未找到
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 */
id< IRuler > ruler
用于放置的标尺。如果未设置,则使用默认标尺设置。
定义 ILine.h:44
id< IPoint > start
线条的起始位置。
定义 ILine.h:56
id< IPoint > end
线条的结束位置。
定义 ILine.h:68
float lineThickness
根据使用中的标尺单位确定线条的厚度。
定义 ILine.h:80