UniPRT SDK v1.0.0.0
 
载入中...
搜索中...
未找到
IBox.h
1//
2// IBox.h
3// sdk_json_Objective-C
4//
5// Created by Realbuber on 2024/5/8.
6//
7
8#ifndef IBox_h
9#define IBox_h
10
11// IBox.h
12#import <Foundation/Foundation.h>
13#import <UniPRT/IRuler.h>
14#import <UniPRT/IPoint.h>
15
32@protocol IBox <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
92@property (nonatomic, assign) float cornerRounding;
93
94@end
95
96#endif /* IBox_h */