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
用於放置的標尺。如果未設置,則使用默認標尺設置。
Definition ILine.h:44
id< IPoint > start
線條的起始位置。
Definition ILine.h:56
id< IPoint > end
線條的結束位置。
Definition ILine.h:68
float lineThickness
根據使用中的標尺單位確定線條的厚度。
Definition ILine.h:80