@g1cloud/bpmn-modeler-next 5.0.0-alpha.53 → 5.0.0-alpha.54
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/dist/agent/resolver/routeRepair.d.ts +15 -0
- package/dist/bpmn-modeler.js +4925 -4877
- package/dist/bpmn-modeler.umd.cjs +35 -35
- package/package.json +1 -1
|
@@ -11,6 +11,21 @@ import { ResolverServices } from './lower';
|
|
|
11
11
|
* - 장애물이 구간 끝에 걸쳐 있음 — 끝점 도킹과 얽혀 잘못 건드리면 연결이 떨어져 보인다
|
|
12
12
|
*/
|
|
13
13
|
export declare function planSegmentDetours(a: GeometryPoint, b: GeometryPoint, rect: GeometryShape, margin?: number): [GeometryPoint[], GeometryPoint[]] | null;
|
|
14
|
+
/**
|
|
15
|
+
* B-76. 한 구간이 장애물을 **여럿** 가로지를 때 그 **전부를 한 번에** 넘는 4점(순수).
|
|
16
|
+
*
|
|
17
|
+
* `planSegmentDetours` 를 장애물마다 반복하면 우회가 누적돼 **톱니**가 된다 — 실측으로
|
|
18
|
+
* 장애물 5개가 **22점 · 우회 구간 5개**를 만들었고 사용자가 그 선을 지목해 포기했다
|
|
19
|
+
* (표본 60 · 같은 간선이 표본 59 에서도 14점이었다).
|
|
20
|
+
*
|
|
21
|
+
* 🔴 **사람은 예외 없이 한 번에 넘는다** — 실무 코퍼스 26종에서 이 형상이 21건 발화하는데
|
|
22
|
+
* **전량이 우회 구간 1개**다(장애물이 6개인 경우도 4점). 그래서 판별자는 개수가 아니라
|
|
23
|
+
* **위상**(톱니인가 단일인가)이고, 고칠 것은 판정이 아니라 **형상**이다.
|
|
24
|
+
*
|
|
25
|
+
* 반환은 `planSegmentDetours` 와 같은 계약(구간 사이에 끼울 점들 · 두 방향). `null` =
|
|
26
|
+
* 장애물이 하나거나(그때는 구간 우회와 같다) 형상이 자명하지 않다.
|
|
27
|
+
*/
|
|
28
|
+
export declare function planMergedSegmentDetour(a: GeometryPoint, b: GeometryPoint, rects: readonly GeometryShape[], margin?: number): [GeometryPoint[], GeometryPoint[]] | null;
|
|
14
29
|
/**
|
|
15
30
|
* 꺾임점이 장애물 **안**에 있는 형상 — 구간 우회로는 못 푼다(B-13 ②, 두 번째 표본 잔존 1건).
|
|
16
31
|
*
|