build-dxf 0.1.166 → 0.1.168
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -16,6 +16,7 @@ export declare class DrawHole extends Command<{
|
|
|
16
16
|
pointerMove: {
|
|
17
17
|
point: THREE.Vector3;
|
|
18
18
|
line?: LineSegment | null;
|
|
19
|
+
hole?: LineSegment | null;
|
|
19
20
|
};
|
|
20
21
|
}> {
|
|
21
22
|
static name: string;
|
|
@@ -39,6 +40,8 @@ export declare class DrawHole extends Command<{
|
|
|
39
40
|
* 移动端需要选择一个点, 用来创建拖拽点
|
|
40
41
|
*/
|
|
41
42
|
selectFirstPoint(next: any): Promise<void>;
|
|
43
|
+
private updateState;
|
|
44
|
+
private registerSizeModifier;
|
|
42
45
|
/** 选择开始点
|
|
43
46
|
* @param next
|
|
44
47
|
*/
|
|
@@ -13,9 +13,10 @@ export declare class Editor extends Component<{
|
|
|
13
13
|
position: THREE.Vector2;
|
|
14
14
|
};
|
|
15
15
|
cancelCommand: {};
|
|
16
|
-
|
|
16
|
+
drawHoleCommandStateChange: {
|
|
17
17
|
point: THREE.Vector3;
|
|
18
18
|
line?: LineSegment | null;
|
|
19
|
+
hole?: LineSegment | null;
|
|
19
20
|
};
|
|
20
21
|
}> {
|
|
21
22
|
static name: string;
|