build-dxf 0.0.20-11 → 0.0.20-13

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.
@@ -20,6 +20,7 @@ export declare class CommandFlow extends EventDispatcher<{
20
20
  list: CommandFlowCallBack[];
21
21
  rollbacklist: ((data?: any) => void)[];
22
22
  revokeRollbacklist: ((data?: any) => void)[];
23
+ writeOperationList: boolean;
23
24
  /**
24
25
  *
25
26
  * @param operation
@@ -12,7 +12,7 @@ export declare class VerticalCorrection extends CommandFlowComponent<{}> {
12
12
  shortcutKeys: string[];
13
13
  shortcutKeys2: string[];
14
14
  static commandName: string;
15
- private recursion;
15
+ recursion: boolean;
16
16
  onAddFromParent(parent: ComponentManager): void;
17
17
  /**
18
18
  * 进入命令约束
@@ -44,6 +44,17 @@ export declare class VerticalCorrection extends CommandFlowComponent<{}> {
44
44
  * @param targettLine
45
45
  * @param vistedList
46
46
  */
47
+ correction0(targettLine: LineSegment, resultList?: any[], vistedList?: Set<LineSegment>): any[] | undefined;
48
+ /** 修正2
49
+ * 第一步:确定需要修复的线段
50
+ * 第二步:查找与该线段相交的其他线段
51
+ * 第三步:找出两端点相交的线段,其他为区间相交
52
+ * 第四步:找出两端点相交的线段数量,大于2, 该点不能修
53
+ * 第五步:修正
54
+ * 第六步:修正同向线段
55
+ * @param targettLine
56
+ * @param vistedList
57
+ */
47
58
  correction(targettLine: LineSegment, resultList?: any[], vistedList?: Set<LineSegment>): any[] | undefined;
48
59
  /** 开始
49
60
  * @param next