build-dxf 0.1.165 → 0.1.167

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "build-dxf",
3
- "version": "0.1.165",
3
+ "version": "0.1.167",
4
4
  "description": "",
5
5
  "main": "./src/index.js",
6
6
  "types": "./src/index.d.ts",
@@ -39,6 +39,8 @@ export declare class DrawHole extends Command<{
39
39
  * 移动端需要选择一个点, 用来创建拖拽点
40
40
  */
41
41
  selectFirstPoint(next: any): Promise<void>;
42
+ private updateState;
43
+ private registerSizeModifier;
42
44
  /** 选择开始点
43
45
  * @param next
44
46
  */
@@ -6,12 +6,17 @@ import { RenderManager } from './RenderManager';
6
6
  import { CommandManager } from '../../../utils/command';
7
7
  import { App } from 'vue';
8
8
  import { DxfSystem } from '../..';
9
+ import { LineSegment } from '../../../utils/index.ts';
9
10
  import * as THREE from "three";
10
11
  export declare class Editor extends Component<{
11
12
  pointerPositionChange: {
12
13
  position: THREE.Vector2;
13
14
  };
14
15
  cancelCommand: {};
16
+ drawHoleCommandStateChange: {
17
+ point: THREE.Vector3;
18
+ line?: LineSegment | null;
19
+ };
15
20
  }> {
16
21
  static name: string;
17
22
  container: THREE.Group<THREE.Object3DEventMap>;