diff --git a/e2e/playwright/command-bar-tests.spec.ts b/e2e/playwright/command-bar-tests.spec.ts
index 9637f7cd4..ba766e2cd 100644
--- a/e2e/playwright/command-bar-tests.spec.ts
+++ b/e2e/playwright/command-bar-tests.spec.ts
@@ -83,7 +83,7 @@ test.describe('Command bar tests', () => {
await page.keyboard.press('Enter') // submit
await page.waitForTimeout(100)
await expect(page.locator('.cm-activeLine')).toContainText(
- `fillet(radius = ${KCL_DEFAULT_LENGTH}, tags = [seg01])`
+ `fillet(radius = ${KCL_DEFAULT_LENGTH}, tags = [getCommonEdge(faces=[seg01,capEnd001])])`
)
})
diff --git a/e2e/playwright/point-click.spec.ts b/e2e/playwright/point-click.spec.ts
index 74876fd85..5d972412b 100644
--- a/e2e/playwright/point-click.spec.ts
+++ b/e2e/playwright/point-click.spec.ts
@@ -1888,9 +1888,8 @@ sketch002 = startSketchOn(XZ)
|> close()
extrude001 = extrude(sketch001, length = -12)
`
- const firstFilletDeclaration = 'fillet(radius = 5, tags = [seg01])'
- const secondFilletDeclaration =
- 'fillet(radius = 5, tags = [getOppositeEdge(seg01)])'
+ const firstFilletDeclaration = `fillet(radius=5,tags=[getCommonEdge(faces=[seg01,capEnd001])],)`
+ const secondFilletDeclaration = `fillet(radius=5,tags=[getCommonEdge(faces=[seg01,capStart001])],)`
// Locators
const firstEdgeLocation = { x: 600, y: 193 }
@@ -1987,10 +1986,12 @@ extrude001 = extrude(sketch001, length = -12)
})
await test.step(`Confirm code is added to the editor`, async () => {
- await editor.expectEditor.toContain(firstFilletDeclaration)
+ await editor.expectEditor.toContain(firstFilletDeclaration, {
+ shouldNormalise: true,
+ })
await editor.expectState({
diagnostics: [],
- activeLines: ['|> fillet(radius = 5, tags = [seg01])'],
+ activeLines: [')'],
highlightedCode: '',
})
})
@@ -2039,12 +2040,15 @@ extrude001 = extrude(sketch001, length = -12)
const editedRadius = '1'
await editFillet(firstFilletFeatureTreeIndex, '5', editedRadius)
await editor.expectEditor.toContain(
- firstFilletDeclaration.replace('radius = 5', 'radius = ' + editedRadius)
+ firstFilletDeclaration.replace('radius=5', 'radius=' + editedRadius),
+ { shouldNormalise: true }
)
// Edit back to original radius
await editFillet(firstFilletFeatureTreeIndex, editedRadius, '5')
- await editor.expectEditor.toContain(firstFilletDeclaration)
+ await editor.expectEditor.toContain(firstFilletDeclaration, {
+ shouldNormalise: true,
+ })
})
// Test 2: Command bar flow without preselected edges
@@ -2118,10 +2122,12 @@ extrude001 = extrude(sketch001, length = -12)
})
await test.step(`Confirm code is added to the editor`, async () => {
- await editor.expectEditor.toContain(secondFilletDeclaration)
+ await editor.expectEditor.toContain(secondFilletDeclaration, {
+ shouldNormalise: true,
+ })
await editor.expectState({
diagnostics: [],
- activeLines: ['|>fillet(radius=5,tags=[getOppositeEdge(seg01)])'],
+ activeLines: [')'],
highlightedCode: '',
})
})
@@ -2140,15 +2146,15 @@ extrude001 = extrude(sketch001, length = -12)
const editedRadius = '2'
await editFillet(secondFilletFeatureTreeIndex, '5', editedRadius)
await editor.expectEditor.toContain(
- secondFilletDeclaration.replace(
- 'radius = 5',
- 'radius = ' + editedRadius
- )
+ secondFilletDeclaration.replace('radius=5', 'radius=' + editedRadius),
+ { shouldNormalise: true }
)
// Edit back to original radius
await editFillet(secondFilletFeatureTreeIndex, editedRadius, '5')
- await editor.expectEditor.toContain(secondFilletDeclaration)
+ await editor.expectEditor.toContain(secondFilletDeclaration, {
+ shouldNormalise: true,
+ })
})
// Test 3: Delete fillets
@@ -2158,7 +2164,9 @@ extrude001 = extrude(sketch001, length = -12)
await page.waitForTimeout(500)
})
await test.step('Delete fillet via feature tree selection', async () => {
- await editor.expectEditor.toContain(secondFilletDeclaration)
+ await editor.expectEditor.toContain(secondFilletDeclaration, {
+ shouldNormalise: true,
+ })
const operationButton = await toolbar.getFeatureTreeOperation(
'Fillet',
1
@@ -2372,8 +2380,9 @@ profile001 = startProfile(sketch001, at = [0, 0])
|> close()
extrude001 = extrude(profile001, length = 5)
`
- const taggedSegment = `yLine(length = -1, tag = $seg01)`
- const filletExpression = `fillet(radius = 1000, tags = [getNextAdjacentEdge(seg01)])`
+ const taggedSegment1 = `xLine(length = -10, tag = $seg01)`
+ const taggedSegment2 = `yLine(length = -1, tag = $seg02)`
+ const filletExpression = `fillet(radius = 1000, tags = [getCommonEdge(faces = [seg01, seg02])])`
// Locators
const edgeLocation = { x: 659, y: 313 }
@@ -2461,7 +2470,8 @@ extrude001 = extrude(profile001, length = 5)
})
await test.step('Verify code is updated regardless of execution errors', async () => {
- await editor.expectEditor.toContain(taggedSegment)
+ await editor.expectEditor.toContain(taggedSegment1)
+ await editor.expectEditor.toContain(taggedSegment2)
await editor.expectEditor.toContain(filletExpression)
})
})
@@ -2486,9 +2496,8 @@ sketch001 = startSketchOn(XY)
|> close()
extrude001 = extrude(sketch001, length = -12)
`
- const firstChamferDeclaration = 'chamfer(length = 5, tags = [seg01])'
- const secondChamferDeclaration =
- 'chamfer(length = 5, tags = [getOppositeEdge(seg01)])'
+ const firstChamferDeclaration = `chamfer(length=5,tags=[getCommonEdge(faces=[seg01,capEnd001])],)`
+ const secondChamferDeclaration = `chamfer(length=5,tags=[getCommonEdge(faces=[seg01,capStart001])],)`
// Locators
const firstEdgeLocation = { x: 600, y: 193 }
@@ -2578,10 +2587,12 @@ extrude001 = extrude(sketch001, length = -12)
})
await test.step(`Confirm code is added to the editor`, async () => {
- await editor.expectEditor.toContain(firstChamferDeclaration)
+ await editor.expectEditor.toContain(firstChamferDeclaration, {
+ shouldNormalise: true,
+ })
await editor.expectState({
diagnostics: [],
- activeLines: ['|>chamfer(length=5,tags=[seg01])'],
+ activeLines: [')'],
highlightedCode: '',
})
})
@@ -2634,15 +2645,15 @@ extrude001 = extrude(sketch001, length = -12)
const editedLength = '1'
await editChamfer(firstChamferFeatureTreeIndex, '5', editedLength)
await editor.expectEditor.toContain(
- firstChamferDeclaration.replace(
- 'length = 5',
- 'length = ' + editedLength
- )
+ firstChamferDeclaration.replace('length=5', 'length=' + editedLength),
+ { shouldNormalise: true }
)
// Edit back to original radius
await editChamfer(firstChamferFeatureTreeIndex, editedLength, '5')
- await editor.expectEditor.toContain(firstChamferDeclaration)
+ await editor.expectEditor.toContain(firstChamferDeclaration, {
+ shouldNormalise: true,
+ })
})
// Test 2: Command bar flow without preselected edges
@@ -2716,10 +2727,12 @@ extrude001 = extrude(sketch001, length = -12)
})
await test.step(`Confirm code is added to the editor`, async () => {
- await editor.expectEditor.toContain(secondChamferDeclaration)
+ await editor.expectEditor.toContain(secondChamferDeclaration, {
+ shouldNormalise: true,
+ })
await editor.expectState({
diagnostics: [],
- activeLines: ['|>chamfer(length=5,tags=[getOppositeEdge(seg01)])'],
+ activeLines: [')'],
highlightedCode: '',
})
})
@@ -2738,15 +2751,15 @@ extrude001 = extrude(sketch001, length = -12)
const editedLength = '2'
await editChamfer(secondChamferFeatureTreeIndex, '5', editedLength)
await editor.expectEditor.toContain(
- secondChamferDeclaration.replace(
- 'length = 5',
- 'length = ' + editedLength
- )
+ secondChamferDeclaration.replace('length=5', 'length=' + editedLength),
+ { shouldNormalise: true }
)
// Edit back to original length
await editChamfer(secondChamferFeatureTreeIndex, editedLength, '5')
- await editor.expectEditor.toContain(secondChamferDeclaration)
+ await editor.expectEditor.toContain(secondChamferDeclaration, {
+ shouldNormalise: true,
+ })
})
// Test 3: Delete chamfer via feature tree selection
diff --git a/known-circular.txt b/known-circular.txt
index a5d6d3595..212b60f2d 100644
--- a/known-circular.txt
+++ b/known-circular.txt
@@ -1,15 +1,14 @@
> zoo-modeling-app@0.0.0 circular-deps
-> dpdm --no-warning --no-tree -T --skip-dynamic-imports=circular src/index.tsx
+> dpdm --no-warning --no-tree -T --skip-dynamic-imports=circular src/index.tsx | sed -E 's/[[:space:]]*[0-9]+\) / /g'
• Circular Dependencies
- 1) src/lang/std/sketch.ts -> src/lang/modifyAst.ts -> src/lang/modifyAst/addEdgeTreatment.ts
- 2) src/lang/std/sketch.ts -> src/lang/modifyAst.ts
- 3) src/lang/std/sketch.ts -> src/lang/modifyAst.ts -> src/lang/std/sketchcombos.ts
- 4) src/lib/singletons.ts -> src/editor/manager.ts -> src/lib/selections.ts
- 5) src/lib/singletons.ts -> src/editor/manager.ts -> src/lib/selections.ts
- 6) src/lib/singletons.ts -> src/lang/codeManager.ts
- 7) src/lib/singletons.ts -> src/clientSideScene/sceneEntities.ts -> src/clientSideScene/segments.ts -> src/components/Toolbar/angleLengthInfo.ts
- 8) src/lib/singletons.ts -> src/clientSideScene/sceneEntities.ts -> src/clientSideScene/segments.ts
- 9) src/hooks/useModelingContext.ts -> src/components/ModelingMachineProvider.tsx -> src/components/Toolbar/Intersect.tsx -> src/components/SetHorVertDistanceModal.tsx -> src/lib/useCalculateKclExpression.ts
- 10) src/routes/Onboarding/index.tsx -> src/routes/Onboarding/Camera.tsx -> src/routes/Onboarding/utils.tsx
+ src/lang/std/sketch.ts -> src/lang/modifyAst.ts
+ src/lang/std/sketch.ts -> src/lang/modifyAst.ts -> src/lang/std/sketchcombos.ts
+ src/lib/singletons.ts -> src/editor/manager.ts -> src/lib/selections.ts
+ src/lib/singletons.ts -> src/editor/manager.ts -> src/lib/selections.ts
+ src/lib/singletons.ts -> src/lang/codeManager.ts
+ src/lib/singletons.ts -> src/clientSideScene/sceneEntities.ts -> src/clientSideScene/segments.ts -> src/components/Toolbar/angleLengthInfo.ts
+ src/lib/singletons.ts -> src/clientSideScene/sceneEntities.ts -> src/clientSideScene/segments.ts
+ src/hooks/useModelingContext.ts -> src/components/ModelingMachineProvider.tsx -> src/components/Toolbar/Intersect.tsx -> src/components/SetHorVertDistanceModal.tsx -> src/lib/useCalculateKclExpression.ts
+ src/routes/Onboarding/index.tsx -> src/routes/Onboarding/Camera.tsx -> src/routes/Onboarding/utils.tsx
diff --git a/package.json b/package.json
index 0b91b233f..db34f29f5 100644
--- a/package.json
+++ b/package.json
@@ -112,7 +112,7 @@
"remove-importmeta": "sed -i 's/import.meta.url/window.location.origin/g' \"./rust/kcl-wasm-lib/pkg/kcl_wasm_lib.js\"; sed -i '' 's/import.meta.url/window.location.origin/g' \"./rust/kcl-wasm-lib/pkg/kcl_wasm_lib.js\" || echo \"sed for both mac and linux\"",
"lint-fix": "eslint --fix --ext .ts --ext .tsx src e2e packages/codemirror-lsp-client/src rust/kcl-language-server/client/src",
"lint": "eslint --max-warnings 0 --ext .ts --ext .tsx src e2e packages/codemirror-lsp-client/src rust/kcl-language-server/client/src",
- "circular-deps": "dpdm --no-warning --no-tree -T --skip-dynamic-imports=circular src/index.tsx",
+ "circular-deps": "dpdm --no-warning --no-tree -T --skip-dynamic-imports=circular src/index.tsx | sed -E 's/[[:space:]]*[0-9]+\\) / /g'",
"circular-deps:overwrite": "npm run circular-deps | sed '$d' | grep -v '^npm run' > known-circular.txt",
"circular-deps:diff": "./scripts/diff-circular-deps.sh",
"circular-deps:diff:nodejs": "npm run circular-deps:diff || node ./scripts/diff.js",
diff --git a/rust/kcl-lib/src/execution/artifact.rs b/rust/kcl-lib/src/execution/artifact.rs
index 36fa47469..39eadb3a6 100644
--- a/rust/kcl-lib/src/execution/artifact.rs
+++ b/rust/kcl-lib/src/execution/artifact.rs
@@ -175,6 +175,8 @@ pub struct Segment {
#[serde(default, skip_serializing_if = "Option::is_none")]
pub edge_cut_id: Option
[239, 246, 0]"]
8[Solid2d]
end
- subgraph path25 [Path]
- 25["Path
[390, 417, 0]"]
- 26["Segment
[423, 441, 0]"]
- 27["Segment
[447, 466, 0]"]
- 28["Segment
[472, 528, 0]"]
- 29["Segment
[534, 541, 0]"]
- 30[Solid2d]
+ subgraph path20 [Path]
+ 20["Path
[390, 417, 0]"]
+ 21["Segment
[423, 441, 0]"]
+ 22["Segment
[447, 466, 0]"]
+ 23["Segment
[472, 528, 0]"]
+ 24["Segment
[534, 541, 0]"]
+ 25[Solid2d]
end
1["Plane
[12, 31, 0]"]
9["Sweep Extrusion
[260, 292, 0]"]
@@ -26,26 +26,17 @@ flowchart LR
14["Cap Start"]
15["Cap End"]
16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
+ 17["SweepEdge Opposite"]
18["SweepEdge Opposite"]
- 19["SweepEdge Adjacent"]
- 20["SweepEdge Opposite"]
- 21["SweepEdge Adjacent"]
- 22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
- 24["EdgeCut Fillet
[298, 332, 0]"]
- 31["Sweep Extrusion
[555, 585, 0]"]
- 32[Wall]
- 33[Wall]
- 34[Wall]
- 35["Cap End"]
- 36["SweepEdge Opposite"]
- 37["SweepEdge Adjacent"]
- 38["SweepEdge Opposite"]
- 39["SweepEdge Adjacent"]
- 40["SweepEdge Opposite"]
- 41["SweepEdge Adjacent"]
- 42["StartSketchOnFace
[345, 384, 0]"]
+ 19["EdgeCut Fillet
[298, 332, 0]"]
+ 26["Sweep Extrusion
[555, 585, 0]"]
+ 27[Wall]
+ 28[Wall]
+ 29[Wall]
+ 30["Cap End"]
+ 31["SweepEdge Opposite"]
+ 32["SweepEdge Opposite"]
+ 33["StartSketchOnFace
[345, 384, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -55,18 +46,17 @@ flowchart LR
2 ---- 9
2 --- 8
3 --- 13
- 3 --- 22
- 3 --- 23
+ 3 --- 18
+ 3 x--> 15
4 --- 12
- 4 --- 20
- 4 --- 21
- 4 --- 24
+ 4 --- 17
+ 4 --- 19
+ 4 x--> 15
5 --- 11
- 5 --- 18
- 5 --- 19
+ 5 --- 16
+ 5 x--> 15
6 --- 10
- 6 --- 16
- 6 --- 17
+ 6 x--> 15
9 --- 10
9 --- 11
9 --- 12
@@ -76,36 +66,36 @@ flowchart LR
9 --- 16
9 --- 17
9 --- 18
- 9 --- 19
- 9 --- 20
- 9 --- 21
- 9 --- 22
- 9 --- 23
- 11 --- 25
- 25 --- 26
- 25 --- 27
- 25 --- 28
- 25 --- 29
- 25 ---- 31
- 25 --- 30
- 26 --- 34
- 26 --- 40
- 26 --- 41
- 27 --- 33
- 27 --- 38
- 27 --- 39
- 28 --- 32
- 28 --- 36
- 28 --- 37
- 31 --- 32
- 31 --- 33
- 31 --- 34
- 31 --- 35
- 31 --- 36
- 31 --- 37
- 31 --- 38
- 31 --- 39
- 31 --- 40
- 31 --- 41
- 11 <--x 42
+ 11 --- 20
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 18 <--x 13
+ 18 <--x 14
+ 20 --- 21
+ 20 --- 22
+ 20 --- 23
+ 20 --- 24
+ 20 ---- 26
+ 20 --- 25
+ 21 --- 29
+ 21 --- 32
+ 21 <--x 11
+ 22 --- 28
+ 22 --- 31
+ 22 <--x 11
+ 23 --- 27
+ 23 <--x 11
+ 26 --- 27
+ 26 --- 28
+ 26 --- 29
+ 26 --- 30
+ 26 --- 31
+ 26 --- 32
+ 31 <--x 28
+ 31 <--x 30
+ 32 <--x 29
+ 32 <--x 30
+ 11 <--x 33
```
diff --git a/rust/kcl-lib/tests/artifact_graph_sketch_on_face_etc/artifact_commands.snap b/rust/kcl-lib/tests/artifact_graph_sketch_on_face_etc/artifact_commands.snap
index 77ada0a73..c52a1de2c 100644
--- a/rust/kcl-lib/tests/artifact_graph_sketch_on_face_etc/artifact_commands.snap
+++ b/rust/kcl-lib/tests/artifact_graph_sketch_on_face_etc/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,80 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -436,20 +517,27 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -472,6 +560,80 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -641,20 +803,27 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -677,6 +846,80 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -846,20 +1089,27 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -881,5 +1131,79 @@ description: Artifact commands artifact_graph_sketch_on_face_etc.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/artifact_graph_sketch_on_face_etc/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/artifact_graph_sketch_on_face_etc/artifact_graph_flowchart.snap.md
index 1499f9700..39d573ba2 100644
--- a/rust/kcl-lib/tests/artifact_graph_sketch_on_face_etc/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/artifact_graph_sketch_on_face_etc/artifact_graph_flowchart.snap.md
@@ -8,29 +8,29 @@ flowchart LR
6["Segment
[191, 198, 0]"]
7[Solid2d]
end
- subgraph path20 [Path]
- 20["Path
[300, 330, 0]"]
- 21["Segment
[336, 354, 0]"]
- 22["Segment
[360, 379, 0]"]
- 23["Segment
[385, 441, 0]"]
- 24["Segment
[447, 454, 0]"]
- 25[Solid2d]
+ subgraph path16 [Path]
+ 16["Path
[300, 330, 0]"]
+ 17["Segment
[336, 354, 0]"]
+ 18["Segment
[360, 379, 0]"]
+ 19["Segment
[385, 441, 0]"]
+ 20["Segment
[447, 454, 0]"]
+ 21[Solid2d]
end
- subgraph path37 [Path]
- 37["Path
[556, 583, 0]"]
- 38["Segment
[589, 623, 0]"]
- 39["Segment
[629, 648, 0]"]
- 40["Segment
[654, 710, 0]"]
- 41["Segment
[716, 723, 0]"]
- 42[Solid2d]
+ subgraph path29 [Path]
+ 29["Path
[556, 583, 0]"]
+ 30["Segment
[589, 623, 0]"]
+ 31["Segment
[629, 648, 0]"]
+ 32["Segment
[654, 710, 0]"]
+ 33["Segment
[716, 723, 0]"]
+ 34[Solid2d]
end
- subgraph path54 [Path]
- 54["Path
[825, 852, 0]"]
- 55["Segment
[858, 878, 0]"]
- 56["Segment
[884, 905, 0]"]
- 57["Segment
[911, 967, 0]"]
- 58["Segment
[973, 980, 0]"]
- 59[Solid2d]
+ subgraph path42 [Path]
+ 42["Path
[825, 852, 0]"]
+ 43["Segment
[858, 878, 0]"]
+ 44["Segment
[884, 905, 0]"]
+ 45["Segment
[911, 967, 0]"]
+ 46["Segment
[973, 980, 0]"]
+ 47[Solid2d]
end
1["Plane
[12, 29, 0]"]
8["Sweep Extrusion
[212, 242, 0]"]
@@ -40,47 +40,31 @@ flowchart LR
12["Cap Start"]
13["Cap End"]
14["SweepEdge Opposite"]
- 15["SweepEdge Adjacent"]
- 16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
- 18["SweepEdge Opposite"]
- 19["SweepEdge Adjacent"]
- 26["Sweep Extrusion
[468, 498, 0]"]
- 27[Wall]
- 28[Wall]
- 29[Wall]
- 30["Cap End"]
- 31["SweepEdge Opposite"]
- 32["SweepEdge Adjacent"]
- 33["SweepEdge Opposite"]
- 34["SweepEdge Adjacent"]
- 35["SweepEdge Opposite"]
- 36["SweepEdge Adjacent"]
- 43["Sweep Extrusion
[737, 767, 0]"]
- 44[Wall]
- 45[Wall]
- 46[Wall]
- 47["Cap End"]
- 48["SweepEdge Opposite"]
- 49["SweepEdge Adjacent"]
- 50["SweepEdge Opposite"]
- 51["SweepEdge Adjacent"]
- 52["SweepEdge Opposite"]
- 53["SweepEdge Adjacent"]
- 60["Sweep Extrusion
[994, 1024, 0]"]
- 61[Wall]
- 62[Wall]
- 63[Wall]
- 64["Cap End"]
- 65["SweepEdge Opposite"]
- 66["SweepEdge Adjacent"]
- 67["SweepEdge Opposite"]
- 68["SweepEdge Adjacent"]
- 69["SweepEdge Opposite"]
- 70["SweepEdge Adjacent"]
- 71["StartSketchOnFace
[255, 294, 0]"]
- 72["StartSketchOnFace
[511, 550, 0]"]
- 73["StartSketchOnFace
[780, 819, 0]"]
+ 15["SweepEdge Opposite"]
+ 22["Sweep Extrusion
[468, 498, 0]"]
+ 23[Wall]
+ 24[Wall]
+ 25[Wall]
+ 26["Cap End"]
+ 27["SweepEdge Opposite"]
+ 28["SweepEdge Opposite"]
+ 35["Sweep Extrusion
[737, 767, 0]"]
+ 36[Wall]
+ 37[Wall]
+ 38[Wall]
+ 39["Cap End"]
+ 40["SweepEdge Opposite"]
+ 41["SweepEdge Opposite"]
+ 48["Sweep Extrusion
[994, 1024, 0]"]
+ 49[Wall]
+ 50[Wall]
+ 51[Wall]
+ 52["Cap End"]
+ 53["SweepEdge Opposite"]
+ 54["SweepEdge Opposite"]
+ 55["StartSketchOnFace
[255, 294, 0]"]
+ 56["StartSketchOnFace
[511, 550, 0]"]
+ 57["StartSketchOnFace
[780, 819, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -89,14 +73,13 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 11
- 3 --- 18
- 3 --- 19
+ 3 --- 15
+ 3 x--> 12
4 --- 10
- 4 --- 16
- 4 --- 17
+ 4 --- 14
+ 4 x--> 12
5 --- 9
- 5 --- 14
- 5 --- 15
+ 5 x--> 12
8 --- 9
8 --- 10
8 --- 11
@@ -104,89 +87,86 @@ flowchart LR
8 --- 13
8 --- 14
8 --- 15
- 8 --- 16
- 8 --- 17
- 8 --- 18
- 8 --- 19
- 10 --- 20
- 20 --- 21
- 20 --- 22
- 20 --- 23
- 20 --- 24
- 20 ---- 26
- 20 --- 25
- 21 --- 29
- 21 --- 35
- 21 --- 36
+ 10 --- 16
+ 14 <--x 10
+ 14 <--x 13
+ 15 <--x 11
+ 15 <--x 13
+ 16 --- 17
+ 16 --- 18
+ 16 --- 19
+ 16 --- 20
+ 16 ---- 22
+ 16 --- 21
+ 17 --- 25
+ 17 --- 28
+ 17 <--x 10
+ 18 --- 24
+ 18 --- 27
+ 18 <--x 10
+ 19 --- 23
+ 19 <--x 10
+ 22 --- 23
+ 22 --- 24
+ 22 --- 25
+ 22 --- 26
+ 22 --- 27
22 --- 28
- 22 --- 33
- 22 --- 34
- 23 --- 27
- 23 --- 31
- 23 --- 32
- 26 --- 27
- 26 --- 28
26 --- 29
- 26 --- 30
- 26 --- 31
- 26 --- 32
- 26 --- 33
- 26 --- 34
- 26 --- 35
- 26 --- 36
- 30 --- 37
- 37 --- 38
- 37 --- 39
- 37 --- 40
- 37 --- 41
- 37 ---- 43
- 37 --- 42
- 38 --- 46
- 38 --- 52
- 38 --- 53
- 39 --- 45
- 39 --- 50
- 39 --- 51
- 40 --- 44
- 40 --- 48
- 40 --- 49
- 43 --- 44
- 43 --- 45
- 43 --- 46
- 43 --- 47
- 43 --- 48
- 43 --- 49
- 43 --- 50
+ 27 <--x 24
+ 27 <--x 26
+ 28 <--x 25
+ 28 <--x 26
+ 29 --- 30
+ 29 --- 31
+ 29 --- 32
+ 29 --- 33
+ 29 ---- 35
+ 29 --- 34
+ 30 --- 38
+ 30 --- 41
+ 30 <--x 26
+ 31 --- 37
+ 31 --- 40
+ 31 <--x 26
+ 32 --- 36
+ 32 <--x 26
+ 35 --- 36
+ 35 --- 37
+ 35 --- 38
+ 35 --- 39
+ 35 --- 40
+ 35 --- 41
+ 38 --- 42
+ 40 <--x 37
+ 40 <--x 39
+ 41 <--x 38
+ 41 <--x 39
+ 42 --- 43
+ 42 --- 44
+ 42 --- 45
+ 42 --- 46
+ 42 ---- 48
+ 42 --- 47
43 --- 51
- 43 --- 52
- 43 --- 53
- 46 --- 54
- 54 --- 55
- 54 --- 56
- 54 --- 57
- 54 --- 58
- 54 ---- 60
- 54 --- 59
- 55 --- 63
- 55 --- 69
- 55 --- 70
- 56 --- 62
- 56 --- 67
- 56 --- 68
- 57 --- 61
- 57 --- 65
- 57 --- 66
- 60 --- 61
- 60 --- 62
- 60 --- 63
- 60 --- 64
- 60 --- 65
- 60 --- 66
- 60 --- 67
- 60 --- 68
- 60 --- 69
- 60 --- 70
- 10 <--x 71
- 30 <--x 72
- 46 <--x 73
+ 43 --- 54
+ 43 <--x 38
+ 44 --- 50
+ 44 --- 53
+ 44 <--x 38
+ 45 --- 49
+ 45 <--x 38
+ 48 --- 49
+ 48 --- 50
+ 48 --- 51
+ 48 --- 52
+ 48 --- 53
+ 48 --- 54
+ 53 <--x 50
+ 53 <--x 52
+ 54 <--x 51
+ 54 <--x 52
+ 10 <--x 55
+ 26 <--x 56
+ 38 <--x 57
```
diff --git a/rust/kcl-lib/tests/assembly_mixed_units_cubes/artifact_commands.snap b/rust/kcl-lib/tests/assembly_mixed_units_cubes/artifact_commands.snap
index 4d502b848..06ebb952e 100644
--- a/rust/kcl-lib/tests/assembly_mixed_units_cubes/artifact_commands.snap
+++ b/rust/kcl-lib/tests/assembly_mixed_units_cubes/artifact_commands.snap
@@ -248,20 +248,27 @@ description: Artifact commands assembly_mixed_units_cubes.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -284,6 +291,33 @@ description: Artifact commands assembly_mixed_units_cubes.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -304,6 +338,80 @@ description: Artifact commands assembly_mixed_units_cubes.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -523,20 +631,27 @@ description: Artifact commands assembly_mixed_units_cubes.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -559,6 +674,33 @@ description: Artifact commands assembly_mixed_units_cubes.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -578,5 +720,79 @@ description: Artifact commands assembly_mixed_units_cubes.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/assembly_mixed_units_cubes/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/assembly_mixed_units_cubes/artifact_graph_flowchart.snap.md
index 76ffd60c7..f1938a036 100644
--- a/rust/kcl-lib/tests/assembly_mixed_units_cubes/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/assembly_mixed_units_cubes/artifact_graph_flowchart.snap.md
@@ -9,14 +9,14 @@ flowchart LR
7["Segment
[255, 262, 6]"]
8[Solid2d]
end
- subgraph path25 [Path]
- 25["Path
[76, 114, 7]"]
- 26["Segment
[120, 137, 7]"]
- 27["Segment
[143, 161, 7]"]
- 28["Segment
[167, 185, 7]"]
- 29["Segment
[191, 247, 7]"]
- 30["Segment
[253, 260, 7]"]
- 31[Solid2d]
+ subgraph path20 [Path]
+ 20["Path
[76, 114, 7]"]
+ 21["Segment
[120, 137, 7]"]
+ 22["Segment
[143, 161, 7]"]
+ 23["Segment
[167, 185, 7]"]
+ 24["Segment
[191, 247, 7]"]
+ 25["Segment
[253, 260, 7]"]
+ 26[Solid2d]
end
1["Plane
[47, 66, 6]"]
9["Sweep Extrusion
[268, 290, 6]"]
@@ -27,29 +27,19 @@ flowchart LR
14["Cap Start"]
15["Cap End"]
16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
+ 17["SweepEdge Opposite"]
18["SweepEdge Opposite"]
- 19["SweepEdge Adjacent"]
- 20["SweepEdge Opposite"]
- 21["SweepEdge Adjacent"]
- 22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
- 24["Plane
[47, 66, 7]"]
- 32["Sweep Extrusion
[266, 288, 7]"]
- 33[Wall]
- 34[Wall]
- 35[Wall]
- 36[Wall]
- 37["Cap Start"]
- 38["Cap End"]
- 39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 41["SweepEdge Opposite"]
- 42["SweepEdge Adjacent"]
- 43["SweepEdge Opposite"]
- 44["SweepEdge Adjacent"]
- 45["SweepEdge Opposite"]
- 46["SweepEdge Adjacent"]
+ 19["Plane
[47, 66, 7]"]
+ 27["Sweep Extrusion
[266, 288, 7]"]
+ 28[Wall]
+ 29[Wall]
+ 30[Wall]
+ 31[Wall]
+ 32["Cap Start"]
+ 33["Cap End"]
+ 34["SweepEdge Opposite"]
+ 35["SweepEdge Opposite"]
+ 36["SweepEdge Opposite"]
1 --- 2
2 --- 3
2 --- 4
@@ -59,17 +49,16 @@ flowchart LR
2 ---- 9
2 --- 8
3 --- 13
- 3 --- 22
- 3 --- 23
+ 3 --- 18
+ 3 x--> 14
4 --- 12
- 4 --- 20
- 4 --- 21
+ 4 --- 17
+ 4 x--> 14
5 --- 11
- 5 --- 18
- 5 --- 19
+ 5 --- 16
+ 5 x--> 14
6 --- 10
- 6 --- 16
- 6 --- 17
+ 6 x--> 14
9 --- 10
9 --- 11
9 --- 12
@@ -79,43 +68,44 @@ flowchart LR
9 --- 16
9 --- 17
9 --- 18
- 9 --- 19
- 9 --- 20
- 9 --- 21
- 9 --- 22
- 9 --- 23
- 24 --- 25
- 25 --- 26
- 25 --- 27
- 25 --- 28
- 25 --- 29
- 25 --- 30
- 25 ---- 32
- 25 --- 31
- 26 --- 36
- 26 --- 45
- 26 --- 46
+ 16 <--x 11
+ 16 <--x 15
+ 17 <--x 12
+ 17 <--x 15
+ 18 <--x 13
+ 18 <--x 15
+ 19 --- 20
+ 20 --- 21
+ 20 --- 22
+ 20 --- 23
+ 20 --- 24
+ 20 --- 25
+ 20 ---- 27
+ 20 --- 26
+ 21 --- 31
+ 21 --- 36
+ 21 x--> 32
+ 22 --- 30
+ 22 --- 35
+ 22 x--> 32
+ 23 --- 29
+ 23 --- 34
+ 23 x--> 32
+ 24 --- 28
+ 24 x--> 32
+ 27 --- 28
+ 27 --- 29
+ 27 --- 30
+ 27 --- 31
+ 27 --- 32
+ 27 --- 33
+ 27 --- 34
27 --- 35
- 27 --- 43
- 27 --- 44
- 28 --- 34
- 28 --- 41
- 28 --- 42
- 29 --- 33
- 29 --- 39
- 29 --- 40
- 32 --- 33
- 32 --- 34
- 32 --- 35
- 32 --- 36
- 32 --- 37
- 32 --- 38
- 32 --- 39
- 32 --- 40
- 32 --- 41
- 32 --- 42
- 32 --- 43
- 32 --- 44
- 32 --- 45
- 32 --- 46
+ 27 --- 36
+ 34 <--x 29
+ 34 <--x 33
+ 35 <--x 30
+ 35 <--x 33
+ 36 <--x 31
+ 36 <--x 33
```
diff --git a/rust/kcl-lib/tests/basic_fillet_cube_close_opposite/artifact_commands.snap b/rust/kcl-lib/tests/basic_fillet_cube_close_opposite/artifact_commands.snap
index 436222bca..45c68bb97 100644
--- a/rust/kcl-lib/tests/basic_fillet_cube_close_opposite/artifact_commands.snap
+++ b/rust/kcl-lib/tests/basic_fillet_cube_close_opposite/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands basic_fillet_cube_close_opposite.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands basic_fillet_cube_close_opposite.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands basic_fillet_cube_close_opposite.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/basic_fillet_cube_close_opposite/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/basic_fillet_cube_close_opposite/artifact_graph_flowchart.snap.md
index 4463ea511..c6e0719bb 100644
--- a/rust/kcl-lib/tests/basic_fillet_cube_close_opposite/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/basic_fillet_cube_close_opposite/artifact_graph_flowchart.snap.md
@@ -17,15 +17,11 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 23["EdgeCut Fillet
[223, 283, 0]"]
- 24["EdgeCut Fillet
[223, 283, 0]"]
+ 18["SweepEdge Opposite"]
+ 19["EdgeCut Fillet
[223, 283, 0]"]
+ 20["EdgeCut Fillet
[223, 283, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -34,18 +30,18 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
+ 3 --- 17
+ 3 x--> 13
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 13
5 --- 10
- 5 --- 17
- 5 --- 18
+ 5 --- 15
+ 5 x--> 13
6 --- 9
- 6 --- 15
- 6 --- 16
- 6 --- 23
+ 6 --- 18
+ 6 --- 19
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -56,9 +52,11 @@ flowchart LR
8 --- 16
8 --- 17
8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 15 <--x 24
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 18 <--x 20
```
diff --git a/rust/kcl-lib/tests/basic_fillet_cube_end/artifact_commands.snap b/rust/kcl-lib/tests/basic_fillet_cube_end/artifact_commands.snap
index 9add865fc..d93539546 100644
--- a/rust/kcl-lib/tests/basic_fillet_cube_end/artifact_commands.snap
+++ b/rust/kcl-lib/tests/basic_fillet_cube_end/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands basic_fillet_cube_end.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands basic_fillet_cube_end.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands basic_fillet_cube_end.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/basic_fillet_cube_end/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/basic_fillet_cube_end/artifact_graph_flowchart.snap.md
index d0b8ff572..7c29da90c 100644
--- a/rust/kcl-lib/tests/basic_fillet_cube_end/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/basic_fillet_cube_end/artifact_graph_flowchart.snap.md
@@ -17,15 +17,10 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 23["EdgeCut Fillet
[211, 269, 0]"]
- 24["EdgeCut Fillet
[211, 269, 0]"]
+ 18["EdgeCut Fillet
[211, 269, 0]"]
+ 19["EdgeCut Fillet
[211, 269, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -34,18 +29,17 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
- 3 --- 23
+ 3 --- 17
+ 3 --- 18
+ 3 x--> 13
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 13
5 --- 10
- 5 --- 17
- 5 --- 18
+ 5 --- 15
+ 5 x--> 13
6 --- 9
- 6 --- 15
- 6 --- 16
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -55,10 +49,9 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 21 <--x 24
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 19
```
diff --git a/rust/kcl-lib/tests/basic_fillet_cube_next_adjacent/artifact_commands.snap b/rust/kcl-lib/tests/basic_fillet_cube_next_adjacent/artifact_commands.snap
index 54a4fa7dd..363164bad 100644
--- a/rust/kcl-lib/tests/basic_fillet_cube_next_adjacent/artifact_commands.snap
+++ b/rust/kcl-lib/tests/basic_fillet_cube_next_adjacent/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands basic_fillet_cube_next_adjacent.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands basic_fillet_cube_next_adjacent.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands basic_fillet_cube_next_adjacent.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/basic_fillet_cube_next_adjacent/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/basic_fillet_cube_next_adjacent/artifact_graph_flowchart.snap.md
index 1a0572e6a..c80145ef6 100644
--- a/rust/kcl-lib/tests/basic_fillet_cube_next_adjacent/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/basic_fillet_cube_next_adjacent/artifact_graph_flowchart.snap.md
@@ -17,13 +17,9 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 --- 4
@@ -32,17 +28,17 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
+ 3 --- 17
+ 3 x--> 13
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 13
5 --- 10
- 5 --- 17
- 5 --- 18
+ 5 --- 15
+ 5 x--> 13
6 --- 9
- 6 --- 15
- 6 --- 16
+ 6 --- 18
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -53,8 +49,10 @@ flowchart LR
8 --- 16
8 --- 17
8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
```
diff --git a/rust/kcl-lib/tests/basic_fillet_cube_previous_adjacent/artifact_commands.snap b/rust/kcl-lib/tests/basic_fillet_cube_previous_adjacent/artifact_commands.snap
index 0951a3672..7a52d3b22 100644
--- a/rust/kcl-lib/tests/basic_fillet_cube_previous_adjacent/artifact_commands.snap
+++ b/rust/kcl-lib/tests/basic_fillet_cube_previous_adjacent/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands basic_fillet_cube_previous_adjacent.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands basic_fillet_cube_previous_adjacent.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands basic_fillet_cube_previous_adjacent.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/basic_fillet_cube_previous_adjacent/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/basic_fillet_cube_previous_adjacent/artifact_graph_flowchart.snap.md
index 1a0572e6a..7b0fe49cc 100644
--- a/rust/kcl-lib/tests/basic_fillet_cube_previous_adjacent/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/basic_fillet_cube_previous_adjacent/artifact_graph_flowchart.snap.md
@@ -17,13 +17,8 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 --- 4
@@ -32,17 +27,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
+ 3 --- 17
+ 3 x--> 13
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 13
5 --- 10
- 5 --- 17
- 5 --- 18
+ 5 --- 15
+ 5 x--> 13
6 --- 9
- 6 --- 15
- 6 --- 16
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -52,9 +46,10 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
```
diff --git a/rust/kcl-lib/tests/basic_fillet_cube_start/artifact_commands.snap b/rust/kcl-lib/tests/basic_fillet_cube_start/artifact_commands.snap
index 1fd1a30fa..cdf6218c7 100644
--- a/rust/kcl-lib/tests/basic_fillet_cube_start/artifact_commands.snap
+++ b/rust/kcl-lib/tests/basic_fillet_cube_start/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands basic_fillet_cube_start.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands basic_fillet_cube_start.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands basic_fillet_cube_start.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/basic_fillet_cube_start/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/basic_fillet_cube_start/artifact_graph_flowchart.snap.md
index 7d1574263..285c365c6 100644
--- a/rust/kcl-lib/tests/basic_fillet_cube_start/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/basic_fillet_cube_start/artifact_graph_flowchart.snap.md
@@ -17,15 +17,10 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 23["EdgeCut Fillet
[211, 253, 0]"]
- 24["EdgeCut Fillet
[211, 253, 0]"]
+ 18["EdgeCut Fillet
[211, 253, 0]"]
+ 19["EdgeCut Fillet
[211, 253, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -34,19 +29,18 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
- 3 --- 23
+ 3 --- 17
+ 3 --- 18
+ 3 x--> 13
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 13
5 --- 10
- 5 --- 17
- 5 --- 18
- 5 --- 24
+ 5 --- 15
+ 5 --- 19
+ 5 x--> 13
6 --- 9
- 6 --- 15
- 6 --- 16
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -56,9 +50,10 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
```
diff --git a/rust/kcl-lib/tests/circle_three_point/artifact_commands.snap b/rust/kcl-lib/tests/circle_three_point/artifact_commands.snap
index e89f5d3fc..9086cecf7 100644
--- a/rust/kcl-lib/tests/circle_three_point/artifact_commands.snap
+++ b/rust/kcl-lib/tests/circle_three_point/artifact_commands.snap
@@ -200,5 +200,32 @@ description: Artifact commands circle_three_point.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/circle_three_point/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/circle_three_point/artifact_graph_flowchart.snap.md
index 47dedf58b..4f9bb1530 100644
--- a/rust/kcl-lib/tests/circle_three_point/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/circle_three_point/artifact_graph_flowchart.snap.md
@@ -10,18 +10,13 @@ flowchart LR
6[Wall]
7["Cap Start"]
8["Cap End"]
- 9["SweepEdge Opposite"]
- 10["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 ---- 5
2 --- 4
3 --- 6
- 3 --- 9
- 3 --- 10
+ 3 x--> 7
5 --- 6
5 --- 7
5 --- 8
- 5 --- 9
- 5 --- 10
```
diff --git a/rust/kcl-lib/tests/circular_pattern3d_a_pattern/artifact_commands.snap b/rust/kcl-lib/tests/circular_pattern3d_a_pattern/artifact_commands.snap
index b086650ff..5383f3bc6 100644
--- a/rust/kcl-lib/tests/circular_pattern3d_a_pattern/artifact_commands.snap
+++ b/rust/kcl-lib/tests/circular_pattern3d_a_pattern/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands circular_pattern3d_a_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands circular_pattern3d_a_pattern.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands circular_pattern3d_a_pattern.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/circular_pattern3d_a_pattern/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/circular_pattern3d_a_pattern/artifact_graph_flowchart.snap.md
index 2e4e7e7e6..f765f2c06 100644
--- a/rust/kcl-lib/tests/circular_pattern3d_a_pattern/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/circular_pattern3d_a_pattern/artifact_graph_flowchart.snap.md
@@ -17,13 +17,8 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 --- 4
@@ -32,17 +27,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
+ 3 --- 17
+ 3 x--> 13
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 13
5 --- 10
- 5 --- 17
- 5 --- 18
+ 5 --- 15
+ 5 x--> 13
6 --- 9
- 6 --- 15
- 6 --- 16
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -52,9 +46,10 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
```
diff --git a/rust/kcl-lib/tests/crazy_multi_profile/artifact_commands.snap b/rust/kcl-lib/tests/crazy_multi_profile/artifact_commands.snap
index 0c2428cc3..96b9d5c0e 100644
--- a/rust/kcl-lib/tests/crazy_multi_profile/artifact_commands.snap
+++ b/rust/kcl-lib/tests/crazy_multi_profile/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands crazy_multi_profile.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,80 @@ description: Artifact commands crazy_multi_profile.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -789,20 +870,27 @@ description: Artifact commands crazy_multi_profile.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -825,6 +913,80 @@ description: Artifact commands crazy_multi_profile.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -896,20 +1058,27 @@ description: Artifact commands crazy_multi_profile.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -932,6 +1101,80 @@ description: Artifact commands crazy_multi_profile.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1508,20 +1751,27 @@ description: Artifact commands crazy_multi_profile.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1544,6 +1794,33 @@ description: Artifact commands crazy_multi_profile.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1564,6 +1841,80 @@ description: Artifact commands crazy_multi_profile.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1620,20 +1971,27 @@ description: Artifact commands crazy_multi_profile.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1655,5 +2013,79 @@ description: Artifact commands crazy_multi_profile.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/crazy_multi_profile/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/crazy_multi_profile/artifact_graph_flowchart.snap.md
index d2ffc6953..19a84466c 100644
--- a/rust/kcl-lib/tests/crazy_multi_profile/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/crazy_multi_profile/artifact_graph_flowchart.snap.md
@@ -8,76 +8,76 @@ flowchart LR
6["Segment
[243, 250, 0]"]
7[Solid2d]
end
- subgraph path20 [Path]
- 20["Path
[362, 405, 0]"]
- 21["Segment
[411, 435, 0]"]
- 22["Segment
[441, 466, 0]"]
+ subgraph path16 [Path]
+ 16["Path
[362, 405, 0]"]
+ 17["Segment
[411, 435, 0]"]
+ 18["Segment
[441, 466, 0]"]
end
- subgraph path23 [Path]
- 23["Path
[480, 522, 0]"]
- 24["Segment
[528, 593, 0]"]
- 25["Segment
[599, 667, 0]"]
- 26["Segment
[673, 761, 0]"]
- 27["Segment
[767, 823, 0]"]
- 28["Segment
[829, 836, 0]"]
- 29[Solid2d]
+ subgraph path19 [Path]
+ 19["Path
[480, 522, 0]"]
+ 20["Segment
[528, 593, 0]"]
+ 21["Segment
[599, 667, 0]"]
+ 22["Segment
[673, 761, 0]"]
+ 23["Segment
[767, 823, 0]"]
+ 24["Segment
[829, 836, 0]"]
+ 25[Solid2d]
end
- subgraph path30 [Path]
- 30["Path
[850, 892, 0]"]
- 31["Segment
[898, 918, 0]"]
- 32["Segment
[924, 950, 0]"]
- 33["Segment
[956, 1012, 0]"]
- 34["Segment
[1018, 1025, 0]"]
- 35[Solid2d]
+ subgraph path26 [Path]
+ 26["Path
[850, 892, 0]"]
+ 27["Segment
[898, 918, 0]"]
+ 28["Segment
[924, 950, 0]"]
+ 29["Segment
[956, 1012, 0]"]
+ 30["Segment
[1018, 1025, 0]"]
+ 31[Solid2d]
end
- subgraph path36 [Path]
- 36["Path
[1039, 1094, 0]"]
- 37["Segment
[1039, 1094, 0]"]
- 38[Solid2d]
+ subgraph path32 [Path]
+ 32["Path
[1039, 1094, 0]"]
+ 33["Segment
[1039, 1094, 0]"]
+ 34[Solid2d]
end
- subgraph path39 [Path]
- 39["Path
[1108, 1150, 0]"]
- 40["Segment
[1156, 1180, 0]"]
- 41["Segment
[1186, 1211, 0]"]
- 42["Segment
[1217, 1273, 0]"]
- 43["Segment
[1279, 1286, 0]"]
- 44[Solid2d]
+ subgraph path35 [Path]
+ 35["Path
[1108, 1150, 0]"]
+ 36["Segment
[1156, 1180, 0]"]
+ 37["Segment
[1186, 1211, 0]"]
+ 38["Segment
[1217, 1273, 0]"]
+ 39["Segment
[1279, 1286, 0]"]
+ 40[Solid2d]
end
- subgraph path59 [Path]
- 59["Path
[1456, 1497, 0]"]
- 60["Segment
[1503, 1527, 0]"]
- 61["Segment
[1533, 1558, 0]"]
+ subgraph path52 [Path]
+ 52["Path
[1456, 1497, 0]"]
+ 53["Segment
[1503, 1527, 0]"]
+ 54["Segment
[1533, 1558, 0]"]
end
- subgraph path62 [Path]
- 62["Path
[1572, 1614, 0]"]
- 63["Segment
[1620, 1644, 0]"]
- 64["Segment
[1650, 1675, 0]"]
- 65["Segment
[1681, 1737, 0]"]
- 66["Segment
[1743, 1750, 0]"]
- 67[Solid2d]
+ subgraph path55 [Path]
+ 55["Path
[1572, 1614, 0]"]
+ 56["Segment
[1620, 1644, 0]"]
+ 57["Segment
[1650, 1675, 0]"]
+ 58["Segment
[1681, 1737, 0]"]
+ 59["Segment
[1743, 1750, 0]"]
+ 60[Solid2d]
end
- subgraph path68 [Path]
- 68["Path
[1764, 1806, 0]"]
- 69["Segment
[1812, 1835, 0]"]
- 70["Segment
[1841, 1866, 0]"]
- 71["Segment
[1872, 1928, 0]"]
- 72["Segment
[1934, 1941, 0]"]
- 73[Solid2d]
+ subgraph path61 [Path]
+ 61["Path
[1764, 1806, 0]"]
+ 62["Segment
[1812, 1835, 0]"]
+ 63["Segment
[1841, 1866, 0]"]
+ 64["Segment
[1872, 1928, 0]"]
+ 65["Segment
[1934, 1941, 0]"]
+ 66[Solid2d]
end
- subgraph path74 [Path]
- 74["Path
[1955, 2011, 0]"]
- 75["Segment
[1955, 2011, 0]"]
+ subgraph path67 [Path]
+ 67["Path
[1955, 2011, 0]"]
+ 68["Segment
[1955, 2011, 0]"]
+ 69[Solid2d]
+ end
+ subgraph path70 [Path]
+ 70["Path
[2025, 2068, 0]"]
+ 71["Segment
[2074, 2139, 0]"]
+ 72["Segment
[2145, 2213, 0]"]
+ 73["Segment
[2219, 2307, 0]"]
+ 74["Segment
[2313, 2369, 0]"]
+ 75["Segment
[2375, 2382, 0]"]
76[Solid2d]
end
- subgraph path77 [Path]
- 77["Path
[2025, 2068, 0]"]
- 78["Segment
[2074, 2139, 0]"]
- 79["Segment
[2145, 2213, 0]"]
- 80["Segment
[2219, 2307, 0]"]
- 81["Segment
[2313, 2369, 0]"]
- 82["Segment
[2375, 2382, 0]"]
- 83[Solid2d]
- end
1["Plane
[12, 29, 0]"]
8["Sweep Extrusion
[264, 296, 0]"]
9[Wall]
@@ -86,53 +86,37 @@ flowchart LR
12["Cap Start"]
13["Cap End"]
14["SweepEdge Opposite"]
- 15["SweepEdge Adjacent"]
- 16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
- 18["SweepEdge Opposite"]
- 19["SweepEdge Adjacent"]
- 45["Sweep RevolveAboutEdge
[1300, 1366, 0]"]
- 46["Sweep Extrusion
[1380, 1411, 0]"]
- 47[Wall]
- 48[Wall]
- 49[Wall]
- 50["Cap Start"]
- 51["Cap End"]
- 52["SweepEdge Opposite"]
- 53["SweepEdge Adjacent"]
- 54["SweepEdge Opposite"]
- 55["SweepEdge Adjacent"]
- 56["SweepEdge Opposite"]
- 57["SweepEdge Adjacent"]
- 58["Plane
[1424, 1442, 0]"]
- 84["Sweep Extrusion
[2396, 2429, 0]"]
- 85[Wall]
- 86[Wall]
- 87[Wall]
+ 15["SweepEdge Opposite"]
+ 41["SweepEdge Adjacent"]
+ 42["Sweep RevolveAboutEdge
[1300, 1366, 0]"]
+ 43["Sweep Extrusion
[1380, 1411, 0]"]
+ 44[Wall]
+ 45[Wall]
+ 46[Wall]
+ 47["Cap Start"]
+ 48["Cap End"]
+ 49["SweepEdge Opposite"]
+ 50["SweepEdge Opposite"]
+ 51["Plane
[1424, 1442, 0]"]
+ 77["Sweep Extrusion
[2396, 2429, 0]"]
+ 78[Wall]
+ 79[Wall]
+ 80[Wall]
+ 81[Wall]
+ 82["Cap Start"]
+ 83["Cap End"]
+ 84["SweepEdge Opposite"]
+ 85["SweepEdge Opposite"]
+ 86["SweepEdge Opposite"]
+ 87["Sweep RevolveAboutEdge
[2443, 2488, 0]"]
88[Wall]
- 89["Cap Start"]
- 90["Cap End"]
- 91["SweepEdge Opposite"]
- 92["SweepEdge Adjacent"]
+ 89[Wall]
+ 90[Wall]
+ 91["Cap Start"]
+ 92["Cap End"]
93["SweepEdge Opposite"]
- 94["SweepEdge Adjacent"]
- 95["SweepEdge Opposite"]
- 96["SweepEdge Adjacent"]
- 97["SweepEdge Opposite"]
- 98["SweepEdge Adjacent"]
- 99["Sweep RevolveAboutEdge
[2443, 2488, 0]"]
- 100[Wall]
- 101[Wall]
- 102[Wall]
- 103["Cap Start"]
- 104["Cap End"]
- 105["SweepEdge Opposite"]
- 106["SweepEdge Adjacent"]
- 107["SweepEdge Opposite"]
- 108["SweepEdge Adjacent"]
- 109["SweepEdge Opposite"]
- 110["SweepEdge Adjacent"]
- 111["StartSketchOnFace
[309, 348, 0]"]
+ 94["SweepEdge Opposite"]
+ 95["StartSketchOnFace
[309, 348, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -141,14 +125,14 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 11
- 3 --- 18
- 3 --- 19
+ 3 --- 15
+ 3 x--> 12
4 --- 10
- 4 --- 16
- 4 --- 17
+ 4 --- 14
+ 4 --- 41
+ 4 x--> 12
5 --- 9
- 5 --- 14
- 5 --- 15
+ 5 x--> 12
8 --- 9
8 --- 10
8 --- 11
@@ -156,129 +140,130 @@ flowchart LR
8 --- 13
8 --- 14
8 --- 15
- 8 --- 16
- 8 --- 17
- 8 --- 18
- 8 --- 19
- 10 --- 20
- 10 --- 23
- 10 --- 30
- 10 --- 36
- 10 --- 39
- 20 --- 21
- 20 --- 22
- 23 --- 24
- 23 --- 25
- 23 --- 26
- 23 --- 27
- 23 --- 28
- 23 --- 29
- 30 --- 31
- 30 --- 32
- 30 --- 33
- 30 --- 34
- 30 ---- 45
- 30 --- 35
- 36 --- 37
- 36 --- 38
- 39 --- 40
- 39 --- 41
- 39 --- 42
- 39 --- 43
- 39 ---- 46
- 39 --- 44
- 40 --- 49
- 40 --- 56
- 40 --- 57
- 41 --- 48
- 41 --- 54
- 41 --- 55
- 42 --- 47
- 42 --- 52
- 42 --- 53
- 46 --- 47
- 46 --- 48
- 46 --- 49
- 46 --- 50
- 46 --- 51
- 46 --- 52
- 46 --- 53
- 46 --- 54
- 46 --- 55
- 46 --- 56
- 46 --- 57
- 58 --- 59
- 58 --- 62
- 58 --- 68
- 58 --- 74
- 58 --- 77
- 59 --- 60
- 59 --- 61
- 62 --- 63
- 62 --- 64
- 62 --- 65
- 62 --- 66
- 62 ---- 99
- 62 --- 67
- 63 --- 100
- 63 --- 105
- 63 --- 106
- 64 --- 101
- 64 --- 107
- 64 --- 108
- 65 --- 102
- 65 --- 109
- 65 --- 110
- 68 --- 69
- 68 --- 70
- 68 --- 71
- 68 --- 72
- 68 --- 73
- 74 --- 75
- 74 --- 76
+ 8 --- 41
+ 10 --- 16
+ 10 --- 19
+ 10 --- 26
+ 10 --- 32
+ 10 --- 35
+ 14 <--x 10
+ 14 <--x 13
+ 15 <--x 11
+ 15 <--x 13
+ 16 --- 17
+ 16 --- 18
+ 19 --- 20
+ 19 --- 21
+ 19 --- 22
+ 19 --- 23
+ 19 --- 24
+ 19 --- 25
+ 26 --- 27
+ 26 --- 28
+ 26 --- 29
+ 26 --- 30
+ 26 ---- 42
+ 26 --- 31
+ 32 --- 33
+ 32 --- 34
+ 35 --- 36
+ 35 --- 37
+ 35 --- 38
+ 35 --- 39
+ 35 ---- 43
+ 35 --- 40
+ 36 --- 46
+ 36 --- 50
+ 36 x--> 47
+ 37 --- 45
+ 37 --- 49
+ 37 x--> 47
+ 38 --- 44
+ 38 x--> 47
+ 41 <--x 9
+ 41 <--x 10
+ 43 --- 44
+ 43 --- 45
+ 43 --- 46
+ 43 --- 47
+ 43 --- 48
+ 43 --- 49
+ 43 --- 50
+ 49 <--x 45
+ 49 <--x 48
+ 50 <--x 46
+ 50 <--x 48
+ 51 --- 52
+ 51 --- 55
+ 51 --- 61
+ 51 --- 67
+ 51 --- 70
+ 52 --- 53
+ 52 --- 54
+ 55 --- 56
+ 55 --- 57
+ 55 --- 58
+ 55 --- 59
+ 55 ---- 87
+ 55 --- 60
+ 56 --- 88
+ 56 x--> 91
+ 57 --- 89
+ 57 --- 93
+ 57 x--> 91
+ 58 --- 90
+ 58 --- 94
+ 58 x--> 91
+ 61 --- 62
+ 61 --- 63
+ 61 --- 64
+ 61 --- 65
+ 61 --- 66
+ 67 --- 68
+ 67 --- 69
+ 70 --- 71
+ 70 --- 72
+ 70 --- 73
+ 70 --- 74
+ 70 --- 75
+ 70 ---- 77
+ 70 --- 76
+ 71 --- 81
+ 71 --- 86
+ 71 x--> 82
+ 72 --- 80
+ 72 --- 85
+ 72 x--> 82
+ 73 --- 79
+ 73 --- 84
+ 73 x--> 82
+ 74 --- 78
+ 74 x--> 82
77 --- 78
77 --- 79
77 --- 80
77 --- 81
77 --- 82
- 77 ---- 84
77 --- 83
- 78 --- 88
- 78 --- 97
- 78 --- 98
- 79 --- 87
- 79 --- 95
- 79 --- 96
- 80 --- 86
- 80 --- 93
- 80 --- 94
- 81 --- 85
- 81 --- 91
- 81 --- 92
- 84 --- 85
- 84 --- 86
- 84 --- 87
- 84 --- 88
- 84 --- 89
- 84 --- 90
- 84 --- 91
- 84 --- 92
- 84 --- 93
- 84 --- 94
- 84 --- 95
- 84 --- 96
- 84 --- 97
- 84 --- 98
- 99 --- 100
- 99 --- 101
- 99 --- 102
- 99 --- 103
- 99 --- 104
- 99 --- 105
- 99 --- 106
- 99 --- 107
- 99 --- 108
- 99 --- 109
- 99 --- 110
- 10 <--x 111
+ 77 --- 84
+ 77 --- 85
+ 77 --- 86
+ 84 <--x 79
+ 84 <--x 83
+ 85 <--x 80
+ 85 <--x 83
+ 86 <--x 81
+ 86 <--x 83
+ 87 --- 88
+ 87 --- 89
+ 87 --- 90
+ 87 --- 91
+ 87 --- 92
+ 87 --- 93
+ 87 --- 94
+ 93 <--x 89
+ 93 <--x 92
+ 94 <--x 90
+ 94 <--x 92
+ 10 <--x 95
```
diff --git a/rust/kcl-lib/tests/cube/artifact_commands.snap b/rust/kcl-lib/tests/cube/artifact_commands.snap
index f687cb98f..63e8ee5b5 100644
--- a/rust/kcl-lib/tests/cube/artifact_commands.snap
+++ b/rust/kcl-lib/tests/cube/artifact_commands.snap
@@ -248,20 +248,27 @@ description: Artifact commands cube.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -284,6 +291,33 @@ description: Artifact commands cube.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -303,5 +337,79 @@ description: Artifact commands cube.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/cube/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/cube/artifact_graph_flowchart.snap.md
index d4d839b91..4eed05d76 100644
--- a/rust/kcl-lib/tests/cube/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/cube/artifact_graph_flowchart.snap.md
@@ -18,13 +18,8 @@ flowchart LR
14["Cap Start"]
15["Cap End"]
16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
+ 17["SweepEdge Opposite"]
18["SweepEdge Opposite"]
- 19["SweepEdge Adjacent"]
- 20["SweepEdge Opposite"]
- 21["SweepEdge Adjacent"]
- 22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 --- 4
@@ -34,17 +29,16 @@ flowchart LR
2 ---- 9
2 --- 8
3 --- 13
- 3 --- 22
- 3 --- 23
+ 3 --- 18
+ 3 x--> 14
4 --- 12
- 4 --- 20
- 4 --- 21
+ 4 --- 17
+ 4 x--> 14
5 --- 11
- 5 --- 18
- 5 --- 19
+ 5 --- 16
+ 5 x--> 14
6 --- 10
- 6 --- 16
- 6 --- 17
+ 6 x--> 14
9 --- 10
9 --- 11
9 --- 12
@@ -54,9 +48,10 @@ flowchart LR
9 --- 16
9 --- 17
9 --- 18
- 9 --- 19
- 9 --- 20
- 9 --- 21
- 9 --- 22
- 9 --- 23
+ 16 <--x 11
+ 16 <--x 15
+ 17 <--x 12
+ 17 <--x 15
+ 18 <--x 13
+ 18 <--x 15
```
diff --git a/rust/kcl-lib/tests/cube_with_error/artifact_commands.snap b/rust/kcl-lib/tests/cube_with_error/artifact_commands.snap
index f953a7142..d2a978592 100644
--- a/rust/kcl-lib/tests/cube_with_error/artifact_commands.snap
+++ b/rust/kcl-lib/tests/cube_with_error/artifact_commands.snap
@@ -223,5 +223,166 @@ description: Artifact commands cube_with_error.kcl
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/cube_with_error/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/cube_with_error/artifact_graph_flowchart.snap.md
index b0823c2b5..343243f60 100644
--- a/rust/kcl-lib/tests/cube_with_error/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/cube_with_error/artifact_graph_flowchart.snap.md
@@ -17,6 +17,9 @@ flowchart LR
13[Wall]
14["Cap Start"]
15["Cap End"]
+ 16["SweepEdge Opposite"]
+ 17["SweepEdge Opposite"]
+ 18["SweepEdge Opposite"]
1 --- 2
2 --- 3
2 --- 4
@@ -26,13 +29,26 @@ flowchart LR
2 ---- 9
2 --- 8
3 --- 13
+ 3 --- 18
4 --- 12
+ 4 --- 17
+ 4 x--> 14
5 --- 11
+ 5 --- 16
+ 5 x--> 14
6 --- 10
+ 6 x--> 14
9 --- 10
9 --- 11
9 --- 12
9 --- 13
9 --- 14
9 --- 15
+ 9 --- 16
+ 9 --- 17
+ 9 --- 18
+ 16 <--x 11
+ 16 <--x 15
+ 17 <--x 12
+ 17 <--x 15
```
diff --git a/rust/kcl-lib/tests/fillet-and-shell/artifact_commands.snap b/rust/kcl-lib/tests/fillet-and-shell/artifact_commands.snap
index ea978319d..1fde399de 100644
--- a/rust/kcl-lib/tests/fillet-and-shell/artifact_commands.snap
+++ b/rust/kcl-lib/tests/fillet-and-shell/artifact_commands.snap
@@ -358,20 +358,27 @@ description: Artifact commands fillet-and-shell.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -394,6 +401,33 @@ description: Artifact commands fillet-and-shell.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -414,6 +448,80 @@ description: Artifact commands fillet-and-shell.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -763,6 +871,33 @@ description: Artifact commands fillet-and-shell.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -783,6 +918,33 @@ description: Artifact commands fillet-and-shell.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1092,6 +1254,33 @@ description: Artifact commands fillet-and-shell.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1112,6 +1301,33 @@ description: Artifact commands fillet-and-shell.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1421,6 +1637,33 @@ description: Artifact commands fillet-and-shell.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1441,6 +1684,33 @@ description: Artifact commands fillet-and-shell.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1750,6 +2020,33 @@ description: Artifact commands fillet-and-shell.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1770,6 +2067,33 @@ description: Artifact commands fillet-and-shell.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/fillet-and-shell/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/fillet-and-shell/artifact_graph_flowchart.snap.md
index 03596a87a..cc6977d32 100644
--- a/rust/kcl-lib/tests/fillet-and-shell/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/fillet-and-shell/artifact_graph_flowchart.snap.md
@@ -16,57 +16,57 @@ flowchart LR
13["Segment
[1011, 1030, 0]"]
14[Solid2d]
end
+ subgraph path27 [Path]
+ 27["Path
[1343, 1368, 0]"]
+ end
+ subgraph path28 [Path]
+ 28["Path
[1376, 1413, 0]"]
+ 29["Segment
[1376, 1413, 0]"]
+ 30[Solid2d]
+ end
subgraph path31 [Path]
- 31["Path
[1343, 1368, 0]"]
+ 31["Path
[1426, 1464, 0]"]
+ 32["Segment
[1426, 1464, 0]"]
+ 33[Solid2d]
end
- subgraph path32 [Path]
- 32["Path
[1376, 1413, 0]"]
- 33["Segment
[1376, 1413, 0]"]
- 34[Solid2d]
+ subgraph path39 [Path]
+ 39["Path
[1343, 1368, 0]"]
end
- subgraph path35 [Path]
- 35["Path
[1426, 1464, 0]"]
- 36["Segment
[1426, 1464, 0]"]
- 37[Solid2d]
+ subgraph path40 [Path]
+ 40["Path
[1376, 1413, 0]"]
+ 41["Segment
[1376, 1413, 0]"]
+ 42[Solid2d]
end
- subgraph path45 [Path]
- 45["Path
[1343, 1368, 0]"]
+ subgraph path43 [Path]
+ 43["Path
[1426, 1464, 0]"]
+ 44["Segment
[1426, 1464, 0]"]
+ 45[Solid2d]
end
- subgraph path46 [Path]
- 46["Path
[1376, 1413, 0]"]
- 47["Segment
[1376, 1413, 0]"]
- 48[Solid2d]
+ subgraph path51 [Path]
+ 51["Path
[1343, 1368, 0]"]
end
- subgraph path49 [Path]
- 49["Path
[1426, 1464, 0]"]
- 50["Segment
[1426, 1464, 0]"]
- 51[Solid2d]
+ subgraph path52 [Path]
+ 52["Path
[1376, 1413, 0]"]
+ 53["Segment
[1376, 1413, 0]"]
+ 54[Solid2d]
end
- subgraph path59 [Path]
- 59["Path
[1343, 1368, 0]"]
- end
- subgraph path60 [Path]
- 60["Path
[1376, 1413, 0]"]
- 61["Segment
[1376, 1413, 0]"]
- 62[Solid2d]
+ subgraph path55 [Path]
+ 55["Path
[1426, 1464, 0]"]
+ 56["Segment
[1426, 1464, 0]"]
+ 57[Solid2d]
end
subgraph path63 [Path]
- 63["Path
[1426, 1464, 0]"]
- 64["Segment
[1426, 1464, 0]"]
- 65[Solid2d]
+ 63["Path
[1343, 1368, 0]"]
end
- subgraph path73 [Path]
- 73["Path
[1343, 1368, 0]"]
+ subgraph path64 [Path]
+ 64["Path
[1376, 1413, 0]"]
+ 65["Segment
[1376, 1413, 0]"]
+ 66[Solid2d]
end
- subgraph path74 [Path]
- 74["Path
[1376, 1413, 0]"]
- 75["Segment
[1376, 1413, 0]"]
- 76[Solid2d]
- end
- subgraph path77 [Path]
- 77["Path
[1426, 1464, 0]"]
- 78["Segment
[1426, 1464, 0]"]
- 79[Solid2d]
+ subgraph path67 [Path]
+ 67["Path
[1426, 1464, 0]"]
+ 68["Segment
[1426, 1464, 0]"]
+ 69[Solid2d]
end
1["Plane
[373, 390, 0]"]
8["Plane
[783, 802, 0]"]
@@ -78,45 +78,33 @@ flowchart LR
20["Cap Start"]
21["Cap End"]
22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
+ 23["SweepEdge Opposite"]
24["SweepEdge Opposite"]
25["SweepEdge Adjacent"]
- 26["SweepEdge Opposite"]
- 27["SweepEdge Adjacent"]
- 28["SweepEdge Opposite"]
- 29["SweepEdge Adjacent"]
- 30["Plane
[1316, 1335, 0]"]
- 38["Sweep Extrusion
[1476, 1500, 0]"]
- 39[Wall]
- 40["Cap Start"]
- 41["Cap End"]
- 42["SweepEdge Opposite"]
- 43["SweepEdge Adjacent"]
- 44["Plane
[1316, 1335, 0]"]
- 52["Sweep Extrusion
[1476, 1500, 0]"]
- 53[Wall]
- 54["Cap Start"]
- 55["Cap End"]
- 56["SweepEdge Opposite"]
- 57["SweepEdge Adjacent"]
- 58["Plane
[1316, 1335, 0]"]
- 66["Sweep Extrusion
[1476, 1500, 0]"]
- 67[Wall]
- 68["Cap Start"]
- 69["Cap End"]
- 70["SweepEdge Opposite"]
- 71["SweepEdge Adjacent"]
- 72["Plane
[1316, 1335, 0]"]
- 80["Sweep Extrusion
[1476, 1500, 0]"]
- 81[Wall]
- 82["Cap Start"]
- 83["Cap End"]
- 84["SweepEdge Opposite"]
- 85["SweepEdge Adjacent"]
- 86["EdgeCut Fillet
[1070, 1276, 0]"]
- 87["EdgeCut Fillet
[1070, 1276, 0]"]
- 88["EdgeCut Fillet
[1070, 1276, 0]"]
- 89["EdgeCut Fillet
[1070, 1276, 0]"]
+ 26["Plane
[1316, 1335, 0]"]
+ 34["Sweep Extrusion
[1476, 1500, 0]"]
+ 35[Wall]
+ 36["Cap Start"]
+ 37["Cap End"]
+ 38["Plane
[1316, 1335, 0]"]
+ 46["Sweep Extrusion
[1476, 1500, 0]"]
+ 47[Wall]
+ 48["Cap Start"]
+ 49["Cap End"]
+ 50["Plane
[1316, 1335, 0]"]
+ 58["Sweep Extrusion
[1476, 1500, 0]"]
+ 59[Wall]
+ 60["Cap Start"]
+ 61["Cap End"]
+ 62["Plane
[1316, 1335, 0]"]
+ 70["Sweep Extrusion
[1476, 1500, 0]"]
+ 71[Wall]
+ 72["Cap Start"]
+ 73["Cap End"]
+ 74["EdgeCut Fillet
[1070, 1276, 0]"]
+ 75["EdgeCut Fillet
[1070, 1276, 0]"]
+ 76["EdgeCut Fillet
[1070, 1276, 0]"]
+ 77["EdgeCut Fillet
[1070, 1276, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -131,17 +119,17 @@ flowchart LR
9 ---- 15
9 --- 14
10 --- 16
- 10 --- 22
- 10 --- 23
+ 10 --- 25
+ 10 x--> 20
11 --- 17
- 11 --- 24
- 11 --- 25
+ 11 --- 22
+ 11 x--> 20
12 --- 18
- 12 --- 26
- 12 --- 27
+ 12 --- 23
+ 12 x--> 20
13 --- 19
- 13 --- 28
- 13 --- 29
+ 13 --- 24
+ 13 x--> 20
15 --- 16
15 --- 17
15 --- 18
@@ -152,76 +140,63 @@ flowchart LR
15 --- 23
15 --- 24
15 --- 25
- 15 --- 26
- 15 --- 27
- 15 --- 28
- 15 --- 29
- 30 --- 31
- 30 --- 32
- 30 --- 35
- 32 --- 33
- 32 ---- 38
- 32 --- 34
- 33 --- 39
- 33 --- 42
- 33 --- 43
- 35 --- 36
- 35 --- 37
+ 22 <--x 17
+ 22 <--x 21
+ 23 <--x 18
+ 23 <--x 21
+ 24 <--x 19
+ 24 <--x 21
+ 26 --- 27
+ 26 --- 28
+ 26 --- 31
+ 28 --- 29
+ 28 ---- 34
+ 28 --- 30
+ 29 --- 35
+ 29 x--> 36
+ 31 --- 32
+ 31 --- 33
+ 34 --- 35
+ 34 --- 36
+ 34 --- 37
38 --- 39
38 --- 40
- 38 --- 41
- 38 --- 42
38 --- 43
- 44 --- 45
- 44 --- 46
- 44 --- 49
+ 40 --- 41
+ 40 ---- 46
+ 40 --- 42
+ 41 --- 47
+ 41 x--> 48
+ 43 --- 44
+ 43 --- 45
46 --- 47
- 46 ---- 52
46 --- 48
- 47 --- 53
- 47 --- 56
- 47 --- 57
- 49 --- 50
- 49 --- 51
+ 46 --- 49
+ 50 --- 51
+ 50 --- 52
+ 50 --- 55
52 --- 53
+ 52 ---- 58
52 --- 54
- 52 --- 55
- 52 --- 56
- 52 --- 57
+ 53 --- 59
+ 53 x--> 60
+ 55 --- 56
+ 55 --- 57
58 --- 59
58 --- 60
- 58 --- 63
- 60 --- 61
- 60 ---- 66
- 60 --- 62
- 61 --- 67
- 61 --- 70
- 61 --- 71
- 63 --- 64
- 63 --- 65
- 66 --- 67
- 66 --- 68
- 66 --- 69
- 66 --- 70
- 66 --- 71
- 72 --- 73
- 72 --- 74
- 72 --- 77
- 74 --- 75
- 74 ---- 80
- 74 --- 76
- 75 --- 81
- 75 --- 84
- 75 --- 85
- 77 --- 78
- 77 --- 79
- 80 --- 81
- 80 --- 82
- 80 --- 83
- 80 --- 84
- 80 --- 85
- 23 <--x 86
- 25 <--x 87
- 27 <--x 88
- 29 <--x 89
+ 58 --- 61
+ 62 --- 63
+ 62 --- 64
+ 62 --- 67
+ 64 --- 65
+ 64 ---- 70
+ 64 --- 66
+ 65 --- 71
+ 65 x--> 72
+ 67 --- 68
+ 67 --- 69
+ 70 --- 71
+ 70 --- 72
+ 70 --- 73
+ 25 <--x 74
```
diff --git a/rust/kcl-lib/tests/flush_batch_on_end/artifact_commands.snap b/rust/kcl-lib/tests/flush_batch_on_end/artifact_commands.snap
index 182c63e2c..3bc8c5196 100644
--- a/rust/kcl-lib/tests/flush_batch_on_end/artifact_commands.snap
+++ b/rust/kcl-lib/tests/flush_batch_on_end/artifact_commands.snap
@@ -295,6 +295,33 @@ description: Artifact commands flush_batch_on_end.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -314,5 +341,32 @@ description: Artifact commands flush_batch_on_end.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/flush_batch_on_end/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/flush_batch_on_end/artifact_graph_flowchart.snap.md
index 1f430078d..68a7d764d 100644
--- a/rust/kcl-lib/tests/flush_batch_on_end/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/flush_batch_on_end/artifact_graph_flowchart.snap.md
@@ -15,21 +15,16 @@ flowchart LR
9[Wall]
10["Cap Start"]
11["Cap End"]
- 12["SweepEdge Opposite"]
- 13["SweepEdge Adjacent"]
1 --- 2
1 --- 5
2 --- 3
2 ---- 8
2 --- 4
3 --- 9
- 3 --- 12
- 3 --- 13
+ 3 x--> 10
5 --- 6
5 --- 7
8 --- 9
8 --- 10
8 --- 11
- 8 --- 12
- 8 --- 13
```
diff --git a/rust/kcl-lib/tests/function_sketch/artifact_commands.snap b/rust/kcl-lib/tests/function_sketch/artifact_commands.snap
index 546e69fde..4483d62ac 100644
--- a/rust/kcl-lib/tests/function_sketch/artifact_commands.snap
+++ b/rust/kcl-lib/tests/function_sketch/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands function_sketch.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands function_sketch.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -286,5 +320,79 @@ description: Artifact commands function_sketch.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/function_sketch/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/function_sketch/artifact_graph_flowchart.snap.md
index d6a688eb1..8bd35684c 100644
--- a/rust/kcl-lib/tests/function_sketch/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/function_sketch/artifact_graph_flowchart.snap.md
@@ -17,13 +17,8 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 --- 4
@@ -32,17 +27,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
+ 3 --- 17
+ 3 x--> 13
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 13
5 --- 10
- 5 --- 17
- 5 --- 18
+ 5 --- 15
+ 5 x--> 13
6 --- 9
- 6 --- 15
- 6 --- 16
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -52,9 +46,10 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
```
diff --git a/rust/kcl-lib/tests/function_sketch_with_position/artifact_commands.snap b/rust/kcl-lib/tests/function_sketch_with_position/artifact_commands.snap
index a4ea1c48a..009567828 100644
--- a/rust/kcl-lib/tests/function_sketch_with_position/artifact_commands.snap
+++ b/rust/kcl-lib/tests/function_sketch_with_position/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands function_sketch_with_position.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands function_sketch_with_position.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -286,5 +320,79 @@ description: Artifact commands function_sketch_with_position.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/function_sketch_with_position/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/function_sketch_with_position/artifact_graph_flowchart.snap.md
index f92e36b84..f975e8fb3 100644
--- a/rust/kcl-lib/tests/function_sketch_with_position/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/function_sketch_with_position/artifact_graph_flowchart.snap.md
@@ -17,13 +17,8 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 --- 4
@@ -32,17 +27,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
+ 3 --- 17
+ 3 x--> 13
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 13
5 --- 10
- 5 --- 17
- 5 --- 18
+ 5 --- 15
+ 5 x--> 13
6 --- 9
- 6 --- 15
- 6 --- 16
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -52,9 +46,10 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
```
diff --git a/rust/kcl-lib/tests/helix_ccw/artifact_commands.snap b/rust/kcl-lib/tests/helix_ccw/artifact_commands.snap
index a81670408..4b5a76d12 100644
--- a/rust/kcl-lib/tests/helix_ccw/artifact_commands.snap
+++ b/rust/kcl-lib/tests/helix_ccw/artifact_commands.snap
@@ -201,6 +201,33 @@ description: Artifact commands helix_ccw.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/helix_ccw/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/helix_ccw/artifact_graph_flowchart.snap.md
index d75b605de..cdcd29863 100644
--- a/rust/kcl-lib/tests/helix_ccw/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/helix_ccw/artifact_graph_flowchart.snap.md
@@ -10,18 +10,13 @@ flowchart LR
6[Wall]
7["Cap Start"]
8["Cap End"]
- 9["SweepEdge Opposite"]
- 10["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 ---- 5
2 --- 4
3 --- 6
- 3 --- 9
- 3 --- 10
+ 3 x--> 7
5 --- 6
5 --- 7
5 --- 8
- 5 --- 9
- 5 --- 10
```
diff --git a/rust/kcl-lib/tests/i_shape/artifact_commands.snap b/rust/kcl-lib/tests/i_shape/artifact_commands.snap
index 9337fc141..880e255d6 100644
--- a/rust/kcl-lib/tests/i_shape/artifact_commands.snap
+++ b/rust/kcl-lib/tests/i_shape/artifact_commands.snap
@@ -818,20 +818,27 @@ description: Artifact commands i_shape.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -858,20 +865,27 @@ description: Artifact commands i_shape.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -898,20 +912,27 @@ description: Artifact commands i_shape.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -938,20 +959,27 @@ description: Artifact commands i_shape.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -978,20 +1006,27 @@ description: Artifact commands i_shape.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1018,20 +1053,27 @@ description: Artifact commands i_shape.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1058,20 +1100,27 @@ description: Artifact commands i_shape.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1098,20 +1147,27 @@ description: Artifact commands i_shape.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1138,20 +1194,27 @@ description: Artifact commands i_shape.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1178,20 +1241,27 @@ description: Artifact commands i_shape.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1218,20 +1288,27 @@ description: Artifact commands i_shape.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1258,20 +1335,27 @@ description: Artifact commands i_shape.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1298,20 +1382,27 @@ description: Artifact commands i_shape.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1338,20 +1429,27 @@ description: Artifact commands i_shape.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1378,20 +1476,27 @@ description: Artifact commands i_shape.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1414,6 +1519,33 @@ description: Artifact commands i_shape.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1433,5 +1565,737 @@ description: Artifact commands i_shape.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/i_shape/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/i_shape/artifact_graph_flowchart.snap.md
index 589599aec..e9c04a0cc 100644
--- a/rust/kcl-lib/tests/i_shape/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/i_shape/artifact_graph_flowchart.snap.md
@@ -72,53 +72,28 @@ flowchart LR
66["Cap Start"]
67["Cap End"]
68["SweepEdge Opposite"]
- 69["SweepEdge Adjacent"]
+ 69["SweepEdge Opposite"]
70["SweepEdge Opposite"]
- 71["SweepEdge Adjacent"]
+ 71["SweepEdge Opposite"]
72["SweepEdge Opposite"]
- 73["SweepEdge Adjacent"]
+ 73["SweepEdge Opposite"]
74["SweepEdge Opposite"]
- 75["SweepEdge Adjacent"]
+ 75["SweepEdge Opposite"]
76["SweepEdge Opposite"]
- 77["SweepEdge Adjacent"]
+ 77["SweepEdge Opposite"]
78["SweepEdge Opposite"]
- 79["SweepEdge Adjacent"]
+ 79["SweepEdge Opposite"]
80["SweepEdge Opposite"]
- 81["SweepEdge Adjacent"]
+ 81["SweepEdge Opposite"]
82["SweepEdge Opposite"]
- 83["SweepEdge Adjacent"]
+ 83["SweepEdge Opposite"]
84["SweepEdge Opposite"]
- 85["SweepEdge Adjacent"]
+ 85["SweepEdge Opposite"]
86["SweepEdge Opposite"]
- 87["SweepEdge Adjacent"]
+ 87["SweepEdge Opposite"]
88["SweepEdge Opposite"]
- 89["SweepEdge Adjacent"]
+ 89["SweepEdge Opposite"]
90["SweepEdge Opposite"]
- 91["SweepEdge Adjacent"]
- 92["SweepEdge Opposite"]
- 93["SweepEdge Adjacent"]
- 94["SweepEdge Opposite"]
- 95["SweepEdge Adjacent"]
- 96["SweepEdge Opposite"]
- 97["SweepEdge Adjacent"]
- 98["SweepEdge Opposite"]
- 99["SweepEdge Adjacent"]
- 100["SweepEdge Opposite"]
- 101["SweepEdge Adjacent"]
- 102["SweepEdge Opposite"]
- 103["SweepEdge Adjacent"]
- 104["SweepEdge Opposite"]
- 105["SweepEdge Adjacent"]
- 106["SweepEdge Opposite"]
- 107["SweepEdge Adjacent"]
- 108["SweepEdge Opposite"]
- 109["SweepEdge Adjacent"]
- 110["SweepEdge Opposite"]
- 111["SweepEdge Adjacent"]
- 112["SweepEdge Opposite"]
- 113["SweepEdge Adjacent"]
- 114["SweepEdge Opposite"]
- 115["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 --- 4
@@ -148,77 +123,76 @@ flowchart LR
2 ---- 41
2 --- 28
3 --- 42
- 3 --- 68
- 3 --- 69
+ 3 x--> 66
4 --- 43
- 4 --- 70
- 4 --- 71
+ 4 --- 68
+ 4 x--> 66
5 --- 44
- 5 --- 72
- 5 --- 73
+ 5 --- 69
+ 5 x--> 66
6 --- 45
- 6 --- 74
- 6 --- 75
+ 6 --- 70
+ 6 x--> 66
7 --- 46
- 7 --- 76
- 7 --- 77
+ 7 --- 71
+ 7 x--> 66
8 --- 47
- 8 --- 78
- 8 --- 79
+ 8 --- 72
+ 8 x--> 66
9 --- 48
- 9 --- 80
- 9 --- 81
+ 9 --- 73
+ 9 x--> 66
10 --- 49
- 10 --- 82
- 10 --- 83
+ 10 --- 74
+ 10 x--> 66
11 --- 50
- 11 --- 84
- 11 --- 85
+ 11 --- 75
+ 11 x--> 66
12 --- 51
- 12 --- 86
- 12 --- 87
+ 12 --- 76
+ 12 x--> 66
13 --- 52
- 13 --- 88
- 13 --- 89
+ 13 --- 77
+ 13 x--> 66
14 --- 53
- 14 --- 90
- 14 --- 91
+ 14 --- 78
+ 14 x--> 66
15 --- 54
- 15 --- 92
- 15 --- 93
+ 15 --- 79
+ 15 x--> 66
16 --- 55
- 16 --- 94
- 16 --- 95
+ 16 --- 80
+ 16 x--> 66
17 --- 56
- 17 --- 96
- 17 --- 97
+ 17 --- 81
+ 17 x--> 66
18 --- 57
- 18 --- 98
- 18 --- 99
+ 18 --- 82
+ 18 x--> 66
19 --- 58
- 19 --- 100
- 19 --- 101
+ 19 --- 83
+ 19 x--> 66
20 --- 59
- 20 --- 102
- 20 --- 103
+ 20 --- 84
+ 20 x--> 66
21 --- 60
- 21 --- 104
- 21 --- 105
+ 21 --- 85
+ 21 x--> 66
22 --- 61
- 22 --- 106
- 22 --- 107
+ 22 --- 86
+ 22 x--> 66
23 --- 62
- 23 --- 108
- 23 --- 109
+ 23 --- 87
+ 23 x--> 66
24 --- 63
- 24 --- 110
- 24 --- 111
+ 24 --- 88
+ 24 x--> 66
25 --- 64
- 25 --- 112
- 25 --- 113
+ 25 --- 89
+ 25 x--> 66
26 --- 65
- 26 --- 114
- 26 --- 115
+ 26 --- 90
+ 26 x--> 66
29 --- 30
30 --- 31
30 --- 32
@@ -279,29 +253,50 @@ flowchart LR
41 --- 88
41 --- 89
41 --- 90
- 41 --- 91
- 41 --- 92
- 41 --- 93
- 41 --- 94
- 41 --- 95
- 41 --- 96
- 41 --- 97
- 41 --- 98
- 41 --- 99
- 41 --- 100
- 41 --- 101
- 41 --- 102
- 41 --- 103
- 41 --- 104
- 41 --- 105
- 41 --- 106
- 41 --- 107
- 41 --- 108
- 41 --- 109
- 41 --- 110
- 41 --- 111
- 41 --- 112
- 41 --- 113
- 41 --- 114
- 41 --- 115
+ 68 <--x 43
+ 68 <--x 67
+ 69 <--x 44
+ 69 <--x 67
+ 70 <--x 45
+ 70 <--x 67
+ 71 <--x 46
+ 71 <--x 67
+ 72 <--x 47
+ 72 <--x 67
+ 73 <--x 48
+ 73 <--x 67
+ 74 <--x 49
+ 74 <--x 67
+ 75 <--x 50
+ 75 <--x 67
+ 76 <--x 51
+ 76 <--x 67
+ 77 <--x 52
+ 77 <--x 67
+ 78 <--x 53
+ 78 <--x 67
+ 79 <--x 54
+ 79 <--x 67
+ 80 <--x 55
+ 80 <--x 67
+ 81 <--x 56
+ 81 <--x 67
+ 82 <--x 57
+ 82 <--x 67
+ 83 <--x 58
+ 83 <--x 67
+ 84 <--x 59
+ 84 <--x 67
+ 85 <--x 60
+ 85 <--x 67
+ 86 <--x 61
+ 86 <--x 67
+ 87 <--x 62
+ 87 <--x 67
+ 88 <--x 63
+ 88 <--x 67
+ 89 <--x 64
+ 89 <--x 67
+ 90 <--x 65
+ 90 <--x 67
```
diff --git a/rust/kcl-lib/tests/import_async/artifact_commands.snap b/rust/kcl-lib/tests/import_async/artifact_commands.snap
index 34cdf5ff6..edb4eaa5d 100644
--- a/rust/kcl-lib/tests/import_async/artifact_commands.snap
+++ b/rust/kcl-lib/tests/import_async/artifact_commands.snap
@@ -5571288,6 +5571288,33 @@ description: Artifact commands import_async.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5575114,20 +5575141,27 @@ description: Artifact commands import_async.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5575150,6 +5575184,33 @@ description: Artifact commands import_async.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5575170,6 +5575231,80 @@ description: Artifact commands import_async.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/import_async/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/import_async/artifact_graph_flowchart.snap.md
index 8c578dc13..321e3dd89 100644
--- a/rust/kcl-lib/tests/import_async/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/import_async/artifact_graph_flowchart.snap.md
@@ -5,8 +5,10 @@ flowchart LR
4["Segment
[1081, 1131, 0]"]
5[Solid2d]
end
- subgraph path13 [Path]
- 13["Path
[1608, 1645, 0]"]
+ subgraph path11 [Path]
+ 11["Path
[1608, 1645, 0]"]
+ 12["Segment
[1296, 1334, 0]"]
+ 13["Segment
[1296, 1334, 0]"]
14["Segment
[1296, 1334, 0]"]
15["Segment
[1296, 1334, 0]"]
16["Segment
[1296, 1334, 0]"]
@@ -106,9 +108,9 @@ flowchart LR
110["Segment
[1296, 1334, 0]"]
111["Segment
[1296, 1334, 0]"]
112["Segment
[1296, 1334, 0]"]
- 113["Segment
[1296, 1334, 0]"]
- 114["Segment
[1296, 1334, 0]"]
- 115["Segment
[1711, 1809, 0]"]
+ 113["Segment
[1711, 1809, 0]"]
+ 114["Segment
[1524, 1554, 0]"]
+ 115["Segment
[1524, 1554, 0]"]
116["Segment
[1524, 1554, 0]"]
117["Segment
[1524, 1554, 0]"]
118["Segment
[1524, 1554, 0]"]
@@ -208,20 +210,18 @@ flowchart LR
212["Segment
[1524, 1554, 0]"]
213["Segment
[1524, 1554, 0]"]
214["Segment
[1524, 1554, 0]"]
- 215["Segment
[1524, 1554, 0]"]
- 216["Segment
[1524, 1554, 0]"]
- 217["Segment
[1869, 1876, 0]"]
- 218[Solid2d]
+ 215["Segment
[1869, 1876, 0]"]
+ 216[Solid2d]
end
- subgraph path220 [Path]
- 220["Path
[2357, 2436, 0]"]
- 221["Segment
[2442, 2469, 0]"]
- 222["Segment
[2475, 2503, 0]"]
- 223["Segment
[2509, 2537, 0]"]
- 224["Segment
[2543, 2659, 0]"]
- 225["Segment
[2665, 2770, 0]"]
- 226["Segment
[2776, 2783, 0]"]
- 227[Solid2d]
+ subgraph path218 [Path]
+ 218["Path
[2357, 2436, 0]"]
+ 219["Segment
[2442, 2469, 0]"]
+ 220["Segment
[2475, 2503, 0]"]
+ 221["Segment
[2509, 2537, 0]"]
+ 222["Segment
[2543, 2659, 0]"]
+ 223["Segment
[2665, 2770, 0]"]
+ 224["Segment
[2776, 2783, 0]"]
+ 225[Solid2d]
end
1["Plane
[168, 185, 0]"]
2["Plane
[1058, 1075, 0]"]
@@ -229,275 +229,265 @@ flowchart LR
7[Wall]
8["Cap Start"]
9["Cap End"]
- 10["SweepEdge Opposite"]
- 11["SweepEdge Adjacent"]
- 12["Plane
[1585, 1602, 0]"]
- 219["Sweep Extrusion
[1882, 1910, 0]"]
- 228["Sweep Extrusion
[2789, 2818, 0]"]
+ 10["Plane
[1585, 1602, 0]"]
+ 217["Sweep Extrusion
[1882, 1910, 0]"]
+ 226["Sweep Extrusion
[2789, 2818, 0]"]
+ 227[Wall]
+ 228[Wall]
229[Wall]
230[Wall]
- 231[Wall]
- 232[Wall]
+ 231["SweepEdge Opposite"]
+ 232["SweepEdge Opposite"]
233["SweepEdge Opposite"]
- 234["SweepEdge Adjacent"]
- 235["SweepEdge Opposite"]
- 236["SweepEdge Adjacent"]
- 237["SweepEdge Opposite"]
- 238["SweepEdge Adjacent"]
- 239["SweepEdge Opposite"]
- 240["SweepEdge Adjacent"]
- 241["StartSketchOnFace
[2320, 2351, 0]"]
+ 234["StartSketchOnFace
[2320, 2351, 0]"]
2 --- 3
3 --- 4
3 ---- 6
3 --- 5
4 --- 7
- 4 --- 10
- 4 --- 11
+ 4 x--> 8
6 --- 7
6 --- 8
6 --- 9
- 6 --- 10
- 6 --- 11
- 9 --- 220
- 12 --- 13
- 13 --- 14
- 13 --- 15
- 13 --- 16
- 13 --- 17
- 13 --- 18
- 13 --- 19
- 13 --- 20
- 13 --- 21
- 13 --- 22
- 13 --- 23
- 13 --- 24
- 13 --- 25
- 13 --- 26
- 13 --- 27
- 13 --- 28
- 13 --- 29
- 13 --- 30
- 13 --- 31
- 13 --- 32
- 13 --- 33
- 13 --- 34
- 13 --- 35
- 13 --- 36
- 13 --- 37
- 13 --- 38
- 13 --- 39
- 13 --- 40
- 13 --- 41
- 13 --- 42
- 13 --- 43
- 13 --- 44
- 13 --- 45
- 13 --- 46
- 13 --- 47
- 13 --- 48
- 13 --- 49
- 13 --- 50
- 13 --- 51
- 13 --- 52
- 13 --- 53
- 13 --- 54
- 13 --- 55
- 13 --- 56
- 13 --- 57
- 13 --- 58
- 13 --- 59
- 13 --- 60
- 13 --- 61
- 13 --- 62
- 13 --- 63
- 13 --- 64
- 13 --- 65
- 13 --- 66
- 13 --- 67
- 13 --- 68
- 13 --- 69
- 13 --- 70
- 13 --- 71
- 13 --- 72
- 13 --- 73
- 13 --- 74
- 13 --- 75
- 13 --- 76
- 13 --- 77
- 13 --- 78
- 13 --- 79
- 13 --- 80
- 13 --- 81
- 13 --- 82
- 13 --- 83
- 13 --- 84
- 13 --- 85
- 13 --- 86
- 13 --- 87
- 13 --- 88
- 13 --- 89
- 13 --- 90
- 13 --- 91
- 13 --- 92
- 13 --- 93
- 13 --- 94
- 13 --- 95
- 13 --- 96
- 13 --- 97
- 13 --- 98
- 13 --- 99
- 13 --- 100
- 13 --- 101
- 13 --- 102
- 13 --- 103
- 13 --- 104
- 13 --- 105
- 13 --- 106
- 13 --- 107
- 13 --- 108
- 13 --- 109
- 13 --- 110
- 13 --- 111
- 13 --- 112
- 13 --- 113
- 13 --- 114
- 13 --- 115
- 13 --- 116
- 13 --- 117
- 13 --- 118
- 13 --- 119
- 13 --- 120
- 13 --- 121
- 13 --- 122
- 13 --- 123
- 13 --- 124
- 13 --- 125
- 13 --- 126
- 13 --- 127
- 13 --- 128
- 13 --- 129
- 13 --- 130
- 13 --- 131
- 13 --- 132
- 13 --- 133
- 13 --- 134
- 13 --- 135
- 13 --- 136
- 13 --- 137
- 13 --- 138
- 13 --- 139
- 13 --- 140
- 13 --- 141
- 13 --- 142
- 13 --- 143
- 13 --- 144
- 13 --- 145
- 13 --- 146
- 13 --- 147
- 13 --- 148
- 13 --- 149
- 13 --- 150
- 13 --- 151
- 13 --- 152
- 13 --- 153
- 13 --- 154
- 13 --- 155
- 13 --- 156
- 13 --- 157
- 13 --- 158
- 13 --- 159
- 13 --- 160
- 13 --- 161
- 13 --- 162
- 13 --- 163
- 13 --- 164
- 13 --- 165
- 13 --- 166
- 13 --- 167
- 13 --- 168
- 13 --- 169
- 13 --- 170
- 13 --- 171
- 13 --- 172
- 13 --- 173
- 13 --- 174
- 13 --- 175
- 13 --- 176
- 13 --- 177
- 13 --- 178
- 13 --- 179
- 13 --- 180
- 13 --- 181
- 13 --- 182
- 13 --- 183
- 13 --- 184
- 13 --- 185
- 13 --- 186
- 13 --- 187
- 13 --- 188
- 13 --- 189
- 13 --- 190
- 13 --- 191
- 13 --- 192
- 13 --- 193
- 13 --- 194
- 13 --- 195
- 13 --- 196
- 13 --- 197
- 13 --- 198
- 13 --- 199
- 13 --- 200
- 13 --- 201
- 13 --- 202
- 13 --- 203
- 13 --- 204
- 13 --- 205
- 13 --- 206
- 13 --- 207
- 13 --- 208
- 13 --- 209
- 13 --- 210
- 13 --- 211
- 13 --- 212
- 13 --- 213
- 13 --- 214
- 13 --- 215
- 13 --- 216
- 13 --- 217
- 13 ---- 219
- 13 --- 218
- 220 --- 221
- 220 --- 222
- 220 --- 223
- 220 --- 224
- 220 --- 225
- 220 --- 226
- 220 ---- 228
- 220 --- 227
- 221 --- 232
- 221 --- 239
- 221 --- 240
- 222 --- 231
- 222 --- 237
- 222 --- 238
- 223 --- 230
- 223 --- 235
- 223 --- 236
- 225 --- 229
- 225 --- 233
- 225 --- 234
- 228 --- 229
- 228 --- 230
- 228 --- 231
- 228 --- 232
- 228 --- 233
- 228 --- 234
- 228 --- 235
- 228 --- 236
- 228 --- 237
- 228 --- 238
- 228 --- 239
- 228 --- 240
- 9 <--x 241
+ 9 --- 218
+ 10 --- 11
+ 11 --- 12
+ 11 --- 13
+ 11 --- 14
+ 11 --- 15
+ 11 --- 16
+ 11 --- 17
+ 11 --- 18
+ 11 --- 19
+ 11 --- 20
+ 11 --- 21
+ 11 --- 22
+ 11 --- 23
+ 11 --- 24
+ 11 --- 25
+ 11 --- 26
+ 11 --- 27
+ 11 --- 28
+ 11 --- 29
+ 11 --- 30
+ 11 --- 31
+ 11 --- 32
+ 11 --- 33
+ 11 --- 34
+ 11 --- 35
+ 11 --- 36
+ 11 --- 37
+ 11 --- 38
+ 11 --- 39
+ 11 --- 40
+ 11 --- 41
+ 11 --- 42
+ 11 --- 43
+ 11 --- 44
+ 11 --- 45
+ 11 --- 46
+ 11 --- 47
+ 11 --- 48
+ 11 --- 49
+ 11 --- 50
+ 11 --- 51
+ 11 --- 52
+ 11 --- 53
+ 11 --- 54
+ 11 --- 55
+ 11 --- 56
+ 11 --- 57
+ 11 --- 58
+ 11 --- 59
+ 11 --- 60
+ 11 --- 61
+ 11 --- 62
+ 11 --- 63
+ 11 --- 64
+ 11 --- 65
+ 11 --- 66
+ 11 --- 67
+ 11 --- 68
+ 11 --- 69
+ 11 --- 70
+ 11 --- 71
+ 11 --- 72
+ 11 --- 73
+ 11 --- 74
+ 11 --- 75
+ 11 --- 76
+ 11 --- 77
+ 11 --- 78
+ 11 --- 79
+ 11 --- 80
+ 11 --- 81
+ 11 --- 82
+ 11 --- 83
+ 11 --- 84
+ 11 --- 85
+ 11 --- 86
+ 11 --- 87
+ 11 --- 88
+ 11 --- 89
+ 11 --- 90
+ 11 --- 91
+ 11 --- 92
+ 11 --- 93
+ 11 --- 94
+ 11 --- 95
+ 11 --- 96
+ 11 --- 97
+ 11 --- 98
+ 11 --- 99
+ 11 --- 100
+ 11 --- 101
+ 11 --- 102
+ 11 --- 103
+ 11 --- 104
+ 11 --- 105
+ 11 --- 106
+ 11 --- 107
+ 11 --- 108
+ 11 --- 109
+ 11 --- 110
+ 11 --- 111
+ 11 --- 112
+ 11 --- 113
+ 11 --- 114
+ 11 --- 115
+ 11 --- 116
+ 11 --- 117
+ 11 --- 118
+ 11 --- 119
+ 11 --- 120
+ 11 --- 121
+ 11 --- 122
+ 11 --- 123
+ 11 --- 124
+ 11 --- 125
+ 11 --- 126
+ 11 --- 127
+ 11 --- 128
+ 11 --- 129
+ 11 --- 130
+ 11 --- 131
+ 11 --- 132
+ 11 --- 133
+ 11 --- 134
+ 11 --- 135
+ 11 --- 136
+ 11 --- 137
+ 11 --- 138
+ 11 --- 139
+ 11 --- 140
+ 11 --- 141
+ 11 --- 142
+ 11 --- 143
+ 11 --- 144
+ 11 --- 145
+ 11 --- 146
+ 11 --- 147
+ 11 --- 148
+ 11 --- 149
+ 11 --- 150
+ 11 --- 151
+ 11 --- 152
+ 11 --- 153
+ 11 --- 154
+ 11 --- 155
+ 11 --- 156
+ 11 --- 157
+ 11 --- 158
+ 11 --- 159
+ 11 --- 160
+ 11 --- 161
+ 11 --- 162
+ 11 --- 163
+ 11 --- 164
+ 11 --- 165
+ 11 --- 166
+ 11 --- 167
+ 11 --- 168
+ 11 --- 169
+ 11 --- 170
+ 11 --- 171
+ 11 --- 172
+ 11 --- 173
+ 11 --- 174
+ 11 --- 175
+ 11 --- 176
+ 11 --- 177
+ 11 --- 178
+ 11 --- 179
+ 11 --- 180
+ 11 --- 181
+ 11 --- 182
+ 11 --- 183
+ 11 --- 184
+ 11 --- 185
+ 11 --- 186
+ 11 --- 187
+ 11 --- 188
+ 11 --- 189
+ 11 --- 190
+ 11 --- 191
+ 11 --- 192
+ 11 --- 193
+ 11 --- 194
+ 11 --- 195
+ 11 --- 196
+ 11 --- 197
+ 11 --- 198
+ 11 --- 199
+ 11 --- 200
+ 11 --- 201
+ 11 --- 202
+ 11 --- 203
+ 11 --- 204
+ 11 --- 205
+ 11 --- 206
+ 11 --- 207
+ 11 --- 208
+ 11 --- 209
+ 11 --- 210
+ 11 --- 211
+ 11 --- 212
+ 11 --- 213
+ 11 --- 214
+ 11 --- 215
+ 11 ---- 217
+ 11 --- 216
+ 218 --- 219
+ 218 --- 220
+ 218 --- 221
+ 218 --- 222
+ 218 --- 223
+ 218 --- 224
+ 218 ---- 226
+ 218 --- 225
+ 219 --- 230
+ 219 --- 233
+ 219 <--x 9
+ 220 --- 229
+ 220 --- 232
+ 220 <--x 9
+ 221 --- 228
+ 221 --- 231
+ 221 <--x 9
+ 223 --- 227
+ 223 <--x 9
+ 226 --- 227
+ 226 --- 228
+ 226 --- 229
+ 226 --- 230
+ 226 --- 231
+ 226 --- 232
+ 226 --- 233
+ 231 <--x 228
+ 231 <--x 8
+ 232 <--x 229
+ 232 <--x 8
+ 233 <--x 230
+ 233 <--x 8
+ 9 <--x 234
```
diff --git a/rust/kcl-lib/tests/import_function_not_sketch/artifact_commands.snap b/rust/kcl-lib/tests/import_function_not_sketch/artifact_commands.snap
index 46f0e14b9..e13aac49a 100644
--- a/rust/kcl-lib/tests/import_function_not_sketch/artifact_commands.snap
+++ b/rust/kcl-lib/tests/import_function_not_sketch/artifact_commands.snap
@@ -290,20 +290,27 @@ description: Artifact commands import_function_not_sketch.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -330,20 +337,27 @@ description: Artifact commands import_function_not_sketch.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -370,20 +384,27 @@ description: Artifact commands import_function_not_sketch.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -406,6 +427,33 @@ description: Artifact commands import_function_not_sketch.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -425,5 +473,173 @@ description: Artifact commands import_function_not_sketch.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/import_function_not_sketch/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/import_function_not_sketch/artifact_graph_flowchart.snap.md
index 8798578ff..a73a259c8 100644
--- a/rust/kcl-lib/tests/import_function_not_sketch/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/import_function_not_sketch/artifact_graph_flowchart.snap.md
@@ -22,13 +22,6 @@ flowchart LR
18[Wall]
19[Wall]
20[Wall]
- 21["SweepEdge Adjacent"]
- 22["SweepEdge Adjacent"]
- 23["SweepEdge Adjacent"]
- 24["SweepEdge Adjacent"]
- 25["SweepEdge Adjacent"]
- 26["SweepEdge Adjacent"]
- 27["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 --- 4
@@ -41,21 +34,13 @@ flowchart LR
2 ---- 12
2 --- 11
3 --- 13
- 3 x--> 21
4 --- 14
- 4 --- 21
5 --- 15
- 5 --- 22
6 --- 16
- 6 --- 23
7 --- 17
- 7 --- 24
8 --- 18
- 8 --- 25
9 --- 19
- 9 --- 26
10 --- 20
- 10 --- 27
12 --- 13
12 --- 14
12 --- 15
@@ -64,19 +49,11 @@ flowchart LR
12 --- 18
12 --- 19
12 --- 20
- 12 <--x 3
- 12 --- 21
12 <--x 4
12 <--x 5
- 12 --- 22
12 <--x 6
- 12 --- 23
12 <--x 7
- 12 --- 24
12 <--x 8
- 12 --- 25
12 <--x 9
- 12 --- 26
12 <--x 10
- 12 --- 27
```
diff --git a/rust/kcl-lib/tests/import_whole/artifact_commands.snap b/rust/kcl-lib/tests/import_whole/artifact_commands.snap
index 949bc6d85..48135c1fe 100644
--- a/rust/kcl-lib/tests/import_whole/artifact_commands.snap
+++ b/rust/kcl-lib/tests/import_whole/artifact_commands.snap
@@ -224,5 +224,32 @@ description: Artifact commands import_whole.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/import_whole/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/import_whole/artifact_graph_flowchart.snap.md
index 422c479bc..8cf673aed 100644
--- a/rust/kcl-lib/tests/import_whole/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/import_whole/artifact_graph_flowchart.snap.md
@@ -10,18 +10,13 @@ flowchart LR
6[Wall]
7["Cap Start"]
8["Cap End"]
- 9["SweepEdge Opposite"]
- 10["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 ---- 5
2 --- 4
3 --- 6
- 3 --- 9
- 3 --- 10
+ 3 x--> 7
5 --- 6
5 --- 7
5 --- 8
- 5 --- 9
- 5 --- 10
```
diff --git a/rust/kcl-lib/tests/intersect_cubes/artifact_commands.snap b/rust/kcl-lib/tests/intersect_cubes/artifact_commands.snap
index ddfc05c36..c630f2a78 100644
--- a/rust/kcl-lib/tests/intersect_cubes/artifact_commands.snap
+++ b/rust/kcl-lib/tests/intersect_cubes/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands intersect_cubes.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands intersect_cubes.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands intersect_cubes.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -489,20 +597,27 @@ description: Artifact commands intersect_cubes.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -525,6 +640,33 @@ description: Artifact commands intersect_cubes.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -545,6 +687,80 @@ description: Artifact commands intersect_cubes.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/intersect_cubes/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/intersect_cubes/artifact_graph_flowchart.snap.md
index 7529ff769..5fd925995 100644
--- a/rust/kcl-lib/tests/intersect_cubes/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/intersect_cubes/artifact_graph_flowchart.snap.md
@@ -8,13 +8,13 @@ flowchart LR
6["Segment
[313, 320, 0]"]
7[Solid2d]
end
- subgraph path24 [Path]
- 24["Path
[58, 113, 0]"]
- 25["Segment
[121, 177, 0]"]
- 26["Segment
[185, 241, 0]"]
- 27["Segment
[249, 305, 0]"]
- 28["Segment
[313, 320, 0]"]
- 29[Solid2d]
+ subgraph path19 [Path]
+ 19["Path
[58, 113, 0]"]
+ 20["Segment
[121, 177, 0]"]
+ 21["Segment
[185, 241, 0]"]
+ 22["Segment
[249, 305, 0]"]
+ 23["Segment
[313, 320, 0]"]
+ 24[Solid2d]
end
1["Plane
[33, 50, 0]"]
8["Sweep Extrusion
[328, 354, 0]"]
@@ -25,30 +25,20 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 23["Plane
[33, 50, 0]"]
- 30["Sweep Extrusion
[328, 354, 0]"]
- 31[Wall]
- 32[Wall]
- 33[Wall]
- 34[Wall]
- 35["Cap Start"]
- 36["Cap End"]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
- 39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 41["SweepEdge Opposite"]
- 42["SweepEdge Adjacent"]
- 43["SweepEdge Opposite"]
- 44["SweepEdge Adjacent"]
- 45["CompositeSolid Intersect
[448, 477, 0]"]
+ 18["Plane
[33, 50, 0]"]
+ 25["Sweep Extrusion
[328, 354, 0]"]
+ 26[Wall]
+ 27[Wall]
+ 28[Wall]
+ 29[Wall]
+ 30["Cap Start"]
+ 31["Cap End"]
+ 32["SweepEdge Opposite"]
+ 33["SweepEdge Opposite"]
+ 34["SweepEdge Opposite"]
+ 35["CompositeSolid Intersect
[448, 477, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -57,17 +47,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 9
- 3 --- 15
- 3 --- 16
+ 3 x--> 13
4 --- 10
- 4 --- 17
- 4 --- 18
+ 4 --- 15
+ 4 x--> 13
5 --- 11
- 5 --- 19
- 5 --- 20
+ 5 --- 16
+ 5 x--> 13
6 --- 12
- 6 --- 21
- 6 --- 22
+ 6 --- 17
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -77,44 +66,45 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 23 --- 24
- 24 --- 25
- 24 --- 26
- 24 --- 27
- 24 --- 28
- 24 ---- 30
- 24 --- 29
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 18 --- 19
+ 19 --- 20
+ 19 --- 21
+ 19 --- 22
+ 19 --- 23
+ 19 ---- 25
+ 19 --- 24
+ 20 --- 26
+ 20 x--> 30
+ 21 --- 27
+ 21 --- 32
+ 21 x--> 30
+ 22 --- 28
+ 22 --- 33
+ 22 x--> 30
+ 23 --- 29
+ 23 --- 34
+ 23 x--> 30
+ 25 --- 26
+ 25 --- 27
+ 25 --- 28
+ 25 --- 29
+ 25 --- 30
25 --- 31
- 25 --- 37
- 25 --- 38
- 26 --- 32
- 26 --- 39
- 26 --- 40
- 27 --- 33
- 27 --- 41
- 27 --- 42
- 28 --- 34
- 28 --- 43
- 28 --- 44
- 30 --- 31
- 30 --- 32
- 30 --- 33
- 30 --- 34
- 30 --- 35
- 30 --- 36
- 30 --- 37
- 30 --- 38
- 30 --- 39
- 30 --- 40
- 30 --- 41
- 30 --- 42
- 30 --- 43
- 30 --- 44
- 2 <--x 45
- 24 <--x 45
+ 25 --- 32
+ 25 --- 33
+ 25 --- 34
+ 32 <--x 27
+ 32 <--x 31
+ 33 <--x 28
+ 33 <--x 31
+ 34 <--x 29
+ 34 <--x 31
+ 2 <--x 35
+ 19 <--x 35
```
diff --git a/rust/kcl-lib/tests/kcl_samples/80-20-rail/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/80-20-rail/artifact_commands.snap
index a4d9e502a..a67d1885c 100644
--- a/rust/kcl-lib/tests/kcl_samples/80-20-rail/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/80-20-rail/artifact_commands.snap
@@ -1522,20 +1522,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1562,20 +1569,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1602,20 +1616,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1642,20 +1663,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1682,20 +1710,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1722,20 +1757,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1762,20 +1804,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1802,20 +1851,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1842,20 +1898,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1882,20 +1945,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1922,20 +1992,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1962,20 +2039,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2002,20 +2086,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2042,20 +2133,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2082,20 +2180,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2122,20 +2227,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2162,20 +2274,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2202,20 +2321,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2242,20 +2368,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2282,20 +2415,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2322,20 +2462,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2362,20 +2509,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2402,20 +2556,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2442,20 +2603,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2482,20 +2650,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2522,20 +2697,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2562,20 +2744,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2602,20 +2791,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2642,20 +2838,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2682,20 +2885,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2722,20 +2932,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2762,20 +2979,27 @@ description: Artifact commands 80-20-rail.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2798,6 +3022,1537 @@ description: Artifact commands 80-20-rail.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/80-20-rail/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/80-20-rail/artifact_graph_flowchart.snap.md
index a3b593060..986011bbd 100644
--- a/rust/kcl-lib/tests/kcl_samples/80-20-rail/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/80-20-rail/artifact_graph_flowchart.snap.md
@@ -143,165 +143,101 @@ flowchart LR
137["Cap Start"]
138["Cap End"]
139["SweepEdge Opposite"]
- 140["SweepEdge Adjacent"]
+ 140["SweepEdge Opposite"]
141["SweepEdge Opposite"]
- 142["SweepEdge Adjacent"]
+ 142["SweepEdge Opposite"]
143["SweepEdge Opposite"]
- 144["SweepEdge Adjacent"]
+ 144["SweepEdge Opposite"]
145["SweepEdge Opposite"]
- 146["SweepEdge Adjacent"]
+ 146["SweepEdge Opposite"]
147["SweepEdge Opposite"]
- 148["SweepEdge Adjacent"]
+ 148["SweepEdge Opposite"]
149["SweepEdge Opposite"]
- 150["SweepEdge Adjacent"]
+ 150["SweepEdge Opposite"]
151["SweepEdge Opposite"]
- 152["SweepEdge Adjacent"]
+ 152["SweepEdge Opposite"]
153["SweepEdge Opposite"]
- 154["SweepEdge Adjacent"]
+ 154["SweepEdge Opposite"]
155["SweepEdge Opposite"]
- 156["SweepEdge Adjacent"]
+ 156["SweepEdge Opposite"]
157["SweepEdge Opposite"]
- 158["SweepEdge Adjacent"]
+ 158["SweepEdge Opposite"]
159["SweepEdge Opposite"]
- 160["SweepEdge Adjacent"]
+ 160["SweepEdge Opposite"]
161["SweepEdge Opposite"]
- 162["SweepEdge Adjacent"]
+ 162["SweepEdge Opposite"]
163["SweepEdge Opposite"]
- 164["SweepEdge Adjacent"]
+ 164["SweepEdge Opposite"]
165["SweepEdge Opposite"]
- 166["SweepEdge Adjacent"]
+ 166["SweepEdge Opposite"]
167["SweepEdge Opposite"]
- 168["SweepEdge Adjacent"]
+ 168["SweepEdge Opposite"]
169["SweepEdge Opposite"]
- 170["SweepEdge Adjacent"]
+ 170["SweepEdge Opposite"]
171["SweepEdge Opposite"]
- 172["SweepEdge Adjacent"]
+ 172["SweepEdge Opposite"]
173["SweepEdge Opposite"]
- 174["SweepEdge Adjacent"]
+ 174["SweepEdge Opposite"]
175["SweepEdge Opposite"]
- 176["SweepEdge Adjacent"]
+ 176["SweepEdge Opposite"]
177["SweepEdge Opposite"]
- 178["SweepEdge Adjacent"]
+ 178["SweepEdge Opposite"]
179["SweepEdge Opposite"]
- 180["SweepEdge Adjacent"]
+ 180["SweepEdge Opposite"]
181["SweepEdge Opposite"]
- 182["SweepEdge Adjacent"]
+ 182["SweepEdge Opposite"]
183["SweepEdge Opposite"]
- 184["SweepEdge Adjacent"]
+ 184["SweepEdge Opposite"]
185["SweepEdge Opposite"]
- 186["SweepEdge Adjacent"]
+ 186["SweepEdge Opposite"]
187["SweepEdge Opposite"]
- 188["SweepEdge Adjacent"]
+ 188["SweepEdge Opposite"]
189["SweepEdge Opposite"]
- 190["SweepEdge Adjacent"]
+ 190["SweepEdge Opposite"]
191["SweepEdge Opposite"]
- 192["SweepEdge Adjacent"]
+ 192["SweepEdge Opposite"]
193["SweepEdge Opposite"]
- 194["SweepEdge Adjacent"]
+ 194["SweepEdge Opposite"]
195["SweepEdge Opposite"]
- 196["SweepEdge Adjacent"]
+ 196["SweepEdge Opposite"]
197["SweepEdge Opposite"]
- 198["SweepEdge Adjacent"]
+ 198["SweepEdge Opposite"]
199["SweepEdge Opposite"]
- 200["SweepEdge Adjacent"]
+ 200["SweepEdge Opposite"]
201["SweepEdge Opposite"]
202["SweepEdge Adjacent"]
- 203["SweepEdge Opposite"]
- 204["SweepEdge Adjacent"]
- 205["SweepEdge Opposite"]
- 206["SweepEdge Adjacent"]
- 207["SweepEdge Opposite"]
- 208["SweepEdge Adjacent"]
- 209["SweepEdge Opposite"]
- 210["SweepEdge Adjacent"]
- 211["SweepEdge Opposite"]
- 212["SweepEdge Adjacent"]
- 213["SweepEdge Opposite"]
- 214["SweepEdge Adjacent"]
- 215["SweepEdge Opposite"]
- 216["SweepEdge Adjacent"]
- 217["SweepEdge Opposite"]
- 218["SweepEdge Adjacent"]
- 219["SweepEdge Opposite"]
- 220["SweepEdge Adjacent"]
- 221["SweepEdge Opposite"]
- 222["SweepEdge Adjacent"]
- 223["SweepEdge Opposite"]
- 224["SweepEdge Adjacent"]
- 225["SweepEdge Opposite"]
- 226["SweepEdge Adjacent"]
- 227["SweepEdge Opposite"]
- 228["SweepEdge Adjacent"]
- 229["SweepEdge Opposite"]
- 230["SweepEdge Adjacent"]
- 231["SweepEdge Opposite"]
- 232["SweepEdge Adjacent"]
- 233["SweepEdge Opposite"]
- 234["SweepEdge Adjacent"]
- 235["SweepEdge Opposite"]
- 236["SweepEdge Adjacent"]
- 237["SweepEdge Opposite"]
- 238["SweepEdge Adjacent"]
- 239["SweepEdge Opposite"]
- 240["SweepEdge Adjacent"]
- 241["SweepEdge Opposite"]
- 242["SweepEdge Adjacent"]
- 243["SweepEdge Opposite"]
- 244["SweepEdge Adjacent"]
- 245["SweepEdge Opposite"]
- 246["SweepEdge Adjacent"]
- 247["SweepEdge Opposite"]
- 248["SweepEdge Adjacent"]
- 249["SweepEdge Opposite"]
- 250["SweepEdge Adjacent"]
- 251["SweepEdge Opposite"]
- 252["SweepEdge Adjacent"]
- 253["SweepEdge Opposite"]
- 254["SweepEdge Adjacent"]
- 255["SweepEdge Opposite"]
- 256["SweepEdge Adjacent"]
- 257["SweepEdge Opposite"]
- 258["SweepEdge Adjacent"]
- 259["SweepEdge Opposite"]
- 260["SweepEdge Adjacent"]
- 261["SweepEdge Opposite"]
- 262["SweepEdge Adjacent"]
- 263["SweepEdge Opposite"]
- 264["SweepEdge Adjacent"]
- 265["SweepEdge Opposite"]
- 266["SweepEdge Adjacent"]
- 267["EdgeCut Fillet
[5094, 5799, 0]"]
- 268["EdgeCut Fillet
[5094, 5799, 0]"]
- 269["EdgeCut Fillet
[5094, 5799, 0]"]
- 270["EdgeCut Fillet
[5094, 5799, 0]"]
- 271["EdgeCut Fillet
[5094, 5799, 0]"]
- 272["EdgeCut Fillet
[5094, 5799, 0]"]
- 273["EdgeCut Fillet
[5094, 5799, 0]"]
- 274["EdgeCut Fillet
[5094, 5799, 0]"]
- 275["EdgeCut Fillet
[5094, 5799, 0]"]
- 276["EdgeCut Fillet
[5094, 5799, 0]"]
- 277["EdgeCut Fillet
[5094, 5799, 0]"]
- 278["EdgeCut Fillet
[5094, 5799, 0]"]
- 279["EdgeCut Fillet
[5094, 5799, 0]"]
- 280["EdgeCut Fillet
[5094, 5799, 0]"]
- 281["EdgeCut Fillet
[5094, 5799, 0]"]
- 282["EdgeCut Fillet
[5094, 5799, 0]"]
- 283["EdgeCut Fillet
[5807, 6511, 0]"]
- 284["EdgeCut Fillet
[5807, 6511, 0]"]
- 285["EdgeCut Fillet
[5807, 6511, 0]"]
- 286["EdgeCut Fillet
[5807, 6511, 0]"]
- 287["EdgeCut Fillet
[5807, 6511, 0]"]
- 288["EdgeCut Fillet
[5807, 6511, 0]"]
- 289["EdgeCut Fillet
[5807, 6511, 0]"]
- 290["EdgeCut Fillet
[5807, 6511, 0]"]
- 291["EdgeCut Fillet
[5807, 6511, 0]"]
- 292["EdgeCut Fillet
[5807, 6511, 0]"]
- 293["EdgeCut Fillet
[5807, 6511, 0]"]
- 294["EdgeCut Fillet
[5807, 6511, 0]"]
- 295["EdgeCut Fillet
[5807, 6511, 0]"]
- 296["EdgeCut Fillet
[5807, 6511, 0]"]
- 297["EdgeCut Fillet
[5807, 6511, 0]"]
- 298["EdgeCut Fillet
[5807, 6511, 0]"]
+ 203["EdgeCut Fillet
[5094, 5799, 0]"]
+ 204["EdgeCut Fillet
[5094, 5799, 0]"]
+ 205["EdgeCut Fillet
[5094, 5799, 0]"]
+ 206["EdgeCut Fillet
[5094, 5799, 0]"]
+ 207["EdgeCut Fillet
[5094, 5799, 0]"]
+ 208["EdgeCut Fillet
[5094, 5799, 0]"]
+ 209["EdgeCut Fillet
[5094, 5799, 0]"]
+ 210["EdgeCut Fillet
[5094, 5799, 0]"]
+ 211["EdgeCut Fillet
[5094, 5799, 0]"]
+ 212["EdgeCut Fillet
[5094, 5799, 0]"]
+ 213["EdgeCut Fillet
[5094, 5799, 0]"]
+ 214["EdgeCut Fillet
[5094, 5799, 0]"]
+ 215["EdgeCut Fillet
[5094, 5799, 0]"]
+ 216["EdgeCut Fillet
[5094, 5799, 0]"]
+ 217["EdgeCut Fillet
[5094, 5799, 0]"]
+ 218["EdgeCut Fillet
[5094, 5799, 0]"]
+ 219["EdgeCut Fillet
[5807, 6511, 0]"]
+ 220["EdgeCut Fillet
[5807, 6511, 0]"]
+ 221["EdgeCut Fillet
[5807, 6511, 0]"]
+ 222["EdgeCut Fillet
[5807, 6511, 0]"]
+ 223["EdgeCut Fillet
[5807, 6511, 0]"]
+ 224["EdgeCut Fillet
[5807, 6511, 0]"]
+ 225["EdgeCut Fillet
[5807, 6511, 0]"]
+ 226["EdgeCut Fillet
[5807, 6511, 0]"]
+ 227["EdgeCut Fillet
[5807, 6511, 0]"]
+ 228["EdgeCut Fillet
[5807, 6511, 0]"]
+ 229["EdgeCut Fillet
[5807, 6511, 0]"]
+ 230["EdgeCut Fillet
[5807, 6511, 0]"]
+ 231["EdgeCut Fillet
[5807, 6511, 0]"]
+ 232["EdgeCut Fillet
[5807, 6511, 0]"]
+ 233["EdgeCut Fillet
[5807, 6511, 0]"]
+ 234["EdgeCut Fillet
[5807, 6511, 0]"]
1 --- 2
1 --- 69
2 --- 3
@@ -372,197 +308,197 @@ flowchart LR
2 ---- 72
2 --- 68
3 --- 73
- 3 --- 139
- 3 --- 140
+ 3 x--> 137
4 --- 74
- 4 --- 141
- 4 --- 142
+ 4 --- 139
+ 4 x--> 137
5 --- 75
- 5 --- 143
- 5 --- 144
+ 5 --- 140
+ 5 x--> 137
6 --- 76
- 6 --- 145
- 6 --- 146
+ 6 --- 141
+ 6 x--> 137
7 --- 77
- 7 --- 147
- 7 --- 148
+ 7 --- 142
+ 7 x--> 137
8 --- 78
- 8 --- 149
- 8 --- 150
+ 8 --- 143
+ 8 x--> 137
9 --- 79
- 9 --- 151
- 9 --- 152
+ 9 --- 144
+ 9 --- 202
+ 9 x--> 137
10 --- 80
- 10 --- 153
- 10 --- 154
+ 10 --- 145
+ 10 x--> 137
11 --- 81
- 11 --- 155
- 11 --- 156
+ 11 --- 146
+ 11 x--> 137
12 --- 82
- 12 --- 157
- 12 --- 158
+ 12 --- 147
+ 12 x--> 137
13 --- 83
- 13 --- 159
- 13 --- 160
+ 13 --- 148
+ 13 x--> 137
14 --- 84
- 14 --- 161
- 14 --- 162
+ 14 --- 149
+ 14 x--> 137
15 --- 85
- 15 --- 163
- 15 --- 164
+ 15 --- 150
+ 15 x--> 137
16 --- 86
- 16 --- 165
- 16 --- 166
+ 16 --- 151
+ 16 x--> 137
17 --- 87
- 17 --- 167
- 17 --- 168
+ 17 --- 152
+ 17 x--> 137
18 --- 88
- 18 --- 169
- 18 --- 170
+ 18 --- 153
+ 18 x--> 137
19 --- 89
- 19 --- 171
- 19 --- 172
+ 19 --- 154
+ 19 x--> 137
20 --- 90
- 20 --- 173
- 20 --- 174
+ 20 --- 155
+ 20 x--> 137
21 --- 91
- 21 --- 175
- 21 --- 176
+ 21 --- 156
+ 21 x--> 137
22 --- 92
- 22 --- 177
- 22 --- 178
+ 22 --- 157
+ 22 x--> 137
23 --- 93
- 23 --- 179
- 23 --- 180
+ 23 --- 158
+ 23 x--> 137
24 --- 94
- 24 --- 181
- 24 --- 182
+ 24 --- 159
+ 24 x--> 137
25 --- 95
- 25 --- 183
- 25 --- 184
+ 25 --- 160
+ 25 x--> 137
26 --- 96
- 26 --- 185
- 26 --- 186
+ 26 --- 161
+ 26 x--> 137
27 --- 97
- 27 --- 187
- 27 --- 188
+ 27 --- 162
+ 27 x--> 137
28 --- 98
- 28 --- 189
- 28 --- 190
+ 28 --- 163
+ 28 x--> 137
29 --- 99
- 29 --- 191
- 29 --- 192
+ 29 --- 164
+ 29 x--> 137
30 --- 100
- 30 --- 193
- 30 --- 194
+ 30 --- 165
+ 30 x--> 137
31 --- 101
- 31 --- 195
- 31 --- 196
+ 31 --- 166
+ 31 x--> 137
32 --- 102
- 32 --- 197
- 32 --- 198
+ 32 --- 167
+ 32 x--> 137
33 --- 103
- 33 --- 199
- 33 --- 200
+ 33 --- 168
+ 33 x--> 137
34 --- 104
- 34 --- 201
- 34 --- 202
+ 34 --- 169
+ 34 x--> 137
35 --- 105
- 35 --- 203
- 35 --- 204
+ 35 --- 170
+ 35 x--> 137
36 --- 106
- 36 --- 205
- 36 --- 206
+ 36 --- 171
+ 36 x--> 137
37 --- 107
- 37 --- 207
- 37 --- 208
+ 37 --- 172
+ 37 x--> 137
38 --- 108
- 38 --- 209
- 38 --- 210
+ 38 --- 173
+ 38 x--> 137
39 --- 109
- 39 --- 211
- 39 --- 212
+ 39 --- 174
+ 39 x--> 137
40 --- 110
- 40 --- 213
- 40 --- 214
+ 40 --- 175
+ 40 x--> 137
41 --- 111
- 41 --- 215
- 41 --- 216
+ 41 --- 176
+ 41 x--> 137
42 --- 112
- 42 --- 217
- 42 --- 218
+ 42 --- 177
+ 42 x--> 137
43 --- 113
- 43 --- 219
- 43 --- 220
+ 43 --- 178
+ 43 x--> 137
44 --- 114
- 44 --- 221
- 44 --- 222
+ 44 --- 179
+ 44 x--> 137
45 --- 115
- 45 --- 223
- 45 --- 224
+ 45 --- 180
+ 45 x--> 137
46 --- 116
- 46 --- 225
- 46 --- 226
+ 46 --- 181
+ 46 x--> 137
47 --- 117
- 47 --- 227
- 47 --- 228
+ 47 --- 182
+ 47 x--> 137
48 --- 118
- 48 --- 229
- 48 --- 230
+ 48 --- 183
+ 48 x--> 137
49 --- 119
- 49 --- 231
- 49 --- 232
+ 49 --- 184
+ 49 x--> 137
50 --- 120
- 50 --- 233
- 50 --- 234
+ 50 --- 185
+ 50 x--> 137
51 --- 121
- 51 --- 235
- 51 --- 236
+ 51 --- 186
+ 51 x--> 137
52 --- 122
- 52 --- 237
- 52 --- 238
+ 52 --- 187
+ 52 x--> 137
53 --- 123
- 53 --- 239
- 53 --- 240
+ 53 --- 188
+ 53 x--> 137
54 --- 124
- 54 --- 241
- 54 --- 242
+ 54 --- 189
+ 54 x--> 137
55 --- 125
- 55 --- 243
- 55 --- 244
+ 55 --- 190
+ 55 x--> 137
56 --- 126
- 56 --- 245
- 56 --- 246
+ 56 --- 191
+ 56 x--> 137
57 --- 127
- 57 --- 247
- 57 --- 248
+ 57 --- 192
+ 57 x--> 137
58 --- 128
- 58 --- 249
- 58 --- 250
+ 58 --- 193
+ 58 x--> 137
59 --- 129
- 59 --- 251
- 59 --- 252
+ 59 --- 194
+ 59 x--> 137
60 --- 130
- 60 --- 253
- 60 --- 254
+ 60 --- 195
+ 60 x--> 137
61 --- 131
- 61 --- 255
- 61 --- 256
+ 61 --- 196
+ 61 x--> 137
62 --- 132
- 62 --- 257
- 62 --- 258
+ 62 --- 197
+ 62 x--> 137
63 --- 133
- 63 --- 259
- 63 --- 260
+ 63 --- 198
+ 63 x--> 137
64 --- 134
- 64 --- 261
- 64 --- 262
+ 64 --- 199
+ 64 x--> 137
65 --- 135
- 65 --- 263
- 65 --- 264
+ 65 --- 200
+ 65 x--> 137
66 --- 136
- 66 --- 265
- 66 --- 266
+ 66 --- 201
+ 66 x--> 137
69 --- 70
69 --- 71
72 --- 73
@@ -695,100 +631,131 @@ flowchart LR
72 --- 200
72 --- 201
72 --- 202
- 72 --- 203
- 72 --- 204
- 72 --- 205
- 72 --- 206
- 72 --- 207
- 72 --- 208
- 72 --- 209
- 72 --- 210
- 72 --- 211
- 72 --- 212
- 72 --- 213
- 72 --- 214
- 72 --- 215
- 72 --- 216
- 72 --- 217
- 72 --- 218
- 72 --- 219
- 72 --- 220
- 72 --- 221
- 72 --- 222
- 72 --- 223
- 72 --- 224
- 72 --- 225
- 72 --- 226
- 72 --- 227
- 72 --- 228
- 72 --- 229
- 72 --- 230
- 72 --- 231
- 72 --- 232
- 72 --- 233
- 72 --- 234
- 72 --- 235
- 72 --- 236
- 72 --- 237
- 72 --- 238
- 72 --- 239
- 72 --- 240
- 72 --- 241
- 72 --- 242
- 72 --- 243
- 72 --- 244
- 72 --- 245
- 72 --- 246
- 72 --- 247
- 72 --- 248
- 72 --- 249
- 72 --- 250
- 72 --- 251
- 72 --- 252
- 72 --- 253
- 72 --- 254
- 72 --- 255
- 72 --- 256
- 72 --- 257
- 72 --- 258
- 72 --- 259
- 72 --- 260
- 72 --- 261
- 72 --- 262
- 72 --- 263
- 72 --- 264
- 72 --- 265
- 72 --- 266
- 152 <--x 267
- 154 <--x 268
- 156 <--x 269
- 158 <--x 270
- 184 <--x 271
- 186 <--x 272
- 188 <--x 273
- 190 <--x 274
- 216 <--x 275
- 218 <--x 276
- 220 <--x 277
- 222 <--x 278
- 248 <--x 279
- 250 <--x 280
- 252 <--x 281
- 254 <--x 282
- 148 <--x 283
- 150 <--x 284
- 160 <--x 285
- 162 <--x 286
- 180 <--x 287
- 182 <--x 288
- 192 <--x 289
- 194 <--x 290
- 212 <--x 291
- 214 <--x 292
- 224 <--x 293
- 226 <--x 294
- 244 <--x 295
- 246 <--x 296
- 256 <--x 297
- 258 <--x 298
+ 139 <--x 74
+ 139 <--x 138
+ 140 <--x 75
+ 140 <--x 138
+ 141 <--x 76
+ 141 <--x 138
+ 142 <--x 77
+ 142 <--x 138
+ 143 <--x 78
+ 143 <--x 138
+ 144 <--x 79
+ 144 <--x 138
+ 145 <--x 80
+ 145 <--x 138
+ 146 <--x 81
+ 146 <--x 138
+ 147 <--x 82
+ 147 <--x 138
+ 148 <--x 83
+ 148 <--x 138
+ 149 <--x 84
+ 149 <--x 138
+ 150 <--x 85
+ 150 <--x 138
+ 151 <--x 86
+ 151 <--x 138
+ 152 <--x 87
+ 152 <--x 138
+ 153 <--x 88
+ 153 <--x 138
+ 154 <--x 89
+ 154 <--x 138
+ 155 <--x 90
+ 155 <--x 138
+ 156 <--x 91
+ 156 <--x 138
+ 157 <--x 92
+ 157 <--x 138
+ 158 <--x 93
+ 158 <--x 138
+ 159 <--x 94
+ 159 <--x 138
+ 160 <--x 95
+ 160 <--x 138
+ 161 <--x 96
+ 161 <--x 138
+ 162 <--x 97
+ 162 <--x 138
+ 163 <--x 98
+ 163 <--x 138
+ 164 <--x 99
+ 164 <--x 138
+ 165 <--x 100
+ 165 <--x 138
+ 166 <--x 101
+ 166 <--x 138
+ 167 <--x 102
+ 167 <--x 138
+ 168 <--x 103
+ 168 <--x 138
+ 169 <--x 104
+ 169 <--x 138
+ 170 <--x 105
+ 170 <--x 138
+ 171 <--x 106
+ 171 <--x 138
+ 172 <--x 107
+ 172 <--x 138
+ 173 <--x 108
+ 173 <--x 138
+ 174 <--x 109
+ 174 <--x 138
+ 175 <--x 110
+ 175 <--x 138
+ 176 <--x 111
+ 176 <--x 138
+ 177 <--x 112
+ 177 <--x 138
+ 178 <--x 113
+ 178 <--x 138
+ 179 <--x 114
+ 179 <--x 138
+ 180 <--x 115
+ 180 <--x 138
+ 181 <--x 116
+ 181 <--x 138
+ 182 <--x 117
+ 182 <--x 138
+ 183 <--x 118
+ 183 <--x 138
+ 184 <--x 119
+ 184 <--x 138
+ 185 <--x 120
+ 185 <--x 138
+ 186 <--x 121
+ 186 <--x 138
+ 187 <--x 122
+ 187 <--x 138
+ 188 <--x 123
+ 188 <--x 138
+ 189 <--x 124
+ 189 <--x 138
+ 190 <--x 125
+ 190 <--x 138
+ 191 <--x 126
+ 191 <--x 138
+ 192 <--x 127
+ 192 <--x 138
+ 193 <--x 128
+ 193 <--x 138
+ 194 <--x 129
+ 194 <--x 138
+ 195 <--x 130
+ 195 <--x 138
+ 196 <--x 131
+ 196 <--x 138
+ 197 <--x 132
+ 197 <--x 138
+ 198 <--x 133
+ 198 <--x 138
+ 199 <--x 134
+ 199 <--x 138
+ 200 <--x 135
+ 200 <--x 138
+ 201 <--x 136
+ 201 <--x 138
+ 202 <--x 203
```
diff --git a/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_commands.snap
index 1ec233203..50a6e15bf 100644
--- a/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_commands.snap
@@ -718,20 +718,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -758,20 +765,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -798,20 +812,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -838,20 +859,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -874,6 +902,221 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1146,20 +1389,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1186,20 +1436,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1226,20 +1483,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1262,6 +1526,33 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1282,6 +1573,174 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1353,20 +1812,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1393,20 +1859,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1433,20 +1906,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1469,6 +1949,33 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1489,6 +1996,174 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1560,20 +2235,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1600,20 +2282,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1640,20 +2329,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1676,6 +2372,33 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1696,6 +2419,174 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1767,20 +2658,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1807,20 +2705,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1847,20 +2752,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1883,6 +2795,33 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1903,6 +2842,174 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2145,20 +3252,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2185,20 +3299,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2225,20 +3346,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2261,6 +3389,33 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2281,6 +3436,174 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2420,6 +3743,33 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3056,20 +4406,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3096,20 +4453,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3136,20 +4500,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3176,20 +4547,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3212,6 +4590,221 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3351,6 +4944,33 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3490,6 +5110,33 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3869,6 +5516,33 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4082,6 +5756,33 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4485,20 +6186,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4525,20 +6233,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4565,20 +6280,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4605,20 +6327,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4645,20 +6374,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4681,6 +6417,33 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4701,6 +6464,268 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5318,20 +7343,27 @@ description: Artifact commands axial-fan.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5354,6 +7386,33 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5374,6 +7433,80 @@ description: Artifact commands axial-fan.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_graph_flowchart.snap.md
index 2e5c42fb7..738d87893 100644
--- a/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_graph_flowchart.snap.md
@@ -34,128 +34,129 @@ flowchart LR
22["Segment
[1326, 1475, 6]"]
23[Solid2d]
end
- subgraph path39 [Path]
- 39["Path
[1646, 1702, 6]"]
- 40["Segment
[1708, 1773, 6]"]
- 41["Segment
[1779, 1831, 6]"]
- 42["Segment
[1837, 1888, 6]"]
- 43["Segment
[1894, 1946, 6]"]
- 44["Segment
[1952, 2018, 6]"]
- 45["Segment
[2024, 2076, 6]"]
- 46["Segment
[2082, 2114, 6]"]
- 47["Segment
[2120, 2185, 6]"]
- 48["Segment
[2191, 2198, 6]"]
- 49[Solid2d]
+ subgraph path34 [Path]
+ 34["Path
[1646, 1702, 6]"]
+ 35["Segment
[1708, 1773, 6]"]
+ 36["Segment
[1779, 1831, 6]"]
+ 37["Segment
[1837, 1888, 6]"]
+ 38["Segment
[1894, 1946, 6]"]
+ 39["Segment
[1952, 2018, 6]"]
+ 40["Segment
[2024, 2076, 6]"]
+ 41["Segment
[2082, 2114, 6]"]
+ 42["Segment
[2120, 2185, 6]"]
+ 43["Segment
[2191, 2198, 6]"]
+ 44[Solid2d]
end
- subgraph path78 [Path]
- 78["Path
[2547, 2660, 6]"]
- 79["Segment
[2666, 2721, 6]"]
- 80["Segment
[2727, 2762, 6]"]
- 81["Segment
[2768, 2823, 6]"]
- 82["Segment
[2829, 2865, 6]"]
- 83["Segment
[2871, 2926, 6]"]
- 84["Segment
[2932, 2968, 6]"]
- 85["Segment
[2974, 3029, 6]"]
- 86["Segment
[3035, 3091, 6]"]
+ subgraph path64 [Path]
+ 64["Path
[2547, 2660, 6]"]
+ 65["Segment
[2666, 2721, 6]"]
+ 66["Segment
[2727, 2762, 6]"]
+ 67["Segment
[2768, 2823, 6]"]
+ 68["Segment
[2829, 2865, 6]"]
+ 69["Segment
[2871, 2926, 6]"]
+ 70["Segment
[2932, 2968, 6]"]
+ 71["Segment
[2974, 3029, 6]"]
+ 72["Segment
[3035, 3091, 6]"]
end
- subgraph path113 [Path]
- 113["Path
[3240, 3291, 6]"]
- 114["Segment
[3240, 3291, 6]"]
- 115[Solid2d]
+ subgraph path90 [Path]
+ 90["Path
[3240, 3291, 6]"]
+ 91["Segment
[3240, 3291, 6]"]
+ 92[Solid2d]
end
- subgraph path120 [Path]
- 120["Path
[3470, 3532, 6]"]
- 121["Segment
[3538, 3606, 6]"]
- 122["Segment
[3612, 3712, 6]"]
- 123["Segment
[3718, 3835, 6]"]
- 124["Segment
[3841, 3926, 6]"]
- 125["Segment
[3932, 3939, 6]"]
- 126[Solid2d]
+ subgraph path95 [Path]
+ 95["Path
[3470, 3532, 6]"]
+ 96["Segment
[3538, 3606, 6]"]
+ 97["Segment
[3612, 3712, 6]"]
+ 98["Segment
[3718, 3835, 6]"]
+ 99["Segment
[3841, 3926, 6]"]
+ 100["Segment
[3932, 3939, 6]"]
+ 101[Solid2d]
+ end
+ subgraph path102 [Path]
+ 102["Path
[3950, 4001, 6]"]
+ 103["Segment
[3950, 4001, 6]"]
+ 104[Solid2d]
+ end
+ subgraph path105 [Path]
+ 105["Path
[4016, 4163, 6]"]
+ 106["Segment
[4016, 4163, 6]"]
+ 107[Solid2d]
+ end
+ subgraph path108 [Path]
+ 108["Path
[4178, 4326, 6]"]
+ 109["Segment
[4178, 4326, 6]"]
+ 110[Solid2d]
+ end
+ subgraph path111 [Path]
+ 111["Path
[4341, 4489, 6]"]
+ 112["Segment
[4341, 4489, 6]"]
+ 113[Solid2d]
+ end
+ subgraph path114 [Path]
+ 114["Path
[4504, 4653, 6]"]
+ 115["Segment
[4504, 4653, 6]"]
+ 116[Solid2d]
end
subgraph path127 [Path]
- 127["Path
[3950, 4001, 6]"]
- 128["Segment
[3950, 4001, 6]"]
+ 127["Path
[4798, 4836, 6]"]
+ 128["Segment
[4798, 4836, 6]"]
129[Solid2d]
end
- subgraph path130 [Path]
- 130["Path
[4016, 4163, 6]"]
- 131["Segment
[4016, 4163, 6]"]
- 132[Solid2d]
- end
subgraph path133 [Path]
- 133["Path
[4178, 4326, 6]"]
- 134["Segment
[4178, 4326, 6]"]
+ 133["Path
[4909, 4945, 6]"]
+ 134["Segment
[4909, 4945, 6]"]
135[Solid2d]
end
- subgraph path136 [Path]
- 136["Path
[4341, 4489, 6]"]
- 137["Segment
[4341, 4489, 6]"]
- 138[Solid2d]
- end
- subgraph path139 [Path]
- 139["Path
[4504, 4653, 6]"]
- 140["Segment
[4504, 4653, 6]"]
- 141[Solid2d]
+ subgraph path148 [Path]
+ 148["Path
[277, 327, 7]"]
+ 149["Segment
[277, 327, 7]"]
+ 150[Solid2d]
end
subgraph path157 [Path]
- 157["Path
[4798, 4836, 6]"]
- 158["Segment
[4798, 4836, 6]"]
+ 157["Path
[502, 537, 7]"]
+ 158["Segment
[502, 537, 7]"]
159[Solid2d]
end
- subgraph path165 [Path]
- 165["Path
[4909, 4945, 6]"]
- 166["Segment
[4909, 4945, 6]"]
- 167[Solid2d]
+ subgraph path167 [Path]
+ 167["Path
[216, 255, 8]"]
+ 168["Segment
[261, 291, 8]"]
+ 169["Segment
[297, 336, 8]"]
+ 170["Segment
[342, 366, 8]"]
+ 171["Segment
[372, 396, 8]"]
+ 172["Segment
[402, 443, 8]"]
+ 173["Segment
[449, 487, 8]"]
+ 174["Segment
[493, 516, 8]"]
+ 175["Segment
[522, 539, 8]"]
+ 176["Segment
[545, 566, 8]"]
+ 177["Segment
[572, 659, 8]"]
+ 178["Segment
[665, 702, 8]"]
+ 179["Segment
[708, 745, 8]"]
+ 180["Segment
[751, 758, 8]"]
+ 181[Solid2d]
end
- subgraph path181 [Path]
- 181["Path
[277, 327, 7]"]
- 182["Segment
[277, 327, 7]"]
- 183[Solid2d]
+ subgraph path196 [Path]
+ 196["Path
[1100, 1212, 8]"]
+ 197["Segment
[1220, 1289, 8]"]
+ 198["Segment
[1297, 1641, 8]"]
+ 199["Segment
[1649, 1995, 8]"]
+ 200["Segment
[2003, 2244, 8]"]
+ 201["Segment
[2252, 2259, 8]"]
+ 202[Solid2d]
end
- subgraph path191 [Path]
- 191["Path
[502, 537, 7]"]
- 192["Segment
[502, 537, 7]"]
- 193[Solid2d]
+ subgraph path204 [Path]
+ 204["Path
[1100, 1212, 8]"]
+ 205["Segment
[1220, 1289, 8]"]
+ 206["Segment
[1297, 1641, 8]"]
+ 207["Segment
[1649, 1995, 8]"]
+ 208["Segment
[2003, 2244, 8]"]
+ 209["Segment
[2252, 2259, 8]"]
+ 210[Solid2d]
end
- subgraph path203 [Path]
- 203["Path
[216, 255, 8]"]
- 204["Segment
[261, 291, 8]"]
- 205["Segment
[297, 336, 8]"]
- 206["Segment
[342, 366, 8]"]
- 207["Segment
[372, 396, 8]"]
- 208["Segment
[402, 443, 8]"]
- 209["Segment
[449, 487, 8]"]
- 210["Segment
[493, 516, 8]"]
- 211["Segment
[522, 539, 8]"]
- 212["Segment
[545, 566, 8]"]
- 213["Segment
[572, 659, 8]"]
- 214["Segment
[665, 702, 8]"]
- 215["Segment
[708, 745, 8]"]
- 216["Segment
[751, 758, 8]"]
- 217[Solid2d]
- end
- subgraph path243 [Path]
- 243["Path
[1100, 1212, 8]"]
- 244["Segment
[1220, 1289, 8]"]
- 245["Segment
[1297, 1641, 8]"]
- 246["Segment
[1649, 1995, 8]"]
- 247["Segment
[2003, 2244, 8]"]
- 248["Segment
[2252, 2259, 8]"]
- 249[Solid2d]
- end
- subgraph path251 [Path]
- 251["Path
[1100, 1212, 8]"]
- 252["Segment
[1220, 1289, 8]"]
- 253["Segment
[1297, 1641, 8]"]
- 254["Segment
[1649, 1995, 8]"]
- 255["Segment
[2003, 2244, 8]"]
- 256["Segment
[2252, 2259, 8]"]
- 257[Solid2d]
- end
- subgraph path259 [Path]
- 259["Path
[1100, 1212, 8]"]
- 264["Segment
[2252, 2259, 8]"]
- 265[Solid2d]
+ subgraph path212 [Path]
+ 212["Path
[1100, 1212, 8]"]
+ 213["Segment
[1220, 1289, 8]"]
+ 217["Segment
[2252, 2259, 8]"]
+ 218[Solid2d]
end
1["Plane
[300, 317, 6]"]
24["Sweep Extrusion
[1485, 1504, 6]"]
@@ -166,173 +167,121 @@ flowchart LR
29["Cap Start"]
30["Cap End"]
31["SweepEdge Opposite"]
- 32["SweepEdge Adjacent"]
+ 32["SweepEdge Opposite"]
33["SweepEdge Opposite"]
- 34["SweepEdge Adjacent"]
- 35["SweepEdge Opposite"]
- 36["SweepEdge Adjacent"]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
- 50["Sweep Extrusion
[2338, 2358, 6]"]
+ 45["Sweep Extrusion
[2338, 2358, 6]"]
+ 46[Wall]
+ 47[Wall]
+ 48[Wall]
+ 49[Wall]
+ 50[Wall]
51[Wall]
52[Wall]
53[Wall]
- 54[Wall]
- 55[Wall]
- 56[Wall]
- 57[Wall]
- 58[Wall]
+ 54["SweepEdge Opposite"]
+ 55["SweepEdge Opposite"]
+ 56["SweepEdge Opposite"]
+ 57["SweepEdge Opposite"]
+ 58["SweepEdge Opposite"]
59["SweepEdge Opposite"]
- 60["SweepEdge Adjacent"]
- 61["SweepEdge Opposite"]
- 62["SweepEdge Adjacent"]
- 63["SweepEdge Opposite"]
- 64["SweepEdge Adjacent"]
- 65["SweepEdge Opposite"]
- 66["SweepEdge Adjacent"]
- 67["SweepEdge Opposite"]
- 68["SweepEdge Adjacent"]
- 69["SweepEdge Opposite"]
- 70["SweepEdge Adjacent"]
- 71["SweepEdge Opposite"]
- 72["SweepEdge Adjacent"]
- 73["SweepEdge Opposite"]
- 74["SweepEdge Adjacent"]
- 75["Sweep Extrusion
[2338, 2358, 6]"]
- 76["Sweep Extrusion
[2338, 2358, 6]"]
- 77["Sweep Extrusion
[2338, 2358, 6]"]
- 87["Sweep Extrusion
[3097, 3132, 6]"]
- 88[Wall]
- 89[Wall]
- 90[Wall]
- 91[Wall]
- 92[Wall]
- 93[Wall]
+ 60["SweepEdge Opposite"]
+ 61["Sweep Extrusion
[2338, 2358, 6]"]
+ 62["Sweep Extrusion
[2338, 2358, 6]"]
+ 63["Sweep Extrusion
[2338, 2358, 6]"]
+ 73["Sweep Extrusion
[3097, 3132, 6]"]
+ 74[Wall]
+ 75[Wall]
+ 76[Wall]
+ 77[Wall]
+ 78[Wall]
+ 79[Wall]
+ 80[Wall]
+ 81[Wall]
+ 82["Cap End"]
+ 83["SweepEdge Opposite"]
+ 84["SweepEdge Opposite"]
+ 85["SweepEdge Opposite"]
+ 86["SweepEdge Opposite"]
+ 87["SweepEdge Opposite"]
+ 88["SweepEdge Opposite"]
+ 89["SweepEdge Opposite"]
+ 93["Sweep Extrusion
[3297, 3335, 6]"]
94[Wall]
- 95[Wall]
- 96["Cap End"]
- 97["SweepEdge Opposite"]
- 98["SweepEdge Adjacent"]
- 99["SweepEdge Opposite"]
- 100["SweepEdge Adjacent"]
- 101["SweepEdge Opposite"]
- 102["SweepEdge Adjacent"]
- 103["SweepEdge Opposite"]
- 104["SweepEdge Adjacent"]
- 105["SweepEdge Opposite"]
- 106["SweepEdge Adjacent"]
- 107["SweepEdge Opposite"]
- 108["SweepEdge Adjacent"]
- 109["SweepEdge Opposite"]
- 110["SweepEdge Adjacent"]
- 111["SweepEdge Opposite"]
- 112["SweepEdge Adjacent"]
- 116["Sweep Extrusion
[3297, 3335, 6]"]
- 117[Wall]
- 118["SweepEdge Opposite"]
- 119["SweepEdge Adjacent"]
- 142["Sweep Extrusion
[4663, 4682, 6]"]
- 143[Wall]
- 144[Wall]
- 145[Wall]
- 146[Wall]
- 147["Cap Start"]
- 148["Cap End"]
- 149["SweepEdge Opposite"]
- 150["SweepEdge Adjacent"]
- 151["SweepEdge Opposite"]
- 152["SweepEdge Adjacent"]
- 153["SweepEdge Opposite"]
- 154["SweepEdge Adjacent"]
+ 117["Sweep Extrusion
[4663, 4682, 6]"]
+ 118[Wall]
+ 119[Wall]
+ 120[Wall]
+ 121[Wall]
+ 122["Cap Start"]
+ 123["Cap End"]
+ 124["SweepEdge Opposite"]
+ 125["SweepEdge Opposite"]
+ 126["SweepEdge Opposite"]
+ 130["Sweep Extrusion
[4842, 4862, 6]"]
+ 131[Wall]
+ 132["Cap End"]
+ 136["Sweep Extrusion
[4951, 4972, 6]"]
+ 137[Wall]
+ 138["SweepEdge Adjacent"]
+ 139["EdgeCut Fillet
[5013, 5524, 6]"]
+ 140["EdgeCut Fillet
[5013, 5524, 6]"]
+ 141["EdgeCut Fillet
[5013, 5524, 6]"]
+ 142["EdgeCut Fillet
[5013, 5524, 6]"]
+ 143["EdgeCut Fillet
[5013, 5524, 6]"]
+ 144["EdgeCut Fillet
[5013, 5524, 6]"]
+ 145["EdgeCut Fillet
[5013, 5524, 6]"]
+ 146["EdgeCut Fillet
[5013, 5524, 6]"]
+ 147["Plane
[204, 231, 7]"]
+ 151["Sweep Extrusion
[333, 353, 7]"]
+ 152[Wall]
+ 153["Cap Start"]
+ 154["Cap End"]
155["SweepEdge Opposite"]
- 156["SweepEdge Adjacent"]
- 160["Sweep Extrusion
[4842, 4862, 6]"]
+ 156["Plane
[467, 495, 7]"]
+ 160["Sweep Extrusion
[543, 564, 7]"]
161[Wall]
- 162["Cap End"]
- 163["SweepEdge Opposite"]
- 164["SweepEdge Adjacent"]
- 168["Sweep Extrusion
[4951, 4972, 6]"]
- 169[Wall]
- 170["SweepEdge Opposite"]
- 171["SweepEdge Adjacent"]
- 172["EdgeCut Fillet
[5013, 5524, 6]"]
- 173["EdgeCut Fillet
[5013, 5524, 6]"]
- 174["EdgeCut Fillet
[5013, 5524, 6]"]
- 175["EdgeCut Fillet
[5013, 5524, 6]"]
- 176["EdgeCut Fillet
[5013, 5524, 6]"]
- 177["EdgeCut Fillet
[5013, 5524, 6]"]
- 178["EdgeCut Fillet
[5013, 5524, 6]"]
- 179["EdgeCut Fillet
[5013, 5524, 6]"]
- 180["Plane
[204, 231, 7]"]
- 184["Sweep Extrusion
[333, 353, 7]"]
+ 162["Cap Start"]
+ 163["Cap End"]
+ 164["EdgeCut Fillet
[394, 452, 7]"]
+ 165["EdgeCut Fillet
[394, 452, 7]"]
+ 166["Plane
[193, 210, 8]"]
+ 182["Sweep Revolve
[764, 846, 8]"]
+ 183[Wall]
+ 184[Wall]
185[Wall]
- 186["Cap Start"]
- 187["Cap End"]
- 188["SweepEdge Opposite"]
- 189["SweepEdge Adjacent"]
- 190["Plane
[467, 495, 7]"]
- 194["Sweep Extrusion
[543, 564, 7]"]
- 195[Wall]
- 196["Cap Start"]
- 197["Cap End"]
- 198["SweepEdge Opposite"]
- 199["SweepEdge Adjacent"]
- 200["EdgeCut Fillet
[394, 452, 7]"]
- 201["EdgeCut Fillet
[394, 452, 7]"]
- 202["Plane
[193, 210, 8]"]
- 218["Sweep Revolve
[764, 846, 8]"]
- 219[Wall]
+ 186[Wall]
+ 187[Wall]
+ 188[Wall]
+ 189[Wall]
+ 190[Wall]
+ 191[Wall]
+ 192[Wall]
+ 193[Wall]
+ 194[Wall]
+ 195["Plane
[1053, 1091, 8]"]
+ 203["Plane
[1053, 1091, 8]"]
+ 211["Plane
[1053, 1091, 8]"]
+ 214["SweepEdge Opposite"]
+ 215["SweepEdge Opposite"]
+ 216["SweepEdge Opposite"]
+ 219["Sweep Loft
[2378, 2498, 8]"]
220[Wall]
221[Wall]
222[Wall]
223[Wall]
- 224[Wall]
- 225[Wall]
- 226[Wall]
- 227[Wall]
- 228[Wall]
- 229[Wall]
- 230[Wall]
- 231["SweepEdge Adjacent"]
- 232["SweepEdge Adjacent"]
- 233["SweepEdge Adjacent"]
- 234["SweepEdge Adjacent"]
- 235["SweepEdge Adjacent"]
- 236["SweepEdge Adjacent"]
- 237["SweepEdge Adjacent"]
- 238["SweepEdge Adjacent"]
- 239["SweepEdge Adjacent"]
- 240["SweepEdge Adjacent"]
- 241["SweepEdge Adjacent"]
- 242["Plane
[1053, 1091, 8]"]
- 250["Plane
[1053, 1091, 8]"]
- 258["Plane
[1053, 1091, 8]"]
- 260["SweepEdge Opposite"]
- 261["SweepEdge Opposite"]
- 262["SweepEdge Opposite"]
- 263["SweepEdge Opposite"]
- 266["Sweep Loft
[2378, 2498, 8]"]
- 267[Wall]
- 268[Wall]
- 269[Wall]
- 270[Wall]
- 271["Cap End"]
- 272["Cap End"]
- 273["SweepEdge Adjacent"]
- 274["SweepEdge Adjacent"]
- 275["SweepEdge Adjacent"]
- 276["SweepEdge Adjacent"]
- 277["StartSketchOnFace
[1597, 1640, 6]"]
- 278["StartSketchOnFace
[2498, 2541, 6]"]
- 279["StartSketchOnFace
[3197, 3234, 6]"]
- 280["StartSketchOnFace
[3421, 3458, 6]"]
- 281["StartSketchOnFace
[4749, 4792, 6]"]
- 282["StartSketchOnFace
[4864, 4903, 6]"]
- 283["StartSketchOnPlane
[244, 271, 7]"]
- 284["StartSketchOnPlane
[453, 496, 7]"]
- 285["StartSketchOnPlane
[1039, 1092, 8]"]
- 286["StartSketchOnPlane
[1039, 1092, 8]"]
- 287["StartSketchOnPlane
[1039, 1092, 8]"]
+ 224["Cap End"]
+ 225["Cap End"]
+ 226["StartSketchOnFace
[1597, 1640, 6]"]
+ 227["StartSketchOnFace
[2498, 2541, 6]"]
+ 228["StartSketchOnFace
[3197, 3234, 6]"]
+ 229["StartSketchOnFace
[3421, 3458, 6]"]
+ 230["StartSketchOnFace
[4749, 4792, 6]"]
+ 231["StartSketchOnFace
[4864, 4903, 6]"]
+ 232["StartSketchOnPlane
[244, 271, 7]"]
+ 233["StartSketchOnPlane
[453, 496, 7]"]
+ 234["StartSketchOnPlane
[1039, 1092, 8]"]
+ 235["StartSketchOnPlane
[1039, 1092, 8]"]
+ 236["StartSketchOnPlane
[1039, 1092, 8]"]
1 --- 2
1 --- 9
1 --- 12
@@ -347,17 +296,17 @@ flowchart LR
2 ---- 24
2 --- 8
3 --- 25
- 3 --- 31
- 3 --- 32
+ 3 --- 138
+ 3 x--> 29
4 --- 26
- 4 --- 33
- 4 --- 34
+ 4 --- 31
+ 4 x--> 29
5 --- 27
- 5 --- 35
- 5 --- 36
+ 5 --- 32
+ 5 x--> 29
6 --- 28
- 6 --- 37
- 6 --- 38
+ 6 --- 33
+ 6 x--> 29
9 --- 10
9 --- 11
12 --- 13
@@ -377,378 +326,346 @@ flowchart LR
24 --- 31
24 --- 32
24 --- 33
- 24 --- 34
- 24 --- 35
- 24 --- 36
- 24 --- 37
- 24 --- 38
- 30 --- 39
- 30 --- 78
- 30 --- 157
- 39 --- 40
- 39 --- 41
- 39 --- 42
- 39 --- 43
- 39 --- 44
- 39 --- 45
- 39 --- 46
- 39 --- 47
- 39 --- 48
- 39 ---- 50
- 39 --- 49
+ 24 --- 138
+ 30 --- 34
+ 30 --- 64
+ 30 --- 127
+ 31 <--x 26
+ 31 <--x 30
+ 32 <--x 27
+ 32 <--x 30
+ 33 <--x 28
+ 33 <--x 30
+ 34 --- 35
+ 34 --- 36
+ 34 --- 37
+ 34 --- 38
+ 34 --- 39
+ 34 --- 40
+ 34 --- 41
+ 34 --- 42
+ 34 --- 43
+ 34 ---- 45
+ 34 --- 44
+ 35 --- 46
+ 35 <--x 30
+ 36 --- 47
+ 36 --- 54
+ 36 <--x 30
+ 37 --- 48
+ 37 --- 55
+ 37 <--x 30
+ 38 --- 49
+ 38 --- 56
+ 38 <--x 30
+ 39 --- 50
+ 39 --- 57
+ 39 <--x 30
40 --- 51
- 40 --- 59
- 40 --- 60
+ 40 --- 58
+ 40 <--x 30
41 --- 52
- 41 --- 61
- 41 --- 62
+ 41 --- 59
+ 41 <--x 30
42 --- 53
- 42 --- 63
- 42 --- 64
- 43 --- 54
- 43 --- 65
- 43 --- 66
- 44 --- 55
- 44 --- 67
- 44 --- 68
+ 42 --- 60
+ 42 <--x 30
+ 45 --- 46
+ 45 --- 47
+ 45 --- 48
+ 45 --- 49
+ 45 --- 50
+ 45 --- 51
+ 45 --- 52
+ 45 --- 53
+ 45 --- 54
+ 45 --- 55
45 --- 56
- 45 --- 69
- 45 --- 70
- 46 --- 57
- 46 --- 71
- 46 --- 72
- 47 --- 58
- 47 --- 73
- 47 --- 74
- 50 --- 51
- 50 --- 52
- 50 --- 53
- 50 --- 54
- 50 --- 55
- 50 --- 56
- 50 --- 57
- 50 --- 58
- 50 --- 59
- 50 --- 60
- 50 --- 61
- 50 --- 62
- 50 --- 63
- 50 --- 64
- 50 --- 65
- 50 --- 66
- 50 --- 67
- 50 --- 68
- 50 --- 69
- 50 --- 70
- 50 --- 71
- 50 --- 72
- 50 --- 73
- 50 --- 74
- 78 --- 79
- 78 --- 80
- 78 --- 81
- 78 --- 82
- 78 --- 83
- 78 --- 84
- 78 --- 85
- 78 --- 86
- 78 ---- 87
- 79 --- 88
- 79 --- 97
- 79 --- 98
- 80 --- 89
- 80 --- 99
- 80 --- 100
- 81 --- 90
- 81 --- 101
- 81 --- 102
- 82 --- 91
- 82 --- 103
- 82 --- 104
- 83 --- 92
- 83 --- 105
- 83 --- 106
- 84 --- 93
- 84 --- 107
- 84 --- 108
- 85 --- 94
- 85 --- 109
- 85 --- 110
- 86 --- 95
- 86 --- 111
- 86 --- 112
- 87 --- 88
- 87 --- 89
- 87 --- 90
- 87 --- 91
- 87 --- 92
- 87 --- 93
- 87 --- 94
- 87 --- 95
- 87 --- 96
- 87 --- 97
- 87 --- 98
- 87 --- 99
- 87 --- 100
- 87 --- 101
- 87 --- 102
- 87 --- 103
- 87 --- 104
- 87 --- 105
- 87 --- 106
- 87 --- 107
- 87 --- 108
- 87 --- 109
- 87 --- 110
- 87 --- 111
- 87 --- 112
- 96 --- 113
- 96 --- 120
- 96 --- 127
- 96 --- 130
- 96 --- 133
- 96 --- 136
- 96 --- 139
- 113 --- 114
- 113 ---- 116
- 113 --- 115
- 114 --- 117
- 114 --- 118
- 114 --- 119
- 116 --- 117
- 116 --- 118
- 116 --- 119
- 120 --- 121
- 120 --- 122
- 120 --- 123
- 120 --- 124
- 120 --- 125
- 120 ---- 142
- 120 --- 126
- 121 --- 143
- 121 --- 149
- 121 --- 150
- 122 --- 144
- 122 --- 151
- 122 --- 152
- 123 --- 145
- 123 --- 153
- 123 --- 154
- 124 --- 146
- 124 --- 155
- 124 --- 156
+ 45 --- 57
+ 45 --- 58
+ 45 --- 59
+ 45 --- 60
+ 54 <--x 47
+ 54 <--x 29
+ 55 <--x 48
+ 55 <--x 29
+ 56 <--x 49
+ 56 <--x 29
+ 57 <--x 50
+ 57 <--x 29
+ 58 <--x 51
+ 58 <--x 29
+ 59 <--x 52
+ 59 <--x 29
+ 60 <--x 53
+ 60 <--x 29
+ 64 --- 65
+ 64 --- 66
+ 64 --- 67
+ 64 --- 68
+ 64 --- 69
+ 64 --- 70
+ 64 --- 71
+ 64 --- 72
+ 64 ---- 73
+ 65 --- 74
+ 65 <--x 30
+ 66 --- 75
+ 66 --- 83
+ 66 <--x 30
+ 67 --- 76
+ 67 --- 84
+ 67 <--x 30
+ 68 --- 77
+ 68 --- 85
+ 68 <--x 30
+ 69 --- 78
+ 69 --- 86
+ 69 <--x 30
+ 70 --- 79
+ 70 --- 87
+ 70 <--x 30
+ 71 --- 80
+ 71 --- 88
+ 71 <--x 30
+ 72 --- 81
+ 72 --- 89
+ 72 <--x 30
+ 73 --- 74
+ 73 --- 75
+ 73 --- 76
+ 73 --- 77
+ 73 --- 78
+ 73 --- 79
+ 73 --- 80
+ 73 --- 81
+ 73 --- 82
+ 73 --- 83
+ 73 --- 84
+ 73 --- 85
+ 73 --- 86
+ 73 --- 87
+ 73 --- 88
+ 73 --- 89
+ 82 --- 90
+ 82 --- 95
+ 82 --- 102
+ 82 --- 105
+ 82 --- 108
+ 82 --- 111
+ 82 --- 114
+ 83 <--x 75
+ 83 <--x 82
+ 84 <--x 76
+ 84 <--x 82
+ 85 <--x 77
+ 85 <--x 82
+ 86 <--x 78
+ 86 <--x 82
+ 87 <--x 79
+ 87 <--x 82
+ 88 <--x 80
+ 88 <--x 82
+ 89 <--x 81
+ 89 <--x 82
+ 90 --- 91
+ 90 ---- 93
+ 90 --- 92
+ 91 --- 94
+ 91 <--x 82
+ 93 --- 94
+ 95 --- 96
+ 95 --- 97
+ 95 --- 98
+ 95 --- 99
+ 95 --- 100
+ 95 ---- 117
+ 95 --- 101
+ 96 --- 118
+ 96 x--> 122
+ 97 --- 119
+ 97 --- 124
+ 97 x--> 122
+ 98 --- 120
+ 98 --- 125
+ 98 x--> 122
+ 99 --- 121
+ 99 --- 126
+ 99 x--> 122
+ 102 --- 103
+ 102 --- 104
+ 105 --- 106
+ 105 --- 107
+ 108 --- 109
+ 108 --- 110
+ 111 --- 112
+ 111 --- 113
+ 114 --- 115
+ 114 --- 116
+ 117 --- 118
+ 117 --- 119
+ 117 --- 120
+ 117 --- 121
+ 117 --- 122
+ 117 --- 123
+ 117 --- 124
+ 117 --- 125
+ 117 --- 126
+ 124 <--x 119
+ 124 <--x 123
+ 125 <--x 120
+ 125 <--x 123
+ 126 <--x 121
+ 126 <--x 123
127 --- 128
+ 127 ---- 130
127 --- 129
+ 128 --- 131
+ 128 <--x 30
130 --- 131
130 --- 132
+ 132 --- 133
133 --- 134
+ 133 ---- 136
133 --- 135
+ 134 --- 137
+ 134 <--x 132
136 --- 137
- 136 --- 138
- 139 --- 140
- 139 --- 141
- 142 --- 143
- 142 --- 144
- 142 --- 145
- 142 --- 146
- 142 --- 147
- 142 --- 148
- 142 --- 149
- 142 --- 150
- 142 --- 151
- 142 --- 152
- 142 --- 153
- 142 --- 154
- 142 --- 155
- 142 --- 156
+ 138 <--x 139
+ 147 --- 148
+ 148 --- 149
+ 148 ---- 151
+ 148 --- 150
+ 149 --- 152
+ 149 --- 155
+ 149 --- 165
+ 149 x--> 153
+ 151 --- 152
+ 151 --- 153
+ 151 --- 154
+ 151 --- 155
+ 156 --- 157
157 --- 158
157 ---- 160
157 --- 159
158 --- 161
- 158 --- 163
- 158 --- 164
+ 158 x--> 162
160 --- 161
160 --- 162
160 --- 163
- 160 --- 164
- 162 --- 165
- 165 --- 166
- 165 ---- 168
- 165 --- 167
- 166 --- 169
- 166 --- 170
- 166 --- 171
- 168 --- 169
- 168 --- 170
- 168 --- 171
- 32 <--x 172
- 34 <--x 173
- 36 <--x 174
- 38 <--x 175
- 150 <--x 176
- 152 <--x 177
- 154 <--x 178
- 156 <--x 179
- 180 --- 181
- 181 --- 182
- 181 ---- 184
- 181 --- 183
+ 155 <--x 164
+ 166 --- 167
+ 167 --- 168
+ 167 --- 169
+ 167 --- 170
+ 167 --- 171
+ 167 --- 172
+ 167 --- 173
+ 167 --- 174
+ 167 --- 175
+ 167 --- 176
+ 167 --- 177
+ 167 --- 178
+ 167 --- 179
+ 167 --- 180
+ 167 ---- 182
+ 167 --- 181
+ 168 --- 183
+ 169 --- 184
+ 170 --- 185
+ 171 --- 186
+ 172 --- 187
+ 173 --- 188
+ 174 --- 189
+ 175 --- 190
+ 176 --- 191
+ 177 --- 192
+ 178 --- 193
+ 179 --- 194
+ 182 --- 183
+ 182 --- 184
182 --- 185
+ 182 --- 186
+ 182 --- 187
182 --- 188
182 --- 189
- 182 --- 201
- 184 --- 185
- 184 --- 186
- 184 --- 187
- 184 --- 188
- 184 --- 189
- 190 --- 191
- 191 --- 192
- 191 ---- 194
- 191 --- 193
- 192 --- 195
- 192 --- 198
- 192 --- 199
- 194 --- 195
- 194 --- 196
- 194 --- 197
- 194 --- 198
- 194 --- 199
- 188 <--x 200
- 202 --- 203
+ 182 --- 190
+ 182 --- 191
+ 182 --- 192
+ 182 --- 193
+ 182 --- 194
+ 182 <--x 169
+ 182 <--x 170
+ 182 <--x 171
+ 182 <--x 172
+ 182 <--x 173
+ 182 <--x 174
+ 182 <--x 175
+ 182 <--x 176
+ 182 <--x 177
+ 182 <--x 178
+ 182 <--x 179
+ 195 --- 196
+ 196 --- 197
+ 196 --- 198
+ 196 --- 199
+ 196 --- 200
+ 196 --- 201
+ 196 ---- 219
+ 196 --- 202
+ 197 --- 220
+ 197 x--> 224
+ 198 --- 221
+ 198 --- 214
+ 198 x--> 224
+ 199 --- 222
+ 199 --- 215
+ 199 x--> 224
+ 200 --- 223
+ 200 --- 216
+ 200 x--> 224
203 --- 204
- 203 --- 205
- 203 --- 206
- 203 --- 207
- 203 --- 208
- 203 --- 209
- 203 --- 210
- 203 --- 211
- 203 --- 212
- 203 --- 213
- 203 --- 214
- 203 --- 215
- 203 --- 216
- 203 ---- 218
- 203 --- 217
- 204 --- 219
- 204 x--> 231
- 205 --- 220
- 205 --- 231
- 206 --- 221
- 206 --- 232
- 207 --- 222
- 207 --- 233
- 208 --- 223
- 208 --- 234
- 209 --- 224
- 209 --- 235
- 210 --- 225
- 210 --- 236
- 211 --- 226
- 211 --- 237
- 212 --- 227
- 212 --- 238
- 213 --- 228
- 213 --- 239
- 214 --- 229
- 214 --- 240
- 215 --- 230
- 215 --- 241
- 218 --- 219
- 218 --- 220
- 218 --- 221
- 218 --- 222
- 218 --- 223
- 218 --- 224
- 218 --- 225
- 218 --- 226
- 218 --- 227
- 218 --- 228
- 218 --- 229
- 218 --- 230
- 218 <--x 204
- 218 --- 231
- 218 <--x 205
- 218 <--x 206
- 218 --- 232
- 218 <--x 207
- 218 --- 233
- 218 <--x 208
- 218 --- 234
- 218 <--x 209
- 218 --- 235
- 218 <--x 210
- 218 --- 236
- 218 <--x 211
- 218 --- 237
- 218 <--x 212
- 218 --- 238
- 218 <--x 213
- 218 --- 239
- 218 <--x 214
- 218 --- 240
- 218 <--x 215
- 218 --- 241
- 242 --- 243
- 243 --- 244
- 243 --- 245
- 243 --- 246
- 243 --- 247
- 243 --- 248
- 243 ---- 266
- 243 --- 249
- 244 --- 267
- 244 --- 260
- 244 --- 273
- 245 --- 268
- 245 --- 261
- 245 --- 274
- 246 --- 269
- 246 --- 262
- 246 --- 275
- 247 --- 270
- 247 --- 263
- 247 --- 276
- 250 --- 251
- 251 --- 252
- 251 --- 253
- 251 --- 254
- 251 --- 255
- 251 --- 256
- 251 x---> 266
- 251 --- 257
- 258 --- 259
- 259 x--> 260
- 259 x--> 261
- 259 x--> 262
- 259 x--> 263
- 259 --- 264
- 259 x---> 266
- 259 --- 265
- 266 --- 260
- 266 --- 261
- 266 --- 262
- 266 --- 263
- 266 --- 267
- 266 --- 268
- 266 --- 269
- 266 --- 270
- 266 --- 271
- 266 --- 272
- 266 --- 273
- 266 --- 274
- 266 --- 275
- 266 --- 276
- 30 <--x 277
- 30 <--x 278
- 96 <--x 279
- 96 <--x 280
- 30 <--x 281
- 162 <--x 282
- 180 <--x 283
- 190 <--x 284
- 242 <--x 285
- 250 <--x 286
- 258 <--x 287
+ 204 --- 205
+ 204 --- 206
+ 204 --- 207
+ 204 --- 208
+ 204 --- 209
+ 204 x---> 219
+ 204 --- 210
+ 211 --- 212
+ 212 --- 213
+ 212 x--> 214
+ 212 x--> 215
+ 212 x--> 216
+ 212 --- 217
+ 212 x---> 219
+ 212 --- 218
+ 213 x--> 220
+ 213 x--> 225
+ 219 --- 214
+ 214 x--> 221
+ 214 x--> 225
+ 219 --- 215
+ 215 x--> 222
+ 215 x--> 225
+ 219 --- 216
+ 216 x--> 223
+ 216 x--> 225
+ 219 --- 220
+ 219 --- 221
+ 219 --- 222
+ 219 --- 223
+ 219 --- 224
+ 219 --- 225
+ 30 <--x 226
+ 30 <--x 227
+ 82 <--x 228
+ 82 <--x 229
+ 30 <--x 230
+ 132 <--x 231
+ 147 <--x 232
+ 156 <--x 233
+ 195 <--x 234
+ 203 <--x 235
+ 211 <--x 236
```
diff --git a/rust/kcl-lib/tests/kcl_samples/ball-bearing/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/ball-bearing/artifact_commands.snap
index 78e5bde4e..906dd2e7d 100644
--- a/rust/kcl-lib/tests/kcl_samples/ball-bearing/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/ball-bearing/artifact_commands.snap
@@ -309,6 +309,33 @@ description: Artifact commands ball-bearing.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -329,6 +356,33 @@ description: Artifact commands ball-bearing.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -492,6 +546,33 @@ description: Artifact commands ball-bearing.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -512,6 +593,33 @@ description: Artifact commands ball-bearing.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -734,20 +842,27 @@ description: Artifact commands ball-bearing.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -770,6 +885,33 @@ description: Artifact commands ball-bearing.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -790,6 +932,80 @@ description: Artifact commands ball-bearing.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -974,6 +1190,33 @@ description: Artifact commands ball-bearing.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1275,6 +1518,33 @@ description: Artifact commands ball-bearing.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1295,6 +1565,33 @@ description: Artifact commands ball-bearing.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/ball-bearing/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/ball-bearing/artifact_graph_flowchart.snap.md
index 2925dd71a..81f6200f8 100644
--- a/rust/kcl-lib/tests/kcl_samples/ball-bearing/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/ball-bearing/artifact_graph_flowchart.snap.md
@@ -10,156 +10,123 @@ flowchart LR
6["Segment
[737, 783, 0]"]
7[Solid2d]
end
- subgraph path15 [Path]
- 15["Path
[970, 1026, 0]"]
- 16["Segment
[1032, 1091, 0]"]
- 17["Segment
[1097, 1104, 0]"]
- 18[Solid2d]
+ subgraph path13 [Path]
+ 13["Path
[970, 1026, 0]"]
+ 14["Segment
[1032, 1091, 0]"]
+ 15["Segment
[1097, 1104, 0]"]
+ 16[Solid2d]
end
- subgraph path24 [Path]
- 24["Path
[1474, 1607, 0]"]
- 25["Segment
[1613, 1673, 0]"]
- 26["Segment
[1679, 1710, 0]"]
- 27["Segment
[1716, 1744, 0]"]
- 28["Segment
[1750, 1757, 0]"]
- 29[Solid2d]
+ subgraph path21 [Path]
+ 21["Path
[1474, 1607, 0]"]
+ 22["Segment
[1613, 1673, 0]"]
+ 23["Segment
[1679, 1710, 0]"]
+ 24["Segment
[1716, 1744, 0]"]
+ 25["Segment
[1750, 1757, 0]"]
+ 26[Solid2d]
end
- subgraph path40 [Path]
- 40["Path
[2091, 2233, 0]"]
- 41["Segment
[2091, 2233, 0]"]
- 42[Solid2d]
+ subgraph path33 [Path]
+ 33["Path
[2091, 2233, 0]"]
+ 34["Segment
[2091, 2233, 0]"]
+ 35[Solid2d]
end
- subgraph path50 [Path]
- 50["Path
[2627, 2680, 0]"]
- 51["Segment
[2627, 2680, 0]"]
- 52[Solid2d]
+ subgraph path41 [Path]
+ 41["Path
[2627, 2680, 0]"]
+ 42["Segment
[2627, 2680, 0]"]
+ 43[Solid2d]
end
- subgraph path53 [Path]
- 53["Path
[2691, 2765, 0]"]
- 54["Segment
[2691, 2765, 0]"]
- 55[Solid2d]
+ subgraph path44 [Path]
+ 44["Path
[2691, 2765, 0]"]
+ 45["Segment
[2691, 2765, 0]"]
+ 46[Solid2d]
end
1["Plane
[610, 657, 0]"]
8["Sweep Extrusion
[838, 890, 0]"]
9[Wall]
10["Cap Start"]
11["Cap End"]
- 12["SweepEdge Opposite"]
- 13["SweepEdge Adjacent"]
- 14["Plane
[947, 964, 0]"]
- 19["Sweep Revolve
[1186, 1216, 0]"]
- 20[Wall]
- 21[Wall]
- 22["SweepEdge Adjacent"]
- 23["Plane
[1451, 1468, 0]"]
- 30["Sweep Revolve
[1799, 1829, 0]"]
+ 12["Plane
[947, 964, 0]"]
+ 17["Sweep Revolve
[1186, 1216, 0]"]
+ 18[Wall]
+ 19[Wall]
+ 20["Plane
[1451, 1468, 0]"]
+ 27["Sweep Revolve
[1799, 1829, 0]"]
+ 28[Wall]
+ 29[Wall]
+ 30[Wall]
31[Wall]
- 32[Wall]
- 33[Wall]
- 34[Wall]
- 35["SweepEdge Adjacent"]
- 36["SweepEdge Adjacent"]
- 37["SweepEdge Adjacent"]
- 38["SweepEdge Adjacent"]
- 39["Plane
[2068, 2085, 0]"]
- 43["Sweep Revolve
[2276, 2327, 0]"]
- 44[Wall]
- 45["Cap Start"]
- 46["Cap End"]
- 47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
- 49["Plane
[2573, 2620, 0]"]
- 56["Sweep Extrusion
[2785, 2838, 0]"]
- 57[Wall]
- 58["Cap Start"]
- 59["Cap End"]
- 60["SweepEdge Opposite"]
- 61["SweepEdge Adjacent"]
- 62["StartSketchOnPlane
[596, 658, 0]"]
- 63["StartSketchOnPlane
[2559, 2621, 0]"]
+ 32["Plane
[2068, 2085, 0]"]
+ 36["Sweep Revolve
[2276, 2327, 0]"]
+ 37[Wall]
+ 38["Cap Start"]
+ 39["Cap End"]
+ 40["Plane
[2573, 2620, 0]"]
+ 47["Sweep Extrusion
[2785, 2838, 0]"]
+ 48[Wall]
+ 49["Cap Start"]
+ 50["Cap End"]
+ 51["StartSketchOnPlane
[596, 658, 0]"]
+ 52["StartSketchOnPlane
[2559, 2621, 0]"]
1 --- 2
1 --- 5
2 --- 3
2 ---- 8
2 --- 4
3 --- 9
- 3 --- 12
- 3 --- 13
+ 3 x--> 10
5 --- 6
5 --- 7
8 --- 9
8 --- 10
8 --- 11
- 8 --- 12
- 8 --- 13
- 14 --- 15
- 15 --- 16
- 15 --- 17
- 15 ---- 19
- 15 --- 18
- 16 --- 20
- 16 x--> 22
- 17 --- 21
- 17 --- 22
- 19 --- 20
- 19 --- 21
- 19 <--x 16
- 19 --- 22
- 19 <--x 17
- 23 --- 24
- 24 --- 25
- 24 --- 26
- 24 --- 27
- 24 --- 28
- 24 ---- 30
- 24 --- 29
+ 12 --- 13
+ 13 --- 14
+ 13 --- 15
+ 13 ---- 17
+ 13 --- 16
+ 14 --- 18
+ 15 --- 19
+ 17 --- 18
+ 17 --- 19
+ 17 <--x 15
+ 20 --- 21
+ 21 --- 22
+ 21 --- 23
+ 21 --- 24
+ 21 --- 25
+ 21 ---- 27
+ 21 --- 26
+ 22 --- 28
+ 23 --- 29
+ 24 --- 30
25 --- 31
- 25 --- 35
- 26 --- 32
- 26 --- 36
- 27 --- 33
- 27 --- 37
- 28 --- 34
- 28 --- 38
- 30 --- 31
- 30 --- 32
- 30 --- 33
- 30 --- 34
- 30 <--x 25
- 30 --- 35
- 30 <--x 26
- 30 --- 36
- 30 <--x 27
- 30 --- 37
- 30 <--x 28
- 30 --- 38
- 39 --- 40
+ 27 --- 28
+ 27 --- 29
+ 27 --- 30
+ 27 --- 31
+ 27 <--x 23
+ 27 <--x 24
+ 27 <--x 25
+ 32 --- 33
+ 33 --- 34
+ 33 ---- 36
+ 33 --- 35
+ 34 --- 37
+ 34 x--> 38
+ 36 --- 37
+ 36 --- 38
+ 36 --- 39
40 --- 41
- 40 ---- 43
- 40 --- 42
- 41 --- 44
- 41 --- 47
- 41 --- 48
- 43 --- 44
- 43 --- 45
- 43 --- 46
- 43 --- 47
- 43 --- 48
- 49 --- 50
- 49 --- 53
- 50 --- 51
- 50 ---- 56
- 50 --- 52
- 51 --- 57
- 51 --- 60
- 51 --- 61
- 53 --- 54
- 53 --- 55
- 56 --- 57
- 56 --- 58
- 56 --- 59
- 56 --- 60
- 56 --- 61
- 1 <--x 62
- 49 <--x 63
+ 40 --- 44
+ 41 --- 42
+ 41 ---- 47
+ 41 --- 43
+ 42 --- 48
+ 42 x--> 49
+ 44 --- 45
+ 44 --- 46
+ 47 --- 48
+ 47 --- 49
+ 47 --- 50
+ 1 <--x 51
+ 40 <--x 52
```
diff --git a/rust/kcl-lib/tests/kcl_samples/bench/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/bench/artifact_commands.snap
index 228f1f393..af50056b7 100644
--- a/rust/kcl-lib/tests/kcl_samples/bench/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/bench/artifact_commands.snap
@@ -715,20 +715,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -755,20 +762,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -795,20 +809,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -835,20 +856,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -875,20 +903,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -915,20 +950,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -955,20 +997,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -995,20 +1044,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1035,20 +1091,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1071,6 +1134,33 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1091,6 +1181,456 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1582,20 +2122,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1622,20 +2169,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1662,20 +2216,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1702,20 +2263,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1742,20 +2310,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1782,20 +2357,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1822,20 +2404,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1862,20 +2451,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1902,20 +2498,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1938,6 +2541,33 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1958,6 +2588,456 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2450,20 +3530,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2490,20 +3577,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2530,20 +3624,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2570,20 +3671,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2610,20 +3718,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2650,20 +3765,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2690,20 +3812,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2730,20 +3859,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2770,20 +3906,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2806,6 +3949,33 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2826,6 +3996,456 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3292,20 +4912,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3332,20 +4959,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3372,20 +5006,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3412,20 +5053,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3452,20 +5100,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3492,20 +5147,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3532,20 +5194,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3572,20 +5241,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3612,20 +5288,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3648,6 +5331,33 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3668,6 +5378,456 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4160,20 +6320,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4200,20 +6367,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4240,20 +6414,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4280,20 +6461,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4320,20 +6508,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4360,20 +6555,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4400,20 +6602,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4440,20 +6649,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4480,20 +6696,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4516,6 +6739,33 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4536,6 +6786,456 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5002,20 +7702,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5042,20 +7749,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5082,20 +7796,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5122,20 +7843,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5162,20 +7890,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5202,20 +7937,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5242,20 +7984,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5282,20 +8031,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5322,20 +8078,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5358,6 +8121,33 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5378,6 +8168,456 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5675,20 +8915,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5715,20 +8962,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5751,6 +9005,33 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5771,6 +9052,127 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6042,20 +9444,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6082,20 +9491,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6118,6 +9534,33 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6138,6 +9581,127 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6435,20 +9999,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6475,20 +10046,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6511,6 +10089,33 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6531,6 +10136,127 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6606,20 +10332,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6646,20 +10379,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6682,6 +10422,33 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6702,6 +10469,127 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6777,20 +10665,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6817,20 +10712,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6853,6 +10755,33 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6873,6 +10802,127 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7141,20 +11191,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7181,20 +11238,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7217,6 +11281,33 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7237,6 +11328,127 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7312,20 +11524,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7352,20 +11571,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7388,6 +11614,33 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7408,6 +11661,127 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7776,20 +12150,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7816,20 +12197,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7856,20 +12244,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7892,6 +12287,174 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8269,20 +12832,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -8309,20 +12879,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -8349,20 +12926,27 @@ description: Artifact commands bench.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -8385,6 +12969,174 @@ description: Artifact commands bench.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/bench/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/bench/artifact_graph_flowchart.snap.md
index c0691e39f..01812ee90 100644
--- a/rust/kcl-lib/tests/kcl_samples/bench/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/bench/artifact_graph_flowchart.snap.md
@@ -25,212 +25,212 @@ flowchart LR
23["Segment
[1365, 1372, 6]"]
24[Solid2d]
end
- subgraph path89 [Path]
- 89["Path
[361, 394, 6]"]
- 90["Segment
[402, 428, 6]"]
- 91["Segment
[436, 498, 6]"]
- 92["Segment
[506, 568, 6]"]
- 93["Segment
[576, 639, 6]"]
- 94["Segment
[647, 672, 6]"]
- 95["Segment
[680, 700, 6]"]
- 96["Segment
[708, 732, 6]"]
- 97["Segment
[740, 802, 6]"]
- 98["Segment
[810, 835, 6]"]
- 99["Segment
[843, 863, 6]"]
- 100["Segment
[871, 895, 6]"]
- 101["Segment
[903, 964, 6]"]
- 102["Segment
[972, 1033, 6]"]
- 103["Segment
[1041, 1066, 6]"]
- 104["Segment
[1074, 1098, 6]"]
- 105["Segment
[1106, 1168, 6]"]
- 106["Segment
[1176, 1201, 6]"]
- 107["Segment
[1209, 1236, 6]"]
- 108["Segment
[1244, 1305, 6]"]
- 109["Segment
[1313, 1357, 6]"]
- 110["Segment
[1365, 1372, 6]"]
- 111[Solid2d]
+ subgraph path68 [Path]
+ 68["Path
[361, 394, 6]"]
+ 69["Segment
[402, 428, 6]"]
+ 70["Segment
[436, 498, 6]"]
+ 71["Segment
[506, 568, 6]"]
+ 72["Segment
[576, 639, 6]"]
+ 73["Segment
[647, 672, 6]"]
+ 74["Segment
[680, 700, 6]"]
+ 75["Segment
[708, 732, 6]"]
+ 76["Segment
[740, 802, 6]"]
+ 77["Segment
[810, 835, 6]"]
+ 78["Segment
[843, 863, 6]"]
+ 79["Segment
[871, 895, 6]"]
+ 80["Segment
[903, 964, 6]"]
+ 81["Segment
[972, 1033, 6]"]
+ 82["Segment
[1041, 1066, 6]"]
+ 83["Segment
[1074, 1098, 6]"]
+ 84["Segment
[1106, 1168, 6]"]
+ 85["Segment
[1176, 1201, 6]"]
+ 86["Segment
[1209, 1236, 6]"]
+ 87["Segment
[1244, 1305, 6]"]
+ 88["Segment
[1313, 1357, 6]"]
+ 89["Segment
[1365, 1372, 6]"]
+ 90[Solid2d]
end
- subgraph path176 [Path]
- 176["Path
[361, 394, 6]"]
- 177["Segment
[402, 428, 6]"]
- 178["Segment
[436, 498, 6]"]
- 179["Segment
[506, 568, 6]"]
- 180["Segment
[576, 639, 6]"]
- 181["Segment
[647, 672, 6]"]
- 182["Segment
[680, 700, 6]"]
- 183["Segment
[708, 732, 6]"]
- 184["Segment
[740, 802, 6]"]
- 185["Segment
[810, 835, 6]"]
- 186["Segment
[843, 863, 6]"]
- 187["Segment
[871, 895, 6]"]
- 188["Segment
[903, 964, 6]"]
- 189["Segment
[972, 1033, 6]"]
- 190["Segment
[1041, 1066, 6]"]
- 191["Segment
[1074, 1098, 6]"]
- 192["Segment
[1106, 1168, 6]"]
- 193["Segment
[1176, 1201, 6]"]
- 194["Segment
[1209, 1236, 6]"]
- 195["Segment
[1244, 1305, 6]"]
- 196["Segment
[1313, 1357, 6]"]
- 197["Segment
[1365, 1372, 6]"]
- 198[Solid2d]
+ subgraph path134 [Path]
+ 134["Path
[361, 394, 6]"]
+ 135["Segment
[402, 428, 6]"]
+ 136["Segment
[436, 498, 6]"]
+ 137["Segment
[506, 568, 6]"]
+ 138["Segment
[576, 639, 6]"]
+ 139["Segment
[647, 672, 6]"]
+ 140["Segment
[680, 700, 6]"]
+ 141["Segment
[708, 732, 6]"]
+ 142["Segment
[740, 802, 6]"]
+ 143["Segment
[810, 835, 6]"]
+ 144["Segment
[843, 863, 6]"]
+ 145["Segment
[871, 895, 6]"]
+ 146["Segment
[903, 964, 6]"]
+ 147["Segment
[972, 1033, 6]"]
+ 148["Segment
[1041, 1066, 6]"]
+ 149["Segment
[1074, 1098, 6]"]
+ 150["Segment
[1106, 1168, 6]"]
+ 151["Segment
[1176, 1201, 6]"]
+ 152["Segment
[1209, 1236, 6]"]
+ 153["Segment
[1244, 1305, 6]"]
+ 154["Segment
[1313, 1357, 6]"]
+ 155["Segment
[1365, 1372, 6]"]
+ 156[Solid2d]
end
- subgraph path262 [Path]
- 262["Path
[361, 394, 6]"]
- 263["Segment
[402, 428, 6]"]
- 264["Segment
[436, 498, 6]"]
- 265["Segment
[506, 568, 6]"]
- 266["Segment
[576, 639, 6]"]
- 267["Segment
[647, 672, 6]"]
- 268["Segment
[680, 700, 6]"]
- 269["Segment
[708, 732, 6]"]
- 270["Segment
[740, 802, 6]"]
- 271["Segment
[810, 835, 6]"]
- 272["Segment
[843, 863, 6]"]
- 273["Segment
[871, 895, 6]"]
- 274["Segment
[903, 964, 6]"]
- 275["Segment
[972, 1033, 6]"]
- 276["Segment
[1041, 1066, 6]"]
- 277["Segment
[1074, 1098, 6]"]
- 278["Segment
[1106, 1168, 6]"]
- 279["Segment
[1176, 1201, 6]"]
- 280["Segment
[1209, 1236, 6]"]
- 281["Segment
[1244, 1305, 6]"]
- 282["Segment
[1313, 1357, 6]"]
- 283["Segment
[1365, 1372, 6]"]
- 284[Solid2d]
+ subgraph path199 [Path]
+ 199["Path
[361, 394, 6]"]
+ 200["Segment
[402, 428, 6]"]
+ 201["Segment
[436, 498, 6]"]
+ 202["Segment
[506, 568, 6]"]
+ 203["Segment
[576, 639, 6]"]
+ 204["Segment
[647, 672, 6]"]
+ 205["Segment
[680, 700, 6]"]
+ 206["Segment
[708, 732, 6]"]
+ 207["Segment
[740, 802, 6]"]
+ 208["Segment
[810, 835, 6]"]
+ 209["Segment
[843, 863, 6]"]
+ 210["Segment
[871, 895, 6]"]
+ 211["Segment
[903, 964, 6]"]
+ 212["Segment
[972, 1033, 6]"]
+ 213["Segment
[1041, 1066, 6]"]
+ 214["Segment
[1074, 1098, 6]"]
+ 215["Segment
[1106, 1168, 6]"]
+ 216["Segment
[1176, 1201, 6]"]
+ 217["Segment
[1209, 1236, 6]"]
+ 218["Segment
[1244, 1305, 6]"]
+ 219["Segment
[1313, 1357, 6]"]
+ 220["Segment
[1365, 1372, 6]"]
+ 221[Solid2d]
end
- subgraph path349 [Path]
- 349["Path
[361, 394, 6]"]
- 350["Segment
[402, 428, 6]"]
- 351["Segment
[436, 498, 6]"]
- 352["Segment
[506, 568, 6]"]
- 353["Segment
[576, 639, 6]"]
- 354["Segment
[647, 672, 6]"]
- 355["Segment
[680, 700, 6]"]
- 356["Segment
[708, 732, 6]"]
- 357["Segment
[740, 802, 6]"]
- 358["Segment
[810, 835, 6]"]
- 359["Segment
[843, 863, 6]"]
- 360["Segment
[871, 895, 6]"]
- 361["Segment
[903, 964, 6]"]
- 362["Segment
[972, 1033, 6]"]
- 363["Segment
[1041, 1066, 6]"]
- 364["Segment
[1074, 1098, 6]"]
- 365["Segment
[1106, 1168, 6]"]
- 366["Segment
[1176, 1201, 6]"]
- 367["Segment
[1209, 1236, 6]"]
- 368["Segment
[1244, 1305, 6]"]
- 369["Segment
[1313, 1357, 6]"]
- 370["Segment
[1365, 1372, 6]"]
- 371[Solid2d]
+ subgraph path265 [Path]
+ 265["Path
[361, 394, 6]"]
+ 266["Segment
[402, 428, 6]"]
+ 267["Segment
[436, 498, 6]"]
+ 268["Segment
[506, 568, 6]"]
+ 269["Segment
[576, 639, 6]"]
+ 270["Segment
[647, 672, 6]"]
+ 271["Segment
[680, 700, 6]"]
+ 272["Segment
[708, 732, 6]"]
+ 273["Segment
[740, 802, 6]"]
+ 274["Segment
[810, 835, 6]"]
+ 275["Segment
[843, 863, 6]"]
+ 276["Segment
[871, 895, 6]"]
+ 277["Segment
[903, 964, 6]"]
+ 278["Segment
[972, 1033, 6]"]
+ 279["Segment
[1041, 1066, 6]"]
+ 280["Segment
[1074, 1098, 6]"]
+ 281["Segment
[1106, 1168, 6]"]
+ 282["Segment
[1176, 1201, 6]"]
+ 283["Segment
[1209, 1236, 6]"]
+ 284["Segment
[1244, 1305, 6]"]
+ 285["Segment
[1313, 1357, 6]"]
+ 286["Segment
[1365, 1372, 6]"]
+ 287[Solid2d]
end
- subgraph path435 [Path]
- 435["Path
[361, 394, 6]"]
- 436["Segment
[402, 428, 6]"]
- 437["Segment
[436, 498, 6]"]
- 438["Segment
[506, 568, 6]"]
- 439["Segment
[576, 639, 6]"]
- 440["Segment
[647, 672, 6]"]
- 441["Segment
[680, 700, 6]"]
- 442["Segment
[708, 732, 6]"]
- 443["Segment
[740, 802, 6]"]
- 444["Segment
[810, 835, 6]"]
- 445["Segment
[843, 863, 6]"]
- 446["Segment
[871, 895, 6]"]
- 447["Segment
[903, 964, 6]"]
- 448["Segment
[972, 1033, 6]"]
- 449["Segment
[1041, 1066, 6]"]
- 450["Segment
[1074, 1098, 6]"]
- 451["Segment
[1106, 1168, 6]"]
- 452["Segment
[1176, 1201, 6]"]
- 453["Segment
[1209, 1236, 6]"]
- 454["Segment
[1244, 1305, 6]"]
- 455["Segment
[1313, 1357, 6]"]
- 456["Segment
[1365, 1372, 6]"]
- 457[Solid2d]
+ subgraph path330 [Path]
+ 330["Path
[361, 394, 6]"]
+ 331["Segment
[402, 428, 6]"]
+ 332["Segment
[436, 498, 6]"]
+ 333["Segment
[506, 568, 6]"]
+ 334["Segment
[576, 639, 6]"]
+ 335["Segment
[647, 672, 6]"]
+ 336["Segment
[680, 700, 6]"]
+ 337["Segment
[708, 732, 6]"]
+ 338["Segment
[740, 802, 6]"]
+ 339["Segment
[810, 835, 6]"]
+ 340["Segment
[843, 863, 6]"]
+ 341["Segment
[871, 895, 6]"]
+ 342["Segment
[903, 964, 6]"]
+ 343["Segment
[972, 1033, 6]"]
+ 344["Segment
[1041, 1066, 6]"]
+ 345["Segment
[1074, 1098, 6]"]
+ 346["Segment
[1106, 1168, 6]"]
+ 347["Segment
[1176, 1201, 6]"]
+ 348["Segment
[1209, 1236, 6]"]
+ 349["Segment
[1244, 1305, 6]"]
+ 350["Segment
[1313, 1357, 6]"]
+ 351["Segment
[1365, 1372, 6]"]
+ 352[Solid2d]
end
- subgraph path522 [Path]
- 522["Path
[1762, 1786, 6]"]
+ subgraph path396 [Path]
+ 396["Path
[1762, 1786, 6]"]
end
- subgraph path523 [Path]
- 523["Path
[1794, 1920, 6]"]
- 524["Segment
[1794, 1920, 6]"]
- 525["Segment
[1794, 1920, 6]"]
- 526["Segment
[1794, 1920, 6]"]
- 527["Segment
[1794, 1920, 6]"]
- 528["Segment
[1794, 1920, 6]"]
- 529["Segment
[1794, 1920, 6]"]
- 530["Segment
[1794, 1920, 6]"]
- 531[Solid2d]
+ subgraph path397 [Path]
+ 397["Path
[1794, 1920, 6]"]
+ 398["Segment
[1794, 1920, 6]"]
+ 399["Segment
[1794, 1920, 6]"]
+ 400["Segment
[1794, 1920, 6]"]
+ 401["Segment
[1794, 1920, 6]"]
+ 402["Segment
[1794, 1920, 6]"]
+ 403["Segment
[1794, 1920, 6]"]
+ 404["Segment
[1794, 1920, 6]"]
+ 405[Solid2d]
end
- subgraph path553 [Path]
- 553["Path
[1762, 1786, 6]"]
+ subgraph path420 [Path]
+ 420["Path
[1762, 1786, 6]"]
end
- subgraph path554 [Path]
- 554["Path
[1794, 1920, 6]"]
- 555["Segment
[1794, 1920, 6]"]
- 556["Segment
[1794, 1920, 6]"]
- 557["Segment
[1794, 1920, 6]"]
- 558["Segment
[1794, 1920, 6]"]
- 559["Segment
[1794, 1920, 6]"]
- 560["Segment
[1794, 1920, 6]"]
- 561["Segment
[1794, 1920, 6]"]
- 562[Solid2d]
+ subgraph path421 [Path]
+ 421["Path
[1794, 1920, 6]"]
+ 422["Segment
[1794, 1920, 6]"]
+ 423["Segment
[1794, 1920, 6]"]
+ 424["Segment
[1794, 1920, 6]"]
+ 425["Segment
[1794, 1920, 6]"]
+ 426["Segment
[1794, 1920, 6]"]
+ 427["Segment
[1794, 1920, 6]"]
+ 428["Segment
[1794, 1920, 6]"]
+ 429[Solid2d]
end
- subgraph path585 [Path]
- 585["Path
[2196, 2223, 6]"]
- 586["Segment
[2231, 2253, 6]"]
- 587["Segment
[2261, 2283, 6]"]
- 588["Segment
[2291, 2313, 6]"]
- 589["Segment
[2321, 2344, 6]"]
- 590["Segment
[2352, 2375, 6]"]
- 591["Segment
[2383, 2418, 6]"]
- 592["Segment
[2426, 2433, 6]"]
- 593[Solid2d]
+ subgraph path445 [Path]
+ 445["Path
[2196, 2223, 6]"]
+ 446["Segment
[2231, 2253, 6]"]
+ 447["Segment
[2261, 2283, 6]"]
+ 448["Segment
[2291, 2313, 6]"]
+ 449["Segment
[2321, 2344, 6]"]
+ 450["Segment
[2352, 2375, 6]"]
+ 451["Segment
[2383, 2418, 6]"]
+ 452["Segment
[2426, 2433, 6]"]
+ 453[Solid2d]
end
- subgraph path618 [Path]
- 618["Path
[2705, 2734, 6]"]
- 619["Segment
[2742, 2777, 6]"]
- 620["Segment
[2785, 2810, 6]"]
- 621["Segment
[2818, 2854, 6]"]
- 622["Segment
[2862, 2886, 6]"]
- 623["Segment
[2894, 2928, 6]"]
- 624["Segment
[2936, 2971, 6]"]
- 625["Segment
[2979, 2986, 6]"]
- 626[Solid2d]
+ subgraph path471 [Path]
+ 471["Path
[2705, 2734, 6]"]
+ 472["Segment
[2742, 2777, 6]"]
+ 473["Segment
[2785, 2810, 6]"]
+ 474["Segment
[2818, 2854, 6]"]
+ 475["Segment
[2862, 2886, 6]"]
+ 476["Segment
[2894, 2928, 6]"]
+ 477["Segment
[2936, 2971, 6]"]
+ 478["Segment
[2979, 2986, 6]"]
+ 479[Solid2d]
end
- subgraph path650 [Path]
- 650["Path
[3261, 3288, 6]"]
- 651["Segment
[3296, 3315, 6]"]
- 652["Segment
[3323, 3372, 6]"]
+ subgraph path496 [Path]
+ 496["Path
[3261, 3288, 6]"]
+ 497["Segment
[3296, 3315, 6]"]
+ 498["Segment
[3323, 3372, 6]"]
end
- subgraph path654 [Path]
- 654["Path
[3472, 3505, 6]"]
- 655["Segment
[3513, 3532, 6]"]
- 656["Segment
[3540, 3562, 6]"]
- 657["Segment
[3570, 3593, 6]"]
- 658["Segment
[3601, 3621, 6]"]
- 659["Segment
[3629, 3653, 6]"]
- 660["Segment
[3661, 3684, 6]"]
- 661["Segment
[3692, 3699, 6]"]
- 662[Solid2d]
+ subgraph path500 [Path]
+ 500["Path
[3472, 3505, 6]"]
+ 501["Segment
[3513, 3532, 6]"]
+ 502["Segment
[3540, 3562, 6]"]
+ 503["Segment
[3570, 3593, 6]"]
+ 504["Segment
[3601, 3621, 6]"]
+ 505["Segment
[3629, 3653, 6]"]
+ 506["Segment
[3661, 3684, 6]"]
+ 507["Segment
[3692, 3699, 6]"]
+ 508[Solid2d]
end
- subgraph path688 [Path]
- 688["Path
[3261, 3288, 6]"]
- 689["Segment
[3296, 3315, 6]"]
- 690["Segment
[3323, 3372, 6]"]
+ subgraph path526 [Path]
+ 526["Path
[3261, 3288, 6]"]
+ 527["Segment
[3296, 3315, 6]"]
+ 528["Segment
[3323, 3372, 6]"]
end
- subgraph path692 [Path]
- 692["Path
[3472, 3505, 6]"]
- 693["Segment
[3513, 3532, 6]"]
- 694["Segment
[3540, 3562, 6]"]
- 695["Segment
[3570, 3593, 6]"]
- 696["Segment
[3601, 3621, 6]"]
- 697["Segment
[3629, 3653, 6]"]
- 698["Segment
[3661, 3684, 6]"]
- 699["Segment
[3692, 3699, 6]"]
- 700[Solid2d]
+ subgraph path530 [Path]
+ 530["Path
[3472, 3505, 6]"]
+ 531["Segment
[3513, 3532, 6]"]
+ 532["Segment
[3540, 3562, 6]"]
+ 533["Segment
[3570, 3593, 6]"]
+ 534["Segment
[3601, 3621, 6]"]
+ 535["Segment
[3629, 3653, 6]"]
+ 536["Segment
[3661, 3684, 6]"]
+ 537["Segment
[3692, 3699, 6]"]
+ 538[Solid2d]
end
1["Plane
[333, 353, 6]"]
25["Sweep Extrusion
[1460, 1498, 6]"]
@@ -257,177 +257,154 @@ flowchart LR
46["Cap Start"]
47["Cap End"]
48["SweepEdge Opposite"]
- 49["SweepEdge Adjacent"]
+ 49["SweepEdge Opposite"]
50["SweepEdge Opposite"]
- 51["SweepEdge Adjacent"]
+ 51["SweepEdge Opposite"]
52["SweepEdge Opposite"]
- 53["SweepEdge Adjacent"]
+ 53["SweepEdge Opposite"]
54["SweepEdge Opposite"]
- 55["SweepEdge Adjacent"]
+ 55["SweepEdge Opposite"]
56["SweepEdge Opposite"]
- 57["SweepEdge Adjacent"]
+ 57["SweepEdge Opposite"]
58["SweepEdge Opposite"]
- 59["SweepEdge Adjacent"]
+ 59["SweepEdge Opposite"]
60["SweepEdge Opposite"]
- 61["SweepEdge Adjacent"]
+ 61["SweepEdge Opposite"]
62["SweepEdge Opposite"]
- 63["SweepEdge Adjacent"]
+ 63["SweepEdge Opposite"]
64["SweepEdge Opposite"]
- 65["SweepEdge Adjacent"]
+ 65["SweepEdge Opposite"]
66["SweepEdge Opposite"]
- 67["SweepEdge Adjacent"]
- 68["SweepEdge Opposite"]
- 69["SweepEdge Adjacent"]
- 70["SweepEdge Opposite"]
- 71["SweepEdge Adjacent"]
- 72["SweepEdge Opposite"]
- 73["SweepEdge Adjacent"]
- 74["SweepEdge Opposite"]
- 75["SweepEdge Adjacent"]
- 76["SweepEdge Opposite"]
- 77["SweepEdge Adjacent"]
- 78["SweepEdge Opposite"]
- 79["SweepEdge Adjacent"]
- 80["SweepEdge Opposite"]
- 81["SweepEdge Adjacent"]
- 82["SweepEdge Opposite"]
- 83["SweepEdge Adjacent"]
- 84["SweepEdge Opposite"]
- 85["SweepEdge Adjacent"]
- 86["SweepEdge Opposite"]
- 87["SweepEdge Adjacent"]
- 88["Plane
[333, 353, 6]"]
- 112["Sweep Extrusion
[1536, 1575, 6]"]
- 113[Wall]
- 114[Wall]
- 115[Wall]
- 116[Wall]
- 117[Wall]
- 118[Wall]
- 119[Wall]
- 120[Wall]
- 121[Wall]
- 122[Wall]
- 123[Wall]
- 124[Wall]
- 125[Wall]
- 126[Wall]
- 127[Wall]
- 128[Wall]
- 129[Wall]
- 130[Wall]
- 131[Wall]
- 132[Wall]
- 133["Cap Start"]
- 134["Cap End"]
- 135["SweepEdge Opposite"]
- 136["SweepEdge Adjacent"]
- 137["SweepEdge Opposite"]
- 138["SweepEdge Adjacent"]
- 139["SweepEdge Opposite"]
- 140["SweepEdge Adjacent"]
- 141["SweepEdge Opposite"]
- 142["SweepEdge Adjacent"]
- 143["SweepEdge Opposite"]
- 144["SweepEdge Adjacent"]
- 145["SweepEdge Opposite"]
- 146["SweepEdge Adjacent"]
- 147["SweepEdge Opposite"]
- 148["SweepEdge Adjacent"]
- 149["SweepEdge Opposite"]
- 150["SweepEdge Adjacent"]
- 151["SweepEdge Opposite"]
- 152["SweepEdge Adjacent"]
- 153["SweepEdge Opposite"]
- 154["SweepEdge Adjacent"]
- 155["SweepEdge Opposite"]
- 156["SweepEdge Adjacent"]
- 157["SweepEdge Opposite"]
- 158["SweepEdge Adjacent"]
- 159["SweepEdge Opposite"]
- 160["SweepEdge Adjacent"]
- 161["SweepEdge Opposite"]
- 162["SweepEdge Adjacent"]
- 163["SweepEdge Opposite"]
- 164["SweepEdge Adjacent"]
- 165["SweepEdge Opposite"]
- 166["SweepEdge Adjacent"]
- 167["SweepEdge Opposite"]
- 168["SweepEdge Adjacent"]
- 169["SweepEdge Opposite"]
- 170["SweepEdge Adjacent"]
- 171["SweepEdge Opposite"]
- 172["SweepEdge Adjacent"]
- 173["SweepEdge Opposite"]
- 174["SweepEdge Adjacent"]
- 175["Plane
[823, 864, 0]"]
- 199["Sweep Extrusion
[1460, 1498, 6]"]
- 200[Wall]
- 201[Wall]
- 202[Wall]
- 203[Wall]
- 204[Wall]
- 205[Wall]
- 206[Wall]
- 207[Wall]
- 208[Wall]
- 209[Wall]
- 210[Wall]
- 211[Wall]
- 212[Wall]
- 213[Wall]
- 214[Wall]
- 215[Wall]
- 216[Wall]
- 217[Wall]
- 218[Wall]
- 219[Wall]
- 220["Cap Start"]
- 221["Cap End"]
- 222["SweepEdge Opposite"]
- 223["SweepEdge Adjacent"]
- 224["SweepEdge Opposite"]
- 225["SweepEdge Adjacent"]
- 226["SweepEdge Opposite"]
- 227["SweepEdge Adjacent"]
- 228["SweepEdge Opposite"]
- 229["SweepEdge Adjacent"]
- 230["SweepEdge Opposite"]
- 231["SweepEdge Adjacent"]
- 232["SweepEdge Opposite"]
- 233["SweepEdge Adjacent"]
- 234["SweepEdge Opposite"]
- 235["SweepEdge Adjacent"]
- 236["SweepEdge Opposite"]
- 237["SweepEdge Adjacent"]
- 238["SweepEdge Opposite"]
- 239["SweepEdge Adjacent"]
- 240["SweepEdge Opposite"]
- 241["SweepEdge Adjacent"]
- 242["SweepEdge Opposite"]
- 243["SweepEdge Adjacent"]
- 244["SweepEdge Opposite"]
- 245["SweepEdge Adjacent"]
+ 67["Plane
[333, 353, 6]"]
+ 91["Sweep Extrusion
[1536, 1575, 6]"]
+ 92[Wall]
+ 93[Wall]
+ 94[Wall]
+ 95[Wall]
+ 96[Wall]
+ 97[Wall]
+ 98[Wall]
+ 99[Wall]
+ 100[Wall]
+ 101[Wall]
+ 102[Wall]
+ 103[Wall]
+ 104[Wall]
+ 105[Wall]
+ 106[Wall]
+ 107[Wall]
+ 108[Wall]
+ 109[Wall]
+ 110[Wall]
+ 111[Wall]
+ 112["Cap Start"]
+ 113["Cap End"]
+ 114["SweepEdge Opposite"]
+ 115["SweepEdge Opposite"]
+ 116["SweepEdge Opposite"]
+ 117["SweepEdge Opposite"]
+ 118["SweepEdge Opposite"]
+ 119["SweepEdge Opposite"]
+ 120["SweepEdge Opposite"]
+ 121["SweepEdge Opposite"]
+ 122["SweepEdge Opposite"]
+ 123["SweepEdge Opposite"]
+ 124["SweepEdge Opposite"]
+ 125["SweepEdge Opposite"]
+ 126["SweepEdge Opposite"]
+ 127["SweepEdge Opposite"]
+ 128["SweepEdge Opposite"]
+ 129["SweepEdge Opposite"]
+ 130["SweepEdge Opposite"]
+ 131["SweepEdge Opposite"]
+ 132["SweepEdge Opposite"]
+ 133["Plane
[823, 864, 0]"]
+ 157["Sweep Extrusion
[1460, 1498, 6]"]
+ 158[Wall]
+ 159[Wall]
+ 160[Wall]
+ 161[Wall]
+ 162[Wall]
+ 163[Wall]
+ 164[Wall]
+ 165[Wall]
+ 166[Wall]
+ 167[Wall]
+ 168[Wall]
+ 169[Wall]
+ 170[Wall]
+ 171[Wall]
+ 172[Wall]
+ 173[Wall]
+ 174[Wall]
+ 175[Wall]
+ 176[Wall]
+ 177[Wall]
+ 178["Cap Start"]
+ 179["Cap End"]
+ 180["SweepEdge Opposite"]
+ 181["SweepEdge Opposite"]
+ 182["SweepEdge Opposite"]
+ 183["SweepEdge Opposite"]
+ 184["SweepEdge Opposite"]
+ 185["SweepEdge Opposite"]
+ 186["SweepEdge Opposite"]
+ 187["SweepEdge Opposite"]
+ 188["SweepEdge Opposite"]
+ 189["SweepEdge Opposite"]
+ 190["SweepEdge Opposite"]
+ 191["SweepEdge Opposite"]
+ 192["SweepEdge Opposite"]
+ 193["SweepEdge Opposite"]
+ 194["SweepEdge Opposite"]
+ 195["SweepEdge Opposite"]
+ 196["SweepEdge Opposite"]
+ 197["SweepEdge Opposite"]
+ 198["SweepEdge Opposite"]
+ 222["Sweep Extrusion
[1536, 1575, 6]"]
+ 223[Wall]
+ 224[Wall]
+ 225[Wall]
+ 226[Wall]
+ 227[Wall]
+ 228[Wall]
+ 229[Wall]
+ 230[Wall]
+ 231[Wall]
+ 232[Wall]
+ 233[Wall]
+ 234[Wall]
+ 235[Wall]
+ 236[Wall]
+ 237[Wall]
+ 238[Wall]
+ 239[Wall]
+ 240[Wall]
+ 241[Wall]
+ 242[Wall]
+ 243["Cap Start"]
+ 244["Cap End"]
+ 245["SweepEdge Opposite"]
246["SweepEdge Opposite"]
- 247["SweepEdge Adjacent"]
+ 247["SweepEdge Opposite"]
248["SweepEdge Opposite"]
- 249["SweepEdge Adjacent"]
+ 249["SweepEdge Opposite"]
250["SweepEdge Opposite"]
- 251["SweepEdge Adjacent"]
+ 251["SweepEdge Opposite"]
252["SweepEdge Opposite"]
- 253["SweepEdge Adjacent"]
+ 253["SweepEdge Opposite"]
254["SweepEdge Opposite"]
- 255["SweepEdge Adjacent"]
+ 255["SweepEdge Opposite"]
256["SweepEdge Opposite"]
- 257["SweepEdge Adjacent"]
+ 257["SweepEdge Opposite"]
258["SweepEdge Opposite"]
- 259["SweepEdge Adjacent"]
+ 259["SweepEdge Opposite"]
260["SweepEdge Opposite"]
- 261["SweepEdge Adjacent"]
- 285["Sweep Extrusion
[1536, 1575, 6]"]
- 286[Wall]
- 287[Wall]
- 288[Wall]
+ 261["SweepEdge Opposite"]
+ 262["SweepEdge Opposite"]
+ 263["SweepEdge Opposite"]
+ 264["Plane
[874, 916, 0]"]
+ 288["Sweep Extrusion
[1460, 1498, 6]"]
289[Wall]
290[Wall]
291[Wall]
@@ -445,329 +422,182 @@ flowchart LR
303[Wall]
304[Wall]
305[Wall]
- 306["Cap Start"]
- 307["Cap End"]
- 308["SweepEdge Opposite"]
- 309["SweepEdge Adjacent"]
- 310["SweepEdge Opposite"]
- 311["SweepEdge Adjacent"]
+ 306[Wall]
+ 307[Wall]
+ 308[Wall]
+ 309["Cap Start"]
+ 310["Cap End"]
+ 311["SweepEdge Opposite"]
312["SweepEdge Opposite"]
- 313["SweepEdge Adjacent"]
+ 313["SweepEdge Opposite"]
314["SweepEdge Opposite"]
- 315["SweepEdge Adjacent"]
+ 315["SweepEdge Opposite"]
316["SweepEdge Opposite"]
- 317["SweepEdge Adjacent"]
+ 317["SweepEdge Opposite"]
318["SweepEdge Opposite"]
- 319["SweepEdge Adjacent"]
+ 319["SweepEdge Opposite"]
320["SweepEdge Opposite"]
- 321["SweepEdge Adjacent"]
+ 321["SweepEdge Opposite"]
322["SweepEdge Opposite"]
- 323["SweepEdge Adjacent"]
+ 323["SweepEdge Opposite"]
324["SweepEdge Opposite"]
- 325["SweepEdge Adjacent"]
+ 325["SweepEdge Opposite"]
326["SweepEdge Opposite"]
- 327["SweepEdge Adjacent"]
+ 327["SweepEdge Opposite"]
328["SweepEdge Opposite"]
- 329["SweepEdge Adjacent"]
- 330["SweepEdge Opposite"]
- 331["SweepEdge Adjacent"]
- 332["SweepEdge Opposite"]
- 333["SweepEdge Adjacent"]
- 334["SweepEdge Opposite"]
- 335["SweepEdge Adjacent"]
- 336["SweepEdge Opposite"]
- 337["SweepEdge Adjacent"]
- 338["SweepEdge Opposite"]
- 339["SweepEdge Adjacent"]
- 340["SweepEdge Opposite"]
- 341["SweepEdge Adjacent"]
- 342["SweepEdge Opposite"]
- 343["SweepEdge Adjacent"]
- 344["SweepEdge Opposite"]
- 345["SweepEdge Adjacent"]
- 346["SweepEdge Opposite"]
- 347["SweepEdge Adjacent"]
- 348["Plane
[874, 916, 0]"]
- 372["Sweep Extrusion
[1460, 1498, 6]"]
+ 329["SweepEdge Opposite"]
+ 353["Sweep Extrusion
[1536, 1575, 6]"]
+ 354[Wall]
+ 355[Wall]
+ 356[Wall]
+ 357[Wall]
+ 358[Wall]
+ 359[Wall]
+ 360[Wall]
+ 361[Wall]
+ 362[Wall]
+ 363[Wall]
+ 364[Wall]
+ 365[Wall]
+ 366[Wall]
+ 367[Wall]
+ 368[Wall]
+ 369[Wall]
+ 370[Wall]
+ 371[Wall]
+ 372[Wall]
373[Wall]
- 374[Wall]
- 375[Wall]
- 376[Wall]
- 377[Wall]
- 378[Wall]
- 379[Wall]
- 380[Wall]
- 381[Wall]
- 382[Wall]
- 383[Wall]
- 384[Wall]
- 385[Wall]
- 386[Wall]
- 387[Wall]
- 388[Wall]
- 389[Wall]
- 390[Wall]
- 391[Wall]
- 392[Wall]
- 393["Cap Start"]
- 394["Cap End"]
- 395["SweepEdge Opposite"]
- 396["SweepEdge Adjacent"]
- 397["SweepEdge Opposite"]
- 398["SweepEdge Adjacent"]
- 399["SweepEdge Opposite"]
- 400["SweepEdge Adjacent"]
- 401["SweepEdge Opposite"]
- 402["SweepEdge Adjacent"]
- 403["SweepEdge Opposite"]
- 404["SweepEdge Adjacent"]
- 405["SweepEdge Opposite"]
- 406["SweepEdge Adjacent"]
- 407["SweepEdge Opposite"]
- 408["SweepEdge Adjacent"]
- 409["SweepEdge Opposite"]
- 410["SweepEdge Adjacent"]
- 411["SweepEdge Opposite"]
- 412["SweepEdge Adjacent"]
- 413["SweepEdge Opposite"]
- 414["SweepEdge Adjacent"]
+ 374["Cap Start"]
+ 375["Cap End"]
+ 376["SweepEdge Opposite"]
+ 377["SweepEdge Opposite"]
+ 378["SweepEdge Opposite"]
+ 379["SweepEdge Opposite"]
+ 380["SweepEdge Opposite"]
+ 381["SweepEdge Opposite"]
+ 382["SweepEdge Opposite"]
+ 383["SweepEdge Opposite"]
+ 384["SweepEdge Opposite"]
+ 385["SweepEdge Opposite"]
+ 386["SweepEdge Opposite"]
+ 387["SweepEdge Opposite"]
+ 388["SweepEdge Opposite"]
+ 389["SweepEdge Opposite"]
+ 390["SweepEdge Opposite"]
+ 391["SweepEdge Opposite"]
+ 392["SweepEdge Opposite"]
+ 393["SweepEdge Opposite"]
+ 394["SweepEdge Opposite"]
+ 395["Plane
[975, 1017, 0]"]
+ 406["Sweep Extrusion
[2022, 2046, 6]"]
+ 407[Wall]
+ 408[Wall]
+ 409[Wall]
+ 410[Wall]
+ 411[Wall]
+ 412[Wall]
+ 413["Cap Start"]
+ 414["Cap End"]
415["SweepEdge Opposite"]
- 416["SweepEdge Adjacent"]
+ 416["SweepEdge Opposite"]
417["SweepEdge Opposite"]
- 418["SweepEdge Adjacent"]
+ 418["SweepEdge Opposite"]
419["SweepEdge Opposite"]
- 420["SweepEdge Adjacent"]
- 421["SweepEdge Opposite"]
- 422["SweepEdge Adjacent"]
- 423["SweepEdge Opposite"]
- 424["SweepEdge Adjacent"]
- 425["SweepEdge Opposite"]
- 426["SweepEdge Adjacent"]
- 427["SweepEdge Opposite"]
- 428["SweepEdge Adjacent"]
- 429["SweepEdge Opposite"]
- 430["SweepEdge Adjacent"]
- 431["SweepEdge Opposite"]
- 432["SweepEdge Adjacent"]
- 433["SweepEdge Opposite"]
- 434["SweepEdge Adjacent"]
- 458["Sweep Extrusion
[1536, 1575, 6]"]
+ 430["Sweep Extrusion
[2088, 2112, 6]"]
+ 431[Wall]
+ 432[Wall]
+ 433[Wall]
+ 434[Wall]
+ 435[Wall]
+ 436[Wall]
+ 437["Cap Start"]
+ 438["Cap End"]
+ 439["SweepEdge Opposite"]
+ 440["SweepEdge Opposite"]
+ 441["SweepEdge Opposite"]
+ 442["SweepEdge Opposite"]
+ 443["SweepEdge Opposite"]
+ 444["Plane
[1068, 1135, 0]"]
+ 454["Sweep Extrusion
[2596, 2620, 6]"]
+ 455[Wall]
+ 456[Wall]
+ 457[Wall]
+ 458[Wall]
459[Wall]
460[Wall]
- 461[Wall]
- 462[Wall]
- 463[Wall]
- 464[Wall]
- 465[Wall]
- 466[Wall]
- 467[Wall]
- 468[Wall]
- 469[Wall]
- 470[Wall]
- 471[Wall]
- 472[Wall]
- 473[Wall]
- 474[Wall]
- 475[Wall]
- 476[Wall]
- 477[Wall]
- 478[Wall]
- 479["Cap Start"]
- 480["Cap End"]
- 481["SweepEdge Opposite"]
- 482["SweepEdge Adjacent"]
- 483["SweepEdge Opposite"]
- 484["SweepEdge Adjacent"]
- 485["SweepEdge Opposite"]
- 486["SweepEdge Adjacent"]
- 487["SweepEdge Opposite"]
- 488["SweepEdge Adjacent"]
+ 461["Cap Start"]
+ 462["Cap End"]
+ 463["SweepEdge Opposite"]
+ 464["SweepEdge Opposite"]
+ 465["SweepEdge Opposite"]
+ 466["SweepEdge Opposite"]
+ 467["SweepEdge Opposite"]
+ 468["Sweep Extrusion
[2596, 2620, 6]"]
+ 469["Sweep Extrusion
[2596, 2620, 6]"]
+ 470["Plane
[1205, 1272, 0]"]
+ 480["Sweep Extrusion
[3156, 3180, 6]"]
+ 481[Wall]
+ 482[Wall]
+ 483[Wall]
+ 484[Wall]
+ 485[Wall]
+ 486[Wall]
+ 487["Cap Start"]
+ 488["Cap End"]
489["SweepEdge Opposite"]
- 490["SweepEdge Adjacent"]
+ 490["SweepEdge Opposite"]
491["SweepEdge Opposite"]
- 492["SweepEdge Adjacent"]
+ 492["SweepEdge Opposite"]
493["SweepEdge Opposite"]
- 494["SweepEdge Adjacent"]
- 495["SweepEdge Opposite"]
- 496["SweepEdge Adjacent"]
- 497["SweepEdge Opposite"]
- 498["SweepEdge Adjacent"]
- 499["SweepEdge Opposite"]
- 500["SweepEdge Adjacent"]
- 501["SweepEdge Opposite"]
- 502["SweepEdge Adjacent"]
- 503["SweepEdge Opposite"]
- 504["SweepEdge Adjacent"]
- 505["SweepEdge Opposite"]
- 506["SweepEdge Adjacent"]
- 507["SweepEdge Opposite"]
- 508["SweepEdge Adjacent"]
- 509["SweepEdge Opposite"]
- 510["SweepEdge Adjacent"]
- 511["SweepEdge Opposite"]
- 512["SweepEdge Adjacent"]
- 513["SweepEdge Opposite"]
- 514["SweepEdge Adjacent"]
- 515["SweepEdge Opposite"]
- 516["SweepEdge Adjacent"]
- 517["SweepEdge Opposite"]
- 518["SweepEdge Adjacent"]
+ 494["Sweep Extrusion
[3156, 3180, 6]"]
+ 495["Plane
[3780, 3815, 6]"]
+ 499["Plane
[3846, 3875, 6]"]
+ 509["Sweep Sweep
[3888, 3915, 6]"]
+ 510[Wall]
+ 511[Wall]
+ 512[Wall]
+ 513[Wall]
+ 514[Wall]
+ 515[Wall]
+ 516[Wall]
+ 517["Cap Start"]
+ 518["Cap End"]
519["SweepEdge Opposite"]
- 520["SweepEdge Adjacent"]
- 521["Plane
[975, 1017, 0]"]
- 532["Sweep Extrusion
[2022, 2046, 6]"]
- 533[Wall]
- 534[Wall]
- 535[Wall]
- 536[Wall]
- 537[Wall]
- 538[Wall]
- 539["Cap Start"]
- 540["Cap End"]
- 541["SweepEdge Opposite"]
- 542["SweepEdge Adjacent"]
- 543["SweepEdge Opposite"]
- 544["SweepEdge Adjacent"]
- 545["SweepEdge Opposite"]
- 546["SweepEdge Adjacent"]
- 547["SweepEdge Opposite"]
- 548["SweepEdge Adjacent"]
+ 520["SweepEdge Opposite"]
+ 521["SweepEdge Opposite"]
+ 522["SweepEdge Opposite"]
+ 523["SweepEdge Opposite"]
+ 524["SweepEdge Opposite"]
+ 525["Plane
[3780, 3815, 6]"]
+ 529["Plane
[3846, 3875, 6]"]
+ 539["Sweep Sweep
[3888, 3915, 6]"]
+ 540[Wall]
+ 541[Wall]
+ 542[Wall]
+ 543[Wall]
+ 544[Wall]
+ 545[Wall]
+ 546[Wall]
+ 547["Cap Start"]
+ 548["Cap End"]
549["SweepEdge Opposite"]
- 550["SweepEdge Adjacent"]
+ 550["SweepEdge Opposite"]
551["SweepEdge Opposite"]
- 552["SweepEdge Adjacent"]
- 563["Sweep Extrusion
[2088, 2112, 6]"]
- 564[Wall]
- 565[Wall]
- 566[Wall]
- 567[Wall]
- 568[Wall]
- 569[Wall]
- 570["Cap Start"]
- 571["Cap End"]
- 572["SweepEdge Opposite"]
- 573["SweepEdge Adjacent"]
- 574["SweepEdge Opposite"]
- 575["SweepEdge Adjacent"]
- 576["SweepEdge Opposite"]
- 577["SweepEdge Adjacent"]
- 578["SweepEdge Opposite"]
- 579["SweepEdge Adjacent"]
- 580["SweepEdge Opposite"]
- 581["SweepEdge Adjacent"]
- 582["SweepEdge Opposite"]
- 583["SweepEdge Adjacent"]
- 584["Plane
[1068, 1135, 0]"]
- 594["Sweep Extrusion
[2596, 2620, 6]"]
- 595[Wall]
- 596[Wall]
- 597[Wall]
- 598[Wall]
- 599[Wall]
- 600[Wall]
- 601["Cap Start"]
- 602["Cap End"]
- 603["SweepEdge Opposite"]
- 604["SweepEdge Adjacent"]
- 605["SweepEdge Opposite"]
- 606["SweepEdge Adjacent"]
- 607["SweepEdge Opposite"]
- 608["SweepEdge Adjacent"]
- 609["SweepEdge Opposite"]
- 610["SweepEdge Adjacent"]
- 611["SweepEdge Opposite"]
- 612["SweepEdge Adjacent"]
- 613["SweepEdge Opposite"]
- 614["SweepEdge Adjacent"]
- 615["Sweep Extrusion
[2596, 2620, 6]"]
- 616["Sweep Extrusion
[2596, 2620, 6]"]
- 617["Plane
[1205, 1272, 0]"]
- 627["Sweep Extrusion
[3156, 3180, 6]"]
- 628[Wall]
- 629[Wall]
- 630[Wall]
- 631[Wall]
- 632[Wall]
- 633[Wall]
- 634["Cap Start"]
- 635["Cap End"]
- 636["SweepEdge Opposite"]
- 637["SweepEdge Adjacent"]
- 638["SweepEdge Opposite"]
- 639["SweepEdge Adjacent"]
- 640["SweepEdge Opposite"]
- 641["SweepEdge Adjacent"]
- 642["SweepEdge Opposite"]
- 643["SweepEdge Adjacent"]
- 644["SweepEdge Opposite"]
- 645["SweepEdge Adjacent"]
- 646["SweepEdge Opposite"]
- 647["SweepEdge Adjacent"]
- 648["Sweep Extrusion
[3156, 3180, 6]"]
- 649["Plane
[3780, 3815, 6]"]
- 653["Plane
[3846, 3875, 6]"]
- 663["Sweep Sweep
[3888, 3915, 6]"]
- 664[Wall]
- 665[Wall]
- 666[Wall]
- 667[Wall]
- 668[Wall]
- 669[Wall]
- 670[Wall]
- 671["Cap Start"]
- 672["Cap End"]
- 673["SweepEdge Opposite"]
- 674["SweepEdge Adjacent"]
- 675["SweepEdge Opposite"]
- 676["SweepEdge Adjacent"]
- 677["SweepEdge Opposite"]
- 678["SweepEdge Adjacent"]
- 679["SweepEdge Opposite"]
- 680["SweepEdge Adjacent"]
- 681["SweepEdge Opposite"]
- 682["SweepEdge Adjacent"]
- 683["SweepEdge Opposite"]
- 684["SweepEdge Adjacent"]
- 685["SweepEdge Opposite"]
- 686["SweepEdge Adjacent"]
- 687["Plane
[3780, 3815, 6]"]
- 691["Plane
[3846, 3875, 6]"]
- 701["Sweep Sweep
[3888, 3915, 6]"]
- 702[Wall]
- 703[Wall]
- 704[Wall]
- 705[Wall]
- 706[Wall]
- 707[Wall]
- 708[Wall]
- 709["Cap Start"]
- 710["Cap End"]
- 711["SweepEdge Opposite"]
- 712["SweepEdge Adjacent"]
- 713["SweepEdge Opposite"]
- 714["SweepEdge Adjacent"]
- 715["SweepEdge Opposite"]
- 716["SweepEdge Adjacent"]
- 717["SweepEdge Opposite"]
- 718["SweepEdge Adjacent"]
- 719["SweepEdge Opposite"]
- 720["SweepEdge Adjacent"]
- 721["SweepEdge Opposite"]
- 722["SweepEdge Adjacent"]
- 723["SweepEdge Opposite"]
- 724["SweepEdge Adjacent"]
- 725["StartSketchOnPlane
[333, 353, 6]"]
- 726["StartSketchOnPlane
[333, 353, 6]"]
- 727["StartSketchOnPlane
[333, 353, 6]"]
- 728["StartSketchOnPlane
[333, 353, 6]"]
- 729["StartSketchOnPlane
[1734, 1754, 6]"]
- 730["StartSketchOnPlane
[1734, 1754, 6]"]
- 731["StartSketchOnPlane
[2168, 2188, 6]"]
- 732["StartSketchOnPlane
[2677, 2697, 6]"]
- 733["StartSketchOnPlane
[3233, 3253, 6]"]
- 734["StartSketchOnPlane
[3444, 3464, 6]"]
- 735["StartSketchOnPlane
[3233, 3253, 6]"]
- 736["StartSketchOnPlane
[3444, 3464, 6]"]
+ 552["SweepEdge Opposite"]
+ 553["SweepEdge Opposite"]
+ 554["SweepEdge Opposite"]
+ 555["StartSketchOnPlane
[333, 353, 6]"]
+ 556["StartSketchOnPlane
[333, 353, 6]"]
+ 557["StartSketchOnPlane
[333, 353, 6]"]
+ 558["StartSketchOnPlane
[333, 353, 6]"]
+ 559["StartSketchOnPlane
[1734, 1754, 6]"]
+ 560["StartSketchOnPlane
[1734, 1754, 6]"]
+ 561["StartSketchOnPlane
[2168, 2188, 6]"]
+ 562["StartSketchOnPlane
[2677, 2697, 6]"]
+ 563["StartSketchOnPlane
[3233, 3253, 6]"]
+ 564["StartSketchOnPlane
[3444, 3464, 6]"]
+ 565["StartSketchOnPlane
[3233, 3253, 6]"]
+ 566["StartSketchOnPlane
[3444, 3464, 6]"]
1 --- 2
2 --- 3
2 --- 4
@@ -793,65 +623,64 @@ flowchart LR
2 ---- 25
2 --- 24
3 --- 26
- 3 --- 48
- 3 --- 49
+ 3 x--> 46
4 --- 27
- 4 --- 50
- 4 --- 51
+ 4 --- 48
+ 4 x--> 46
5 --- 28
- 5 --- 52
- 5 --- 53
+ 5 --- 49
+ 5 x--> 46
6 --- 29
- 6 --- 54
- 6 --- 55
+ 6 --- 50
+ 6 x--> 46
7 --- 30
- 7 --- 56
- 7 --- 57
+ 7 --- 51
+ 7 x--> 46
8 --- 31
- 8 --- 58
- 8 --- 59
+ 8 --- 52
+ 8 x--> 46
9 --- 32
- 9 --- 60
- 9 --- 61
+ 9 --- 53
+ 9 x--> 46
10 --- 33
- 10 --- 62
- 10 --- 63
+ 10 --- 54
+ 10 x--> 46
11 --- 34
- 11 --- 64
- 11 --- 65
+ 11 --- 55
+ 11 x--> 46
12 --- 35
- 12 --- 66
- 12 --- 67
+ 12 --- 56
+ 12 x--> 46
13 --- 36
- 13 --- 68
- 13 --- 69
+ 13 --- 57
+ 13 x--> 46
14 --- 37
- 14 --- 70
- 14 --- 71
+ 14 --- 58
+ 14 x--> 46
15 --- 38
- 15 --- 72
- 15 --- 73
+ 15 --- 59
+ 15 x--> 46
16 --- 39
- 16 --- 74
- 16 --- 75
+ 16 --- 60
+ 16 x--> 46
17 --- 40
- 17 --- 76
- 17 --- 77
+ 17 --- 61
+ 17 x--> 46
18 --- 41
- 18 --- 78
- 18 --- 79
+ 18 --- 62
+ 18 x--> 46
19 --- 42
- 19 --- 80
- 19 --- 81
+ 19 --- 63
+ 19 x--> 46
20 --- 43
- 20 --- 82
- 20 --- 83
+ 20 --- 64
+ 20 x--> 46
21 --- 44
- 21 --- 84
- 21 --- 85
+ 21 --- 65
+ 21 x--> 46
22 --- 45
- 22 --- 86
- 22 --- 87
+ 22 --- 66
+ 22 x--> 46
25 --- 26
25 --- 27
25 --- 28
@@ -893,258 +722,369 @@ flowchart LR
25 --- 64
25 --- 65
25 --- 66
- 25 --- 67
- 25 --- 68
- 25 --- 69
- 25 --- 70
- 25 --- 71
- 25 --- 72
- 25 --- 73
- 25 --- 74
- 25 --- 75
- 25 --- 76
- 25 --- 77
- 25 --- 78
- 25 --- 79
- 25 --- 80
- 25 --- 81
- 25 --- 82
- 25 --- 83
- 25 --- 84
- 25 --- 85
- 25 --- 86
- 25 --- 87
- 88 --- 89
- 89 --- 90
- 89 --- 91
- 89 --- 92
- 89 --- 93
- 89 --- 94
- 89 --- 95
- 89 --- 96
- 89 --- 97
- 89 --- 98
- 89 --- 99
- 89 --- 100
- 89 --- 101
- 89 --- 102
- 89 --- 103
- 89 --- 104
- 89 --- 105
- 89 --- 106
- 89 --- 107
- 89 --- 108
- 89 --- 109
- 89 --- 110
- 89 ---- 112
- 89 --- 111
- 90 --- 113
- 90 --- 135
- 90 --- 136
+ 48 <--x 27
+ 48 <--x 47
+ 49 <--x 28
+ 49 <--x 47
+ 50 <--x 29
+ 50 <--x 47
+ 51 <--x 30
+ 51 <--x 47
+ 52 <--x 31
+ 52 <--x 47
+ 53 <--x 32
+ 53 <--x 47
+ 54 <--x 33
+ 54 <--x 47
+ 55 <--x 34
+ 55 <--x 47
+ 56 <--x 35
+ 56 <--x 47
+ 57 <--x 36
+ 57 <--x 47
+ 58 <--x 37
+ 58 <--x 47
+ 59 <--x 38
+ 59 <--x 47
+ 60 <--x 39
+ 60 <--x 47
+ 61 <--x 40
+ 61 <--x 47
+ 62 <--x 41
+ 62 <--x 47
+ 63 <--x 42
+ 63 <--x 47
+ 64 <--x 43
+ 64 <--x 47
+ 65 <--x 44
+ 65 <--x 47
+ 66 <--x 45
+ 66 <--x 47
+ 67 --- 68
+ 68 --- 69
+ 68 --- 70
+ 68 --- 71
+ 68 --- 72
+ 68 --- 73
+ 68 --- 74
+ 68 --- 75
+ 68 --- 76
+ 68 --- 77
+ 68 --- 78
+ 68 --- 79
+ 68 --- 80
+ 68 --- 81
+ 68 --- 82
+ 68 --- 83
+ 68 --- 84
+ 68 --- 85
+ 68 --- 86
+ 68 --- 87
+ 68 --- 88
+ 68 --- 89
+ 68 ---- 91
+ 68 --- 90
+ 69 --- 92
+ 69 x--> 113
+ 70 --- 93
+ 70 --- 114
+ 70 x--> 113
+ 71 --- 94
+ 71 --- 115
+ 71 x--> 113
+ 72 --- 95
+ 72 --- 116
+ 72 x--> 113
+ 73 --- 96
+ 73 --- 117
+ 73 x--> 113
+ 74 --- 97
+ 74 --- 118
+ 74 x--> 113
+ 75 --- 98
+ 75 --- 119
+ 75 x--> 113
+ 76 --- 99
+ 76 --- 120
+ 76 x--> 113
+ 77 --- 100
+ 77 --- 121
+ 77 x--> 113
+ 78 --- 101
+ 78 --- 122
+ 78 x--> 113
+ 79 --- 102
+ 79 --- 123
+ 79 x--> 113
+ 80 --- 103
+ 80 --- 124
+ 80 x--> 113
+ 81 --- 104
+ 81 --- 125
+ 81 x--> 113
+ 82 --- 105
+ 82 --- 126
+ 82 x--> 113
+ 83 --- 106
+ 83 --- 127
+ 83 x--> 113
+ 84 --- 107
+ 84 --- 128
+ 84 x--> 113
+ 85 --- 108
+ 85 --- 129
+ 85 x--> 113
+ 86 --- 109
+ 86 --- 130
+ 86 x--> 113
+ 87 --- 110
+ 87 --- 131
+ 87 x--> 113
+ 88 --- 111
+ 88 --- 132
+ 88 x--> 113
+ 91 --- 92
+ 91 --- 93
+ 91 --- 94
+ 91 --- 95
+ 91 --- 96
+ 91 --- 97
+ 91 --- 98
+ 91 --- 99
+ 91 --- 100
+ 91 --- 101
+ 91 --- 102
+ 91 --- 103
+ 91 --- 104
+ 91 --- 105
+ 91 --- 106
+ 91 --- 107
+ 91 --- 108
+ 91 --- 109
+ 91 --- 110
+ 91 --- 111
+ 91 --- 112
+ 91 --- 113
91 --- 114
- 91 --- 137
- 91 --- 138
- 92 --- 115
- 92 --- 139
- 92 --- 140
- 93 --- 116
- 93 --- 141
- 93 --- 142
- 94 --- 117
- 94 --- 143
- 94 --- 144
- 95 --- 118
- 95 --- 145
- 95 --- 146
- 96 --- 119
- 96 --- 147
- 96 --- 148
- 97 --- 120
- 97 --- 149
- 97 --- 150
- 98 --- 121
- 98 --- 151
- 98 --- 152
- 99 --- 122
- 99 --- 153
- 99 --- 154
- 100 --- 123
- 100 --- 155
- 100 --- 156
- 101 --- 124
- 101 --- 157
- 101 --- 158
- 102 --- 125
- 102 --- 159
- 102 --- 160
- 103 --- 126
- 103 --- 161
- 103 --- 162
- 104 --- 127
- 104 --- 163
- 104 --- 164
- 105 --- 128
- 105 --- 165
- 105 --- 166
- 106 --- 129
- 106 --- 167
- 106 --- 168
- 107 --- 130
- 107 --- 169
- 107 --- 170
- 108 --- 131
- 108 --- 171
- 108 --- 172
- 109 --- 132
- 109 --- 173
- 109 --- 174
- 112 --- 113
- 112 --- 114
- 112 --- 115
- 112 --- 116
- 112 --- 117
- 112 --- 118
- 112 --- 119
- 112 --- 120
- 112 --- 121
- 112 --- 122
- 112 --- 123
- 112 --- 124
- 112 --- 125
- 112 --- 126
- 112 --- 127
- 112 --- 128
- 112 --- 129
- 112 --- 130
- 112 --- 131
- 112 --- 132
- 112 --- 133
- 112 --- 134
- 112 --- 135
- 112 --- 136
- 112 --- 137
- 112 --- 138
- 112 --- 139
- 112 --- 140
- 112 --- 141
- 112 --- 142
- 112 --- 143
- 112 --- 144
- 112 --- 145
- 112 --- 146
- 112 --- 147
- 112 --- 148
- 112 --- 149
- 112 --- 150
- 112 --- 151
- 112 --- 152
- 112 --- 153
- 112 --- 154
- 112 --- 155
- 112 --- 156
- 112 --- 157
- 112 --- 158
- 112 --- 159
- 112 --- 160
- 112 --- 161
- 112 --- 162
- 112 --- 163
- 112 --- 164
- 112 --- 165
- 112 --- 166
- 112 --- 167
- 112 --- 168
- 112 --- 169
- 112 --- 170
- 112 --- 171
- 112 --- 172
- 112 --- 173
- 112 --- 174
- 175 --- 176
- 175 --- 262
- 176 --- 177
- 176 --- 178
- 176 --- 179
- 176 --- 180
- 176 --- 181
- 176 --- 182
- 176 --- 183
- 176 --- 184
- 176 --- 185
- 176 --- 186
- 176 --- 187
- 176 --- 188
- 176 --- 189
- 176 --- 190
- 176 --- 191
- 176 --- 192
- 176 --- 193
- 176 --- 194
- 176 --- 195
- 176 --- 196
- 176 --- 197
- 176 ---- 199
- 176 --- 198
- 177 --- 200
- 177 --- 222
- 177 --- 223
- 178 --- 201
- 178 --- 224
- 178 --- 225
- 179 --- 202
- 179 --- 226
- 179 --- 227
- 180 --- 203
- 180 --- 228
- 180 --- 229
- 181 --- 204
- 181 --- 230
- 181 --- 231
- 182 --- 205
- 182 --- 232
- 182 --- 233
- 183 --- 206
- 183 --- 234
- 183 --- 235
- 184 --- 207
- 184 --- 236
- 184 --- 237
- 185 --- 208
- 185 --- 238
- 185 --- 239
- 186 --- 209
- 186 --- 240
- 186 --- 241
- 187 --- 210
- 187 --- 242
- 187 --- 243
- 188 --- 211
- 188 --- 244
- 188 --- 245
- 189 --- 212
- 189 --- 246
- 189 --- 247
- 190 --- 213
- 190 --- 248
- 190 --- 249
- 191 --- 214
- 191 --- 250
- 191 --- 251
- 192 --- 215
- 192 --- 252
- 192 --- 253
- 193 --- 216
- 193 --- 254
- 193 --- 255
- 194 --- 217
- 194 --- 256
- 194 --- 257
- 195 --- 218
- 195 --- 258
- 195 --- 259
- 196 --- 219
- 196 --- 260
- 196 --- 261
+ 91 --- 115
+ 91 --- 116
+ 91 --- 117
+ 91 --- 118
+ 91 --- 119
+ 91 --- 120
+ 91 --- 121
+ 91 --- 122
+ 91 --- 123
+ 91 --- 124
+ 91 --- 125
+ 91 --- 126
+ 91 --- 127
+ 91 --- 128
+ 91 --- 129
+ 91 --- 130
+ 91 --- 131
+ 91 --- 132
+ 114 <--x 93
+ 114 <--x 112
+ 115 <--x 94
+ 115 <--x 112
+ 116 <--x 95
+ 116 <--x 112
+ 117 <--x 96
+ 117 <--x 112
+ 118 <--x 97
+ 118 <--x 112
+ 119 <--x 98
+ 119 <--x 112
+ 120 <--x 99
+ 120 <--x 112
+ 121 <--x 100
+ 121 <--x 112
+ 122 <--x 101
+ 122 <--x 112
+ 123 <--x 102
+ 123 <--x 112
+ 124 <--x 103
+ 124 <--x 112
+ 125 <--x 104
+ 125 <--x 112
+ 126 <--x 105
+ 126 <--x 112
+ 127 <--x 106
+ 127 <--x 112
+ 128 <--x 107
+ 128 <--x 112
+ 129 <--x 108
+ 129 <--x 112
+ 130 <--x 109
+ 130 <--x 112
+ 131 <--x 110
+ 131 <--x 112
+ 132 <--x 111
+ 132 <--x 112
+ 133 --- 134
+ 133 --- 199
+ 134 --- 135
+ 134 --- 136
+ 134 --- 137
+ 134 --- 138
+ 134 --- 139
+ 134 --- 140
+ 134 --- 141
+ 134 --- 142
+ 134 --- 143
+ 134 --- 144
+ 134 --- 145
+ 134 --- 146
+ 134 --- 147
+ 134 --- 148
+ 134 --- 149
+ 134 --- 150
+ 134 --- 151
+ 134 --- 152
+ 134 --- 153
+ 134 --- 154
+ 134 --- 155
+ 134 ---- 157
+ 134 --- 156
+ 135 --- 158
+ 135 x--> 178
+ 136 --- 159
+ 136 --- 180
+ 136 x--> 178
+ 137 --- 160
+ 137 --- 181
+ 137 x--> 178
+ 138 --- 161
+ 138 --- 182
+ 138 x--> 178
+ 139 --- 162
+ 139 --- 183
+ 139 x--> 178
+ 140 --- 163
+ 140 --- 184
+ 140 x--> 178
+ 141 --- 164
+ 141 --- 185
+ 141 x--> 178
+ 142 --- 165
+ 142 --- 186
+ 142 x--> 178
+ 143 --- 166
+ 143 --- 187
+ 143 x--> 178
+ 144 --- 167
+ 144 --- 188
+ 144 x--> 178
+ 145 --- 168
+ 145 --- 189
+ 145 x--> 178
+ 146 --- 169
+ 146 --- 190
+ 146 x--> 178
+ 147 --- 170
+ 147 --- 191
+ 147 x--> 178
+ 148 --- 171
+ 148 --- 192
+ 148 x--> 178
+ 149 --- 172
+ 149 --- 193
+ 149 x--> 178
+ 150 --- 173
+ 150 --- 194
+ 150 x--> 178
+ 151 --- 174
+ 151 --- 195
+ 151 x--> 178
+ 152 --- 175
+ 152 --- 196
+ 152 x--> 178
+ 153 --- 176
+ 153 --- 197
+ 153 x--> 178
+ 154 --- 177
+ 154 --- 198
+ 154 x--> 178
+ 157 --- 158
+ 157 --- 159
+ 157 --- 160
+ 157 --- 161
+ 157 --- 162
+ 157 --- 163
+ 157 --- 164
+ 157 --- 165
+ 157 --- 166
+ 157 --- 167
+ 157 --- 168
+ 157 --- 169
+ 157 --- 170
+ 157 --- 171
+ 157 --- 172
+ 157 --- 173
+ 157 --- 174
+ 157 --- 175
+ 157 --- 176
+ 157 --- 177
+ 157 --- 178
+ 157 --- 179
+ 157 --- 180
+ 157 --- 181
+ 157 --- 182
+ 157 --- 183
+ 157 --- 184
+ 157 --- 185
+ 157 --- 186
+ 157 --- 187
+ 157 --- 188
+ 157 --- 189
+ 157 --- 190
+ 157 --- 191
+ 157 --- 192
+ 157 --- 193
+ 157 --- 194
+ 157 --- 195
+ 157 --- 196
+ 157 --- 197
+ 157 --- 198
+ 180 <--x 159
+ 180 <--x 179
+ 181 <--x 160
+ 181 <--x 179
+ 182 <--x 161
+ 182 <--x 179
+ 183 <--x 162
+ 183 <--x 179
+ 184 <--x 163
+ 184 <--x 179
+ 185 <--x 164
+ 185 <--x 179
+ 186 <--x 165
+ 186 <--x 179
+ 187 <--x 166
+ 187 <--x 179
+ 188 <--x 167
+ 188 <--x 179
+ 189 <--x 168
+ 189 <--x 179
+ 190 <--x 169
+ 190 <--x 179
+ 191 <--x 170
+ 191 <--x 179
+ 192 <--x 171
+ 192 <--x 179
+ 193 <--x 172
+ 193 <--x 179
+ 194 <--x 173
+ 194 <--x 179
+ 195 <--x 174
+ 195 <--x 179
+ 196 <--x 175
+ 196 <--x 179
+ 197 <--x 176
+ 197 <--x 179
+ 198 <--x 177
+ 198 <--x 179
199 --- 200
199 --- 201
199 --- 202
@@ -1166,802 +1106,802 @@ flowchart LR
199 --- 218
199 --- 219
199 --- 220
+ 199 ---- 222
199 --- 221
- 199 --- 222
- 199 --- 223
- 199 --- 224
- 199 --- 225
- 199 --- 226
- 199 --- 227
- 199 --- 228
- 199 --- 229
- 199 --- 230
- 199 --- 231
- 199 --- 232
- 199 --- 233
- 199 --- 234
- 199 --- 235
- 199 --- 236
- 199 --- 237
- 199 --- 238
- 199 --- 239
- 199 --- 240
- 199 --- 241
- 199 --- 242
- 199 --- 243
- 199 --- 244
- 199 --- 245
- 199 --- 246
- 199 --- 247
- 199 --- 248
- 199 --- 249
- 199 --- 250
- 199 --- 251
- 199 --- 252
- 199 --- 253
- 199 --- 254
- 199 --- 255
- 199 --- 256
- 199 --- 257
- 199 --- 258
- 199 --- 259
- 199 --- 260
- 199 --- 261
- 262 --- 263
- 262 --- 264
- 262 --- 265
- 262 --- 266
- 262 --- 267
- 262 --- 268
- 262 --- 269
- 262 --- 270
- 262 --- 271
- 262 --- 272
- 262 --- 273
- 262 --- 274
- 262 --- 275
- 262 --- 276
- 262 --- 277
- 262 --- 278
- 262 --- 279
- 262 --- 280
- 262 --- 281
- 262 --- 282
- 262 --- 283
- 262 ---- 285
- 262 --- 284
- 263 --- 286
- 263 --- 308
- 263 --- 309
- 264 --- 287
- 264 --- 310
- 264 --- 311
- 265 --- 288
- 265 --- 312
- 265 --- 313
+ 200 --- 223
+ 200 x--> 244
+ 201 --- 224
+ 201 --- 245
+ 201 x--> 244
+ 202 --- 225
+ 202 --- 246
+ 202 x--> 244
+ 203 --- 226
+ 203 --- 247
+ 203 x--> 244
+ 204 --- 227
+ 204 --- 248
+ 204 x--> 244
+ 205 --- 228
+ 205 --- 249
+ 205 x--> 244
+ 206 --- 229
+ 206 --- 250
+ 206 x--> 244
+ 207 --- 230
+ 207 --- 251
+ 207 x--> 244
+ 208 --- 231
+ 208 --- 252
+ 208 x--> 244
+ 209 --- 232
+ 209 --- 253
+ 209 x--> 244
+ 210 --- 233
+ 210 --- 254
+ 210 x--> 244
+ 211 --- 234
+ 211 --- 255
+ 211 x--> 244
+ 212 --- 235
+ 212 --- 256
+ 212 x--> 244
+ 213 --- 236
+ 213 --- 257
+ 213 x--> 244
+ 214 --- 237
+ 214 --- 258
+ 214 x--> 244
+ 215 --- 238
+ 215 --- 259
+ 215 x--> 244
+ 216 --- 239
+ 216 --- 260
+ 216 x--> 244
+ 217 --- 240
+ 217 --- 261
+ 217 x--> 244
+ 218 --- 241
+ 218 --- 262
+ 218 x--> 244
+ 219 --- 242
+ 219 --- 263
+ 219 x--> 244
+ 222 --- 223
+ 222 --- 224
+ 222 --- 225
+ 222 --- 226
+ 222 --- 227
+ 222 --- 228
+ 222 --- 229
+ 222 --- 230
+ 222 --- 231
+ 222 --- 232
+ 222 --- 233
+ 222 --- 234
+ 222 --- 235
+ 222 --- 236
+ 222 --- 237
+ 222 --- 238
+ 222 --- 239
+ 222 --- 240
+ 222 --- 241
+ 222 --- 242
+ 222 --- 243
+ 222 --- 244
+ 222 --- 245
+ 222 --- 246
+ 222 --- 247
+ 222 --- 248
+ 222 --- 249
+ 222 --- 250
+ 222 --- 251
+ 222 --- 252
+ 222 --- 253
+ 222 --- 254
+ 222 --- 255
+ 222 --- 256
+ 222 --- 257
+ 222 --- 258
+ 222 --- 259
+ 222 --- 260
+ 222 --- 261
+ 222 --- 262
+ 222 --- 263
+ 245 <--x 224
+ 245 <--x 243
+ 246 <--x 225
+ 246 <--x 243
+ 247 <--x 226
+ 247 <--x 243
+ 248 <--x 227
+ 248 <--x 243
+ 249 <--x 228
+ 249 <--x 243
+ 250 <--x 229
+ 250 <--x 243
+ 251 <--x 230
+ 251 <--x 243
+ 252 <--x 231
+ 252 <--x 243
+ 253 <--x 232
+ 253 <--x 243
+ 254 <--x 233
+ 254 <--x 243
+ 255 <--x 234
+ 255 <--x 243
+ 256 <--x 235
+ 256 <--x 243
+ 257 <--x 236
+ 257 <--x 243
+ 258 <--x 237
+ 258 <--x 243
+ 259 <--x 238
+ 259 <--x 243
+ 260 <--x 239
+ 260 <--x 243
+ 261 <--x 240
+ 261 <--x 243
+ 262 <--x 241
+ 262 <--x 243
+ 263 <--x 242
+ 263 <--x 243
+ 264 --- 265
+ 264 --- 330
+ 265 --- 266
+ 265 --- 267
+ 265 --- 268
+ 265 --- 269
+ 265 --- 270
+ 265 --- 271
+ 265 --- 272
+ 265 --- 273
+ 265 --- 274
+ 265 --- 275
+ 265 --- 276
+ 265 --- 277
+ 265 --- 278
+ 265 --- 279
+ 265 --- 280
+ 265 --- 281
+ 265 --- 282
+ 265 --- 283
+ 265 --- 284
+ 265 --- 285
+ 265 --- 286
+ 265 ---- 288
+ 265 --- 287
266 --- 289
- 266 --- 314
- 266 --- 315
+ 266 x--> 309
267 --- 290
- 267 --- 316
- 267 --- 317
+ 267 --- 311
+ 267 x--> 309
268 --- 291
- 268 --- 318
- 268 --- 319
+ 268 --- 312
+ 268 x--> 309
269 --- 292
- 269 --- 320
- 269 --- 321
+ 269 --- 313
+ 269 x--> 309
270 --- 293
- 270 --- 322
- 270 --- 323
+ 270 --- 314
+ 270 x--> 309
271 --- 294
- 271 --- 324
- 271 --- 325
+ 271 --- 315
+ 271 x--> 309
272 --- 295
- 272 --- 326
- 272 --- 327
+ 272 --- 316
+ 272 x--> 309
273 --- 296
- 273 --- 328
- 273 --- 329
+ 273 --- 317
+ 273 x--> 309
274 --- 297
- 274 --- 330
- 274 --- 331
+ 274 --- 318
+ 274 x--> 309
275 --- 298
- 275 --- 332
- 275 --- 333
+ 275 --- 319
+ 275 x--> 309
276 --- 299
- 276 --- 334
- 276 --- 335
+ 276 --- 320
+ 276 x--> 309
277 --- 300
- 277 --- 336
- 277 --- 337
+ 277 --- 321
+ 277 x--> 309
278 --- 301
- 278 --- 338
- 278 --- 339
+ 278 --- 322
+ 278 x--> 309
279 --- 302
- 279 --- 340
- 279 --- 341
+ 279 --- 323
+ 279 x--> 309
280 --- 303
- 280 --- 342
- 280 --- 343
+ 280 --- 324
+ 280 x--> 309
281 --- 304
- 281 --- 344
- 281 --- 345
+ 281 --- 325
+ 281 x--> 309
282 --- 305
- 282 --- 346
- 282 --- 347
- 285 --- 286
- 285 --- 287
- 285 --- 288
- 285 --- 289
- 285 --- 290
- 285 --- 291
- 285 --- 292
- 285 --- 293
- 285 --- 294
- 285 --- 295
- 285 --- 296
- 285 --- 297
- 285 --- 298
- 285 --- 299
- 285 --- 300
- 285 --- 301
- 285 --- 302
- 285 --- 303
- 285 --- 304
- 285 --- 305
- 285 --- 306
- 285 --- 307
+ 282 --- 326
+ 282 x--> 309
+ 283 --- 306
+ 283 --- 327
+ 283 x--> 309
+ 284 --- 307
+ 284 --- 328
+ 284 x--> 309
285 --- 308
- 285 --- 309
- 285 --- 310
- 285 --- 311
- 285 --- 312
- 285 --- 313
- 285 --- 314
- 285 --- 315
- 285 --- 316
- 285 --- 317
- 285 --- 318
- 285 --- 319
- 285 --- 320
- 285 --- 321
- 285 --- 322
- 285 --- 323
- 285 --- 324
- 285 --- 325
- 285 --- 326
- 285 --- 327
- 285 --- 328
285 --- 329
- 285 --- 330
- 285 --- 331
- 285 --- 332
- 285 --- 333
- 285 --- 334
- 285 --- 335
- 285 --- 336
- 285 --- 337
- 285 --- 338
- 285 --- 339
- 285 --- 340
- 285 --- 341
- 285 --- 342
- 285 --- 343
- 285 --- 344
- 285 --- 345
- 285 --- 346
- 285 --- 347
- 348 --- 349
- 348 --- 435
- 349 --- 350
- 349 --- 351
- 349 --- 352
- 349 --- 353
- 349 --- 354
- 349 --- 355
- 349 --- 356
- 349 --- 357
- 349 --- 358
- 349 --- 359
- 349 --- 360
- 349 --- 361
- 349 --- 362
- 349 --- 363
- 349 --- 364
- 349 --- 365
- 349 --- 366
- 349 --- 367
- 349 --- 368
- 349 --- 369
- 349 --- 370
- 349 ---- 372
- 349 --- 371
+ 285 x--> 309
+ 288 --- 289
+ 288 --- 290
+ 288 --- 291
+ 288 --- 292
+ 288 --- 293
+ 288 --- 294
+ 288 --- 295
+ 288 --- 296
+ 288 --- 297
+ 288 --- 298
+ 288 --- 299
+ 288 --- 300
+ 288 --- 301
+ 288 --- 302
+ 288 --- 303
+ 288 --- 304
+ 288 --- 305
+ 288 --- 306
+ 288 --- 307
+ 288 --- 308
+ 288 --- 309
+ 288 --- 310
+ 288 --- 311
+ 288 --- 312
+ 288 --- 313
+ 288 --- 314
+ 288 --- 315
+ 288 --- 316
+ 288 --- 317
+ 288 --- 318
+ 288 --- 319
+ 288 --- 320
+ 288 --- 321
+ 288 --- 322
+ 288 --- 323
+ 288 --- 324
+ 288 --- 325
+ 288 --- 326
+ 288 --- 327
+ 288 --- 328
+ 288 --- 329
+ 311 <--x 290
+ 311 <--x 310
+ 312 <--x 291
+ 312 <--x 310
+ 313 <--x 292
+ 313 <--x 310
+ 314 <--x 293
+ 314 <--x 310
+ 315 <--x 294
+ 315 <--x 310
+ 316 <--x 295
+ 316 <--x 310
+ 317 <--x 296
+ 317 <--x 310
+ 318 <--x 297
+ 318 <--x 310
+ 319 <--x 298
+ 319 <--x 310
+ 320 <--x 299
+ 320 <--x 310
+ 321 <--x 300
+ 321 <--x 310
+ 322 <--x 301
+ 322 <--x 310
+ 323 <--x 302
+ 323 <--x 310
+ 324 <--x 303
+ 324 <--x 310
+ 325 <--x 304
+ 325 <--x 310
+ 326 <--x 305
+ 326 <--x 310
+ 327 <--x 306
+ 327 <--x 310
+ 328 <--x 307
+ 328 <--x 310
+ 329 <--x 308
+ 329 <--x 310
+ 330 --- 331
+ 330 --- 332
+ 330 --- 333
+ 330 --- 334
+ 330 --- 335
+ 330 --- 336
+ 330 --- 337
+ 330 --- 338
+ 330 --- 339
+ 330 --- 340
+ 330 --- 341
+ 330 --- 342
+ 330 --- 343
+ 330 --- 344
+ 330 --- 345
+ 330 --- 346
+ 330 --- 347
+ 330 --- 348
+ 330 --- 349
+ 330 --- 350
+ 330 --- 351
+ 330 ---- 353
+ 330 --- 352
+ 331 --- 354
+ 331 x--> 375
+ 332 --- 355
+ 332 --- 376
+ 332 x--> 375
+ 333 --- 356
+ 333 --- 377
+ 333 x--> 375
+ 334 --- 357
+ 334 --- 378
+ 334 x--> 375
+ 335 --- 358
+ 335 --- 379
+ 335 x--> 375
+ 336 --- 359
+ 336 --- 380
+ 336 x--> 375
+ 337 --- 360
+ 337 --- 381
+ 337 x--> 375
+ 338 --- 361
+ 338 --- 382
+ 338 x--> 375
+ 339 --- 362
+ 339 --- 383
+ 339 x--> 375
+ 340 --- 363
+ 340 --- 384
+ 340 x--> 375
+ 341 --- 364
+ 341 --- 385
+ 341 x--> 375
+ 342 --- 365
+ 342 --- 386
+ 342 x--> 375
+ 343 --- 366
+ 343 --- 387
+ 343 x--> 375
+ 344 --- 367
+ 344 --- 388
+ 344 x--> 375
+ 345 --- 368
+ 345 --- 389
+ 345 x--> 375
+ 346 --- 369
+ 346 --- 390
+ 346 x--> 375
+ 347 --- 370
+ 347 --- 391
+ 347 x--> 375
+ 348 --- 371
+ 348 --- 392
+ 348 x--> 375
+ 349 --- 372
+ 349 --- 393
+ 349 x--> 375
350 --- 373
- 350 --- 395
- 350 --- 396
- 351 --- 374
- 351 --- 397
- 351 --- 398
- 352 --- 375
- 352 --- 399
- 352 --- 400
+ 350 --- 394
+ 350 x--> 375
+ 353 --- 354
+ 353 --- 355
+ 353 --- 356
+ 353 --- 357
+ 353 --- 358
+ 353 --- 359
+ 353 --- 360
+ 353 --- 361
+ 353 --- 362
+ 353 --- 363
+ 353 --- 364
+ 353 --- 365
+ 353 --- 366
+ 353 --- 367
+ 353 --- 368
+ 353 --- 369
+ 353 --- 370
+ 353 --- 371
+ 353 --- 372
+ 353 --- 373
+ 353 --- 374
+ 353 --- 375
353 --- 376
- 353 --- 401
- 353 --- 402
- 354 --- 377
- 354 --- 403
- 354 --- 404
- 355 --- 378
- 355 --- 405
- 355 --- 406
- 356 --- 379
- 356 --- 407
- 356 --- 408
- 357 --- 380
- 357 --- 409
- 357 --- 410
- 358 --- 381
- 358 --- 411
- 358 --- 412
- 359 --- 382
- 359 --- 413
- 359 --- 414
- 360 --- 383
- 360 --- 415
- 360 --- 416
- 361 --- 384
- 361 --- 417
- 361 --- 418
- 362 --- 385
- 362 --- 419
- 362 --- 420
- 363 --- 386
- 363 --- 421
- 363 --- 422
- 364 --- 387
- 364 --- 423
- 364 --- 424
- 365 --- 388
- 365 --- 425
- 365 --- 426
- 366 --- 389
- 366 --- 427
- 366 --- 428
- 367 --- 390
- 367 --- 429
- 367 --- 430
- 368 --- 391
- 368 --- 431
- 368 --- 432
- 369 --- 392
- 369 --- 433
- 369 --- 434
- 372 --- 373
- 372 --- 374
- 372 --- 375
- 372 --- 376
- 372 --- 377
- 372 --- 378
- 372 --- 379
- 372 --- 380
- 372 --- 381
- 372 --- 382
- 372 --- 383
- 372 --- 384
- 372 --- 385
- 372 --- 386
- 372 --- 387
- 372 --- 388
- 372 --- 389
- 372 --- 390
- 372 --- 391
- 372 --- 392
- 372 --- 393
- 372 --- 394
- 372 --- 395
- 372 --- 396
- 372 --- 397
- 372 --- 398
- 372 --- 399
- 372 --- 400
- 372 --- 401
- 372 --- 402
- 372 --- 403
- 372 --- 404
- 372 --- 405
- 372 --- 406
- 372 --- 407
- 372 --- 408
- 372 --- 409
- 372 --- 410
- 372 --- 411
- 372 --- 412
- 372 --- 413
- 372 --- 414
- 372 --- 415
- 372 --- 416
- 372 --- 417
- 372 --- 418
- 372 --- 419
- 372 --- 420
- 372 --- 421
- 372 --- 422
- 372 --- 423
- 372 --- 424
- 372 --- 425
- 372 --- 426
- 372 --- 427
- 372 --- 428
- 372 --- 429
- 372 --- 430
- 372 --- 431
- 372 --- 432
- 372 --- 433
- 372 --- 434
- 435 --- 436
- 435 --- 437
- 435 --- 438
- 435 --- 439
- 435 --- 440
- 435 --- 441
- 435 --- 442
- 435 --- 443
- 435 --- 444
- 435 --- 445
- 435 --- 446
- 435 --- 447
- 435 --- 448
- 435 --- 449
- 435 --- 450
- 435 --- 451
- 435 --- 452
- 435 --- 453
- 435 --- 454
- 435 --- 455
- 435 --- 456
- 435 ---- 458
- 435 --- 457
- 436 --- 459
- 436 --- 481
- 436 --- 482
- 437 --- 460
- 437 --- 483
- 437 --- 484
- 438 --- 461
- 438 --- 485
- 438 --- 486
- 439 --- 462
- 439 --- 487
- 439 --- 488
- 440 --- 463
- 440 --- 489
- 440 --- 490
- 441 --- 464
- 441 --- 491
- 441 --- 492
- 442 --- 465
- 442 --- 493
- 442 --- 494
- 443 --- 466
- 443 --- 495
- 443 --- 496
- 444 --- 467
- 444 --- 497
- 444 --- 498
- 445 --- 468
- 445 --- 499
- 445 --- 500
- 446 --- 469
- 446 --- 501
- 446 --- 502
- 447 --- 470
- 447 --- 503
- 447 --- 504
- 448 --- 471
- 448 --- 505
- 448 --- 506
- 449 --- 472
- 449 --- 507
- 449 --- 508
- 450 --- 473
- 450 --- 509
- 450 --- 510
- 451 --- 474
- 451 --- 511
- 451 --- 512
- 452 --- 475
- 452 --- 513
- 452 --- 514
- 453 --- 476
- 453 --- 515
- 453 --- 516
- 454 --- 477
- 454 --- 517
- 454 --- 518
- 455 --- 478
- 455 --- 519
- 455 --- 520
- 458 --- 459
- 458 --- 460
- 458 --- 461
- 458 --- 462
- 458 --- 463
- 458 --- 464
- 458 --- 465
- 458 --- 466
- 458 --- 467
- 458 --- 468
- 458 --- 469
- 458 --- 470
- 458 --- 471
- 458 --- 472
- 458 --- 473
- 458 --- 474
- 458 --- 475
- 458 --- 476
- 458 --- 477
- 458 --- 478
- 458 --- 479
- 458 --- 480
- 458 --- 481
- 458 --- 482
- 458 --- 483
- 458 --- 484
- 458 --- 485
- 458 --- 486
- 458 --- 487
- 458 --- 488
- 458 --- 489
- 458 --- 490
- 458 --- 491
- 458 --- 492
- 458 --- 493
- 458 --- 494
- 458 --- 495
- 458 --- 496
- 458 --- 497
- 458 --- 498
- 458 --- 499
- 458 --- 500
- 458 --- 501
- 458 --- 502
- 458 --- 503
- 458 --- 504
- 458 --- 505
- 458 --- 506
- 458 --- 507
- 458 --- 508
- 458 --- 509
- 458 --- 510
- 458 --- 511
- 458 --- 512
- 458 --- 513
- 458 --- 514
- 458 --- 515
- 458 --- 516
- 458 --- 517
- 458 --- 518
- 458 --- 519
- 458 --- 520
- 521 --- 522
- 521 --- 523
- 521 --- 553
- 521 --- 554
- 523 --- 524
- 523 --- 525
- 523 --- 526
- 523 --- 527
- 523 --- 528
- 523 --- 529
- 523 --- 530
- 523 ---- 532
- 523 --- 531
- 524 --- 533
- 524 --- 541
- 524 --- 542
- 525 --- 534
- 525 --- 543
- 525 --- 544
- 526 --- 535
- 526 --- 545
- 526 --- 546
- 527 --- 536
- 527 --- 547
- 527 --- 548
- 528 --- 537
- 528 --- 549
- 528 --- 550
- 529 --- 538
- 529 --- 551
- 529 --- 552
- 532 --- 533
- 532 --- 534
- 532 --- 535
- 532 --- 536
- 532 --- 537
- 532 --- 538
- 532 --- 539
- 532 --- 540
+ 353 --- 377
+ 353 --- 378
+ 353 --- 379
+ 353 --- 380
+ 353 --- 381
+ 353 --- 382
+ 353 --- 383
+ 353 --- 384
+ 353 --- 385
+ 353 --- 386
+ 353 --- 387
+ 353 --- 388
+ 353 --- 389
+ 353 --- 390
+ 353 --- 391
+ 353 --- 392
+ 353 --- 393
+ 353 --- 394
+ 376 <--x 355
+ 376 <--x 374
+ 377 <--x 356
+ 377 <--x 374
+ 378 <--x 357
+ 378 <--x 374
+ 379 <--x 358
+ 379 <--x 374
+ 380 <--x 359
+ 380 <--x 374
+ 381 <--x 360
+ 381 <--x 374
+ 382 <--x 361
+ 382 <--x 374
+ 383 <--x 362
+ 383 <--x 374
+ 384 <--x 363
+ 384 <--x 374
+ 385 <--x 364
+ 385 <--x 374
+ 386 <--x 365
+ 386 <--x 374
+ 387 <--x 366
+ 387 <--x 374
+ 388 <--x 367
+ 388 <--x 374
+ 389 <--x 368
+ 389 <--x 374
+ 390 <--x 369
+ 390 <--x 374
+ 391 <--x 370
+ 391 <--x 374
+ 392 <--x 371
+ 392 <--x 374
+ 393 <--x 372
+ 393 <--x 374
+ 394 <--x 373
+ 394 <--x 374
+ 395 --- 396
+ 395 --- 397
+ 395 --- 420
+ 395 --- 421
+ 397 --- 398
+ 397 --- 399
+ 397 --- 400
+ 397 --- 401
+ 397 --- 402
+ 397 --- 403
+ 397 --- 404
+ 397 ---- 406
+ 397 --- 405
+ 398 --- 407
+ 398 x--> 413
+ 399 --- 408
+ 399 --- 415
+ 399 x--> 413
+ 400 --- 409
+ 400 --- 416
+ 400 x--> 413
+ 401 --- 410
+ 401 --- 417
+ 401 x--> 413
+ 402 --- 411
+ 402 --- 418
+ 402 x--> 413
+ 403 --- 412
+ 403 --- 419
+ 403 x--> 413
+ 406 --- 407
+ 406 --- 408
+ 406 --- 409
+ 406 --- 410
+ 406 --- 411
+ 406 --- 412
+ 406 --- 413
+ 406 --- 414
+ 406 --- 415
+ 406 --- 416
+ 406 --- 417
+ 406 --- 418
+ 406 --- 419
+ 415 <--x 408
+ 415 <--x 414
+ 416 <--x 409
+ 416 <--x 414
+ 417 <--x 410
+ 417 <--x 414
+ 418 <--x 411
+ 418 <--x 414
+ 419 <--x 412
+ 419 <--x 414
+ 421 --- 422
+ 421 --- 423
+ 421 --- 424
+ 421 --- 425
+ 421 --- 426
+ 421 --- 427
+ 421 --- 428
+ 421 ---- 430
+ 421 --- 429
+ 422 --- 431
+ 422 x--> 437
+ 423 --- 432
+ 423 --- 439
+ 423 x--> 437
+ 424 --- 433
+ 424 --- 440
+ 424 x--> 437
+ 425 --- 434
+ 425 --- 441
+ 425 x--> 437
+ 426 --- 435
+ 426 --- 442
+ 426 x--> 437
+ 427 --- 436
+ 427 --- 443
+ 427 x--> 437
+ 430 --- 431
+ 430 --- 432
+ 430 --- 433
+ 430 --- 434
+ 430 --- 435
+ 430 --- 436
+ 430 --- 437
+ 430 --- 438
+ 430 --- 439
+ 430 --- 440
+ 430 --- 441
+ 430 --- 442
+ 430 --- 443
+ 439 <--x 432
+ 439 <--x 438
+ 440 <--x 433
+ 440 <--x 438
+ 441 <--x 434
+ 441 <--x 438
+ 442 <--x 435
+ 442 <--x 438
+ 443 <--x 436
+ 443 <--x 438
+ 444 --- 445
+ 445 --- 446
+ 445 --- 447
+ 445 --- 448
+ 445 --- 449
+ 445 --- 450
+ 445 --- 451
+ 445 --- 452
+ 445 ---- 454
+ 445 --- 453
+ 446 --- 460
+ 446 --- 467
+ 446 x--> 461
+ 447 --- 459
+ 447 --- 466
+ 447 x--> 461
+ 448 --- 458
+ 448 --- 465
+ 448 x--> 461
+ 449 --- 457
+ 449 --- 464
+ 449 x--> 461
+ 450 --- 456
+ 450 --- 463
+ 450 x--> 461
+ 451 --- 455
+ 451 x--> 461
+ 454 --- 455
+ 454 --- 456
+ 454 --- 457
+ 454 --- 458
+ 454 --- 459
+ 454 --- 460
+ 454 --- 461
+ 454 --- 462
+ 454 --- 463
+ 454 --- 464
+ 454 --- 465
+ 454 --- 466
+ 454 --- 467
+ 463 <--x 456
+ 463 <--x 462
+ 464 <--x 457
+ 464 <--x 462
+ 465 <--x 458
+ 465 <--x 462
+ 466 <--x 459
+ 466 <--x 462
+ 467 <--x 460
+ 467 <--x 462
+ 470 --- 471
+ 471 --- 472
+ 471 --- 473
+ 471 --- 474
+ 471 --- 475
+ 471 --- 476
+ 471 --- 477
+ 471 --- 478
+ 471 ---- 480
+ 471 --- 479
+ 472 --- 486
+ 472 --- 493
+ 472 x--> 487
+ 473 --- 485
+ 473 --- 492
+ 473 x--> 487
+ 474 --- 484
+ 474 --- 491
+ 474 x--> 487
+ 475 --- 483
+ 475 --- 490
+ 475 x--> 487
+ 476 --- 482
+ 476 --- 489
+ 476 x--> 487
+ 477 --- 481
+ 477 x--> 487
+ 480 --- 481
+ 480 --- 482
+ 480 --- 483
+ 480 --- 484
+ 480 --- 485
+ 480 --- 486
+ 480 --- 487
+ 480 --- 488
+ 480 --- 489
+ 480 --- 490
+ 480 --- 491
+ 480 --- 492
+ 480 --- 493
+ 489 <--x 482
+ 489 <--x 488
+ 490 <--x 483
+ 490 <--x 488
+ 491 <--x 484
+ 491 <--x 488
+ 492 <--x 485
+ 492 <--x 488
+ 493 <--x 486
+ 493 <--x 488
+ 495 --- 496
+ 496 --- 497
+ 496 --- 498
+ 499 --- 500
+ 500 --- 501
+ 500 --- 502
+ 500 --- 503
+ 500 --- 504
+ 500 --- 505
+ 500 --- 506
+ 500 --- 507
+ 500 ---- 509
+ 500 --- 508
+ 501 --- 510
+ 501 x--> 517
+ 502 --- 511
+ 502 --- 519
+ 502 x--> 517
+ 503 --- 512
+ 503 --- 520
+ 503 x--> 517
+ 504 --- 513
+ 504 --- 521
+ 504 x--> 517
+ 505 --- 514
+ 505 --- 522
+ 505 x--> 517
+ 506 --- 515
+ 506 --- 523
+ 506 x--> 517
+ 507 --- 516
+ 507 --- 524
+ 507 x--> 517
+ 509 --- 510
+ 509 --- 511
+ 509 --- 512
+ 509 --- 513
+ 509 --- 514
+ 509 --- 515
+ 509 --- 516
+ 509 --- 517
+ 509 --- 518
+ 509 --- 519
+ 509 --- 520
+ 509 --- 521
+ 509 --- 522
+ 509 --- 523
+ 509 --- 524
+ 519 <--x 511
+ 519 <--x 518
+ 520 <--x 512
+ 520 <--x 518
+ 521 <--x 513
+ 521 <--x 518
+ 522 <--x 514
+ 522 <--x 518
+ 523 <--x 515
+ 523 <--x 518
+ 524 <--x 516
+ 524 <--x 518
+ 525 --- 526
+ 526 --- 527
+ 526 --- 528
+ 529 --- 530
+ 530 --- 531
+ 530 --- 532
+ 530 --- 533
+ 530 --- 534
+ 530 --- 535
+ 530 --- 536
+ 530 --- 537
+ 530 ---- 539
+ 530 --- 538
+ 531 --- 540
+ 531 x--> 547
532 --- 541
- 532 --- 542
- 532 --- 543
- 532 --- 544
- 532 --- 545
- 532 --- 546
- 532 --- 547
- 532 --- 548
532 --- 549
- 532 --- 550
- 532 --- 551
- 532 --- 552
- 554 --- 555
- 554 --- 556
- 554 --- 557
- 554 --- 558
- 554 --- 559
- 554 --- 560
- 554 --- 561
- 554 ---- 563
- 554 --- 562
- 555 --- 564
- 555 --- 572
- 555 --- 573
- 556 --- 565
- 556 --- 574
- 556 --- 575
- 557 --- 566
- 557 --- 576
- 557 --- 577
- 558 --- 567
- 558 --- 578
- 558 --- 579
- 559 --- 568
- 559 --- 580
- 559 --- 581
- 560 --- 569
- 560 --- 582
- 560 --- 583
- 563 --- 564
- 563 --- 565
- 563 --- 566
- 563 --- 567
- 563 --- 568
- 563 --- 569
- 563 --- 570
- 563 --- 571
- 563 --- 572
- 563 --- 573
- 563 --- 574
- 563 --- 575
- 563 --- 576
- 563 --- 577
- 563 --- 578
- 563 --- 579
- 563 --- 580
- 563 --- 581
- 563 --- 582
- 563 --- 583
- 584 --- 585
- 585 --- 586
- 585 --- 587
- 585 --- 588
- 585 --- 589
- 585 --- 590
- 585 --- 591
- 585 --- 592
- 585 ---- 594
- 585 --- 593
- 586 --- 600
- 586 --- 613
- 586 --- 614
- 587 --- 599
- 587 --- 611
- 587 --- 612
- 588 --- 598
- 588 --- 609
- 588 --- 610
- 589 --- 597
- 589 --- 607
- 589 --- 608
- 590 --- 596
- 590 --- 605
- 590 --- 606
- 591 --- 595
- 591 --- 603
- 591 --- 604
- 594 --- 595
- 594 --- 596
- 594 --- 597
- 594 --- 598
- 594 --- 599
- 594 --- 600
- 594 --- 601
- 594 --- 602
- 594 --- 603
- 594 --- 604
- 594 --- 605
- 594 --- 606
- 594 --- 607
- 594 --- 608
- 594 --- 609
- 594 --- 610
- 594 --- 611
- 594 --- 612
- 594 --- 613
- 594 --- 614
- 617 --- 618
- 618 --- 619
- 618 --- 620
- 618 --- 621
- 618 --- 622
- 618 --- 623
- 618 --- 624
- 618 --- 625
- 618 ---- 627
- 618 --- 626
- 619 --- 633
- 619 --- 646
- 619 --- 647
- 620 --- 632
- 620 --- 644
- 620 --- 645
- 621 --- 631
- 621 --- 642
- 621 --- 643
- 622 --- 630
- 622 --- 640
- 622 --- 641
- 623 --- 629
- 623 --- 638
- 623 --- 639
- 624 --- 628
- 624 --- 636
- 624 --- 637
- 627 --- 628
- 627 --- 629
- 627 --- 630
- 627 --- 631
- 627 --- 632
- 627 --- 633
- 627 --- 634
- 627 --- 635
- 627 --- 636
- 627 --- 637
- 627 --- 638
- 627 --- 639
- 627 --- 640
- 627 --- 641
- 627 --- 642
- 627 --- 643
- 627 --- 644
- 627 --- 645
- 627 --- 646
- 627 --- 647
- 649 --- 650
- 650 --- 651
- 650 --- 652
- 653 --- 654
- 654 --- 655
- 654 --- 656
- 654 --- 657
- 654 --- 658
- 654 --- 659
- 654 --- 660
- 654 --- 661
- 654 ---- 663
- 654 --- 662
- 655 --- 664
- 655 --- 673
- 655 --- 674
- 656 --- 665
- 656 --- 675
- 656 --- 676
- 657 --- 666
- 657 --- 677
- 657 --- 678
- 658 --- 667
- 658 --- 679
- 658 --- 680
- 659 --- 668
- 659 --- 681
- 659 --- 682
- 660 --- 669
- 660 --- 683
- 660 --- 684
- 661 --- 670
- 661 --- 685
- 661 --- 686
- 663 --- 664
- 663 --- 665
- 663 --- 666
- 663 --- 667
- 663 --- 668
- 663 --- 669
- 663 --- 670
- 663 --- 671
- 663 --- 672
- 663 --- 673
- 663 --- 674
- 663 --- 675
- 663 --- 676
- 663 --- 677
- 663 --- 678
- 663 --- 679
- 663 --- 680
- 663 --- 681
- 663 --- 682
- 663 --- 683
- 663 --- 684
- 663 --- 685
- 663 --- 686
- 687 --- 688
- 688 --- 689
- 688 --- 690
- 691 --- 692
- 692 --- 693
- 692 --- 694
- 692 --- 695
- 692 --- 696
- 692 --- 697
- 692 --- 698
- 692 --- 699
- 692 ---- 701
- 692 --- 700
- 693 --- 702
- 693 --- 711
- 693 --- 712
- 694 --- 703
- 694 --- 713
- 694 --- 714
- 695 --- 704
- 695 --- 715
- 695 --- 716
- 696 --- 705
- 696 --- 717
- 696 --- 718
- 697 --- 706
- 697 --- 719
- 697 --- 720
- 698 --- 707
- 698 --- 721
- 698 --- 722
- 699 --- 708
- 699 --- 723
- 699 --- 724
- 701 --- 702
- 701 --- 703
- 701 --- 704
- 701 --- 705
- 701 --- 706
- 701 --- 707
- 701 --- 708
- 701 --- 709
- 701 --- 710
- 701 --- 711
- 701 --- 712
- 701 --- 713
- 701 --- 714
- 701 --- 715
- 701 --- 716
- 701 --- 717
- 701 --- 718
- 701 --- 719
- 701 --- 720
- 701 --- 721
- 701 --- 722
- 701 --- 723
- 701 --- 724
- 175 <--x 725
- 175 <--x 726
- 348 <--x 727
- 348 <--x 728
- 521 <--x 729
- 521 <--x 730
- 584 <--x 731
- 617 <--x 732
- 649 <--x 733
- 653 <--x 734
- 687 <--x 735
- 691 <--x 736
+ 532 x--> 547
+ 533 --- 542
+ 533 --- 550
+ 533 x--> 547
+ 534 --- 543
+ 534 --- 551
+ 534 x--> 547
+ 535 --- 544
+ 535 --- 552
+ 535 x--> 547
+ 536 --- 545
+ 536 --- 553
+ 536 x--> 547
+ 537 --- 546
+ 537 --- 554
+ 537 x--> 547
+ 539 --- 540
+ 539 --- 541
+ 539 --- 542
+ 539 --- 543
+ 539 --- 544
+ 539 --- 545
+ 539 --- 546
+ 539 --- 547
+ 539 --- 548
+ 539 --- 549
+ 539 --- 550
+ 539 --- 551
+ 539 --- 552
+ 539 --- 553
+ 539 --- 554
+ 549 <--x 541
+ 549 <--x 548
+ 550 <--x 542
+ 550 <--x 548
+ 551 <--x 543
+ 551 <--x 548
+ 552 <--x 544
+ 552 <--x 548
+ 553 <--x 545
+ 553 <--x 548
+ 554 <--x 546
+ 554 <--x 548
+ 133 <--x 555
+ 133 <--x 556
+ 264 <--x 557
+ 264 <--x 558
+ 395 <--x 559
+ 395 <--x 560
+ 444 <--x 561
+ 470 <--x 562
+ 495 <--x 563
+ 499 <--x 564
+ 525 <--x 565
+ 529 <--x 566
```
diff --git a/rust/kcl-lib/tests/kcl_samples/bottle/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/bottle/artifact_commands.snap
index d06326a26..22d9ad728 100644
--- a/rust/kcl-lib/tests/kcl_samples/bottle/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/bottle/artifact_commands.snap
@@ -264,20 +264,27 @@ description: Artifact commands bottle.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -304,20 +311,27 @@ description: Artifact commands bottle.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -340,6 +354,127 @@ description: Artifact commands bottle.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -479,6 +614,33 @@ description: Artifact commands bottle.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/bottle/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/bottle/artifact_graph_flowchart.snap.md
index f7016aa05..ff8e87e77 100644
--- a/rust/kcl-lib/tests/kcl_samples/bottle/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/bottle/artifact_graph_flowchart.snap.md
@@ -19,9 +19,7 @@ flowchart LR
13["Sweep Extrusion
[794, 821, 0]"]
14[Wall]
15["Cap End"]
- 16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
- 18["StartSketchOnFace
[695, 732, 0]"]
+ 16["StartSketchOnFace
[695, 732, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -34,11 +32,8 @@ flowchart LR
10 ---- 13
10 --- 12
11 --- 14
- 11 --- 16
- 11 --- 17
+ 11 <--x 9
13 --- 14
13 --- 15
- 13 --- 16
- 13 --- 17
- 9 <--x 18
+ 9 <--x 16
```
diff --git a/rust/kcl-lib/tests/kcl_samples/bracket/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/bracket/artifact_commands.snap
index be3a96a6a..e3bda3d12 100644
--- a/rust/kcl-lib/tests/kcl_samples/bracket/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/bracket/artifact_commands.snap
@@ -282,20 +282,27 @@ description: Artifact commands bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -322,20 +329,27 @@ description: Artifact commands bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -358,6 +372,33 @@ description: Artifact commands bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -378,6 +419,127 @@ description: Artifact commands bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -641,45 +803,7 @@ description: Artifact commands bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -10.029347184188834,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -688,20 +812,18 @@ description: Artifact commands bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -771,6 +893,33 @@ description: Artifact commands bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -838,6 +987,127 @@ description: Artifact commands bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -10.029347184188834,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1017,6 +1287,33 @@ description: Artifact commands bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1084,6 +1381,33 @@ description: Artifact commands bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/bracket/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/bracket/artifact_graph_flowchart.snap.md
index f07464617..807547219 100644
--- a/rust/kcl-lib/tests/kcl_samples/bracket/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/bracket/artifact_graph_flowchart.snap.md
@@ -11,15 +11,15 @@ flowchart LR
9["Segment
[2431, 2438, 0]"]
10[Solid2d]
end
- subgraph path32 [Path]
- 32["Path
[2583, 2773, 0]"]
- 33["Segment
[2583, 2773, 0]"]
- 34[Solid2d]
+ subgraph path25 [Path]
+ 25["Path
[2583, 2773, 0]"]
+ 26["Segment
[2583, 2773, 0]"]
+ 27[Solid2d]
end
- subgraph path42 [Path]
- 42["Path
[3207, 3409, 0]"]
- 43["Segment
[3207, 3409, 0]"]
- 44[Solid2d]
+ subgraph path33 [Path]
+ 33["Path
[3207, 3409, 0]"]
+ 34["Segment
[3207, 3409, 0]"]
+ 35[Solid2d]
end
1["Plane
[2042, 2059, 0]"]
11["Sweep Extrusion
[2444, 2470, 0]"]
@@ -32,37 +32,27 @@ flowchart LR
18["Cap Start"]
19["Cap End"]
20["SweepEdge Opposite"]
- 21["SweepEdge Adjacent"]
+ 21["SweepEdge Opposite"]
22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
+ 23["SweepEdge Opposite"]
24["SweepEdge Opposite"]
- 25["SweepEdge Adjacent"]
- 26["SweepEdge Opposite"]
- 27["SweepEdge Adjacent"]
- 28["SweepEdge Opposite"]
- 29["SweepEdge Adjacent"]
- 30["SweepEdge Opposite"]
- 31["SweepEdge Adjacent"]
- 35["Sweep Extrusion
[3059, 3096, 0]"]
- 36[Wall]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
- 39["Sweep Extrusion
[3059, 3096, 0]"]
- 40["Sweep Extrusion
[3059, 3096, 0]"]
- 41["Sweep Extrusion
[3059, 3096, 0]"]
- 45["Sweep Extrusion
[3524, 3561, 0]"]
- 46[Wall]
- 47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
- 49["Sweep Extrusion
[3524, 3561, 0]"]
- 50["EdgeCut Fillet
[3578, 3658, 0]"]
- 51["EdgeCut Fillet
[3659, 3736, 0]"]
- 52["EdgeCut Fillet
[3762, 3904, 0]"]
- 53["EdgeCut Fillet
[3762, 3904, 0]"]
- 54["EdgeCut Fillet
[3762, 3904, 0]"]
- 55["EdgeCut Fillet
[3762, 3904, 0]"]
- 56["StartSketchOnFace
[2537, 2577, 0]"]
- 57["StartSketchOnFace
[3161, 3201, 0]"]
+ 28["Sweep Extrusion
[3059, 3096, 0]"]
+ 29[Wall]
+ 30["Sweep Extrusion
[3059, 3096, 0]"]
+ 31["Sweep Extrusion
[3059, 3096, 0]"]
+ 32["Sweep Extrusion
[3059, 3096, 0]"]
+ 36["Sweep Extrusion
[3524, 3561, 0]"]
+ 37[Wall]
+ 38["Sweep Extrusion
[3524, 3561, 0]"]
+ 39["SweepEdge Adjacent"]
+ 40["EdgeCut Fillet
[3578, 3658, 0]"]
+ 41["EdgeCut Fillet
[3659, 3736, 0]"]
+ 42["EdgeCut Fillet
[3762, 3904, 0]"]
+ 43["EdgeCut Fillet
[3762, 3904, 0]"]
+ 44["EdgeCut Fillet
[3762, 3904, 0]"]
+ 45["EdgeCut Fillet
[3762, 3904, 0]"]
+ 46["StartSketchOnFace
[2537, 2577, 0]"]
+ 47["StartSketchOnFace
[3161, 3201, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -74,25 +64,25 @@ flowchart LR
2 ---- 11
2 --- 10
3 --- 12
- 3 --- 20
- 3 --- 21
+ 3 x--> 18
4 --- 13
- 4 --- 22
- 4 --- 23
- 4 --- 52
+ 4 --- 20
+ 4 --- 42
+ 4 x--> 18
5 --- 14
- 5 --- 24
- 5 --- 25
+ 5 --- 21
+ 5 --- 39
+ 5 x--> 18
6 --- 15
- 6 --- 26
- 6 --- 27
+ 6 --- 22
+ 6 x--> 18
7 --- 16
- 7 --- 28
- 7 --- 29
- 7 --- 54
+ 7 --- 23
+ 7 --- 44
+ 7 x--> 18
8 --- 17
- 8 --- 30
- 8 --- 31
+ 8 --- 24
+ 8 x--> 18
11 --- 12
11 --- 13
11 --- 14
@@ -106,37 +96,34 @@ flowchart LR
11 --- 22
11 --- 23
11 --- 24
- 11 --- 25
- 11 --- 26
- 11 --- 27
- 11 --- 28
- 11 --- 29
- 11 --- 30
- 11 --- 31
- 14 --- 32
- 15 --- 42
- 32 --- 33
- 32 ---- 35
- 32 --- 34
- 33 --- 36
- 33 --- 37
- 33 --- 38
- 35 --- 36
- 35 --- 37
- 35 --- 38
- 42 --- 43
- 42 ---- 45
- 42 --- 44
- 43 --- 46
- 43 --- 47
- 43 --- 48
- 45 --- 46
- 45 --- 47
- 45 --- 48
- 25 <--x 50
- 31 <--x 51
- 22 <--x 53
- 28 <--x 55
- 14 <--x 56
- 15 <--x 57
+ 11 --- 39
+ 14 --- 25
+ 15 --- 33
+ 20 <--x 13
+ 20 <--x 19
+ 21 <--x 14
+ 21 <--x 19
+ 22 <--x 15
+ 22 <--x 19
+ 23 <--x 16
+ 23 <--x 19
+ 24 <--x 17
+ 24 <--x 19
+ 25 --- 26
+ 25 ---- 28
+ 25 --- 27
+ 26 --- 29
+ 26 <--x 14
+ 28 --- 29
+ 33 --- 34
+ 33 ---- 36
+ 33 --- 35
+ 34 --- 37
+ 34 <--x 15
+ 36 --- 37
+ 39 <--x 40
+ 20 <--x 43
+ 23 <--x 45
+ 14 <--x 46
+ 15 <--x 47
```
diff --git a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/artifact_commands.snap
index 0eb5ba739..42903c793 100644
--- a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/artifact_commands.snap
@@ -460,6 +460,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -480,6 +507,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -709,6 +763,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -729,6 +810,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -893,45 +1001,7 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -24.13,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -940,20 +1010,18 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -1023,6 +1091,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1090,6 +1185,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1157,6 +1279,127 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -24.13,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1321,45 +1564,7 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -12.065,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -1368,20 +1573,18 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -1451,6 +1654,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1518,6 +1748,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1585,6 +1842,127 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -12.065,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1890,20 +2268,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1926,6 +2311,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1946,6 +2358,80 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2183,20 +2669,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2219,6 +2712,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2239,6 +2759,80 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2495,20 +3089,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2531,6 +3132,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2551,6 +3179,80 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2913,20 +3615,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2949,6 +3658,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2969,6 +3705,80 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3625,20 +4435,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3665,20 +4482,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3705,20 +4529,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3745,20 +4576,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3785,20 +4623,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3825,20 +4670,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3865,20 +4717,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3905,20 +4764,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3945,20 +4811,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3985,20 +4858,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4025,20 +4905,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4061,6 +4948,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4081,6 +4995,550 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4288,6 +5746,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4444,6 +5929,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4608,45 +6120,7 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -19.049999999999997,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -4655,20 +6129,18 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -4738,6 +6210,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4805,6 +6304,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4872,6 +6398,127 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -19.049999999999997,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5096,6 +6743,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5235,6 +6909,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5399,45 +7100,7 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -6.35,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -5446,20 +7109,18 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -5529,6 +7190,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5596,6 +7284,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5663,6 +7378,127 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -6.35,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5827,45 +7663,7 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 12.7,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -5874,20 +7672,18 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -5961,45 +7757,7 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 12.7,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -6008,20 +7766,18 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -6095,45 +7851,7 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 12.7,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -6142,20 +7860,18 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -6229,45 +7945,7 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 12.7,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -6276,20 +7954,18 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -6363,45 +8039,7 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 12.7,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -6410,20 +8048,18 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -6497,45 +8133,7 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 12.7,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -6544,20 +8142,18 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -6631,45 +8227,7 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 12.7,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -6678,20 +8236,18 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -6761,6 +8317,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6828,6 +8411,691 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 12.7,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 12.7,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 12.7,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 12.7,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 12.7,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 12.7,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 12.7,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7035,20 +9303,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7071,6 +9346,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7091,6 +9393,80 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7162,20 +9538,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7198,6 +9581,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7218,6 +9628,80 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7289,20 +9773,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7325,6 +9816,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7345,6 +9863,80 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7416,20 +10008,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7452,6 +10051,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7472,6 +10098,80 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7543,20 +10243,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7579,6 +10286,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7599,6 +10333,80 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7806,20 +10614,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7842,6 +10657,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7862,6 +10704,80 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7933,20 +10849,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7969,6 +10892,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7989,6 +10939,80 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8060,20 +11084,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -8096,6 +11127,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8116,6 +11174,80 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8187,20 +11319,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -8223,6 +11362,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8243,6 +11409,80 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8314,20 +11554,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -8350,6 +11597,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8370,6 +11644,80 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8861,20 +12209,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -8901,20 +12256,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -8941,20 +12303,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -8981,20 +12350,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9021,20 +12397,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9061,20 +12444,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9101,20 +12491,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9141,20 +12538,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9177,6 +12581,409 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -9471,20 +13278,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9511,20 +13325,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9551,20 +13372,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9591,20 +13419,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9627,6 +13462,221 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -10014,20 +14064,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10054,20 +14111,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10094,20 +14158,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10134,20 +14205,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10174,20 +14252,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10214,20 +14299,27 @@ description: Artifact commands car-wheel-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10250,6 +14342,33 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -10270,6 +14389,315 @@ description: Artifact commands car-wheel-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/artifact_graph_flowchart.snap.md
index 32672de10..fa1c9a0e8 100644
--- a/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/car-wheel-assembly/artifact_graph_flowchart.snap.md
@@ -5,1281 +5,1033 @@ flowchart LR
3["Segment
[571, 622, 7]"]
4[Solid2d]
end
- subgraph path11 [Path]
- 11["Path
[812, 868, 7]"]
- 12["Segment
[812, 868, 7]"]
- 13[Solid2d]
+ subgraph path9 [Path]
+ 9["Path
[812, 868, 7]"]
+ 10["Segment
[812, 868, 7]"]
+ 11[Solid2d]
end
- subgraph path19 [Path]
- 19["Path
[998, 1051, 7]"]
- 20["Segment
[998, 1051, 7]"]
- 21[Solid2d]
+ subgraph path15 [Path]
+ 15["Path
[998, 1051, 7]"]
+ 16["Segment
[998, 1051, 7]"]
+ 17[Solid2d]
+ end
+ subgraph path24 [Path]
+ 24["Path
[1439, 1479, 7]"]
+ 25["Segment
[1439, 1479, 7]"]
+ 26[Solid2d]
end
subgraph path30 [Path]
- 30["Path
[1439, 1479, 7]"]
- 31["Segment
[1439, 1479, 7]"]
+ 30["Path
[1588, 1639, 7]"]
+ 31["Segment
[1588, 1639, 7]"]
32[Solid2d]
end
- subgraph path38 [Path]
- 38["Path
[1588, 1639, 7]"]
- 39["Segment
[1588, 1639, 7]"]
- 40[Solid2d]
+ subgraph path37 [Path]
+ 37["Path
[1777, 1830, 7]"]
+ 38["Segment
[1777, 1830, 7]"]
+ 39[Solid2d]
end
- subgraph path47 [Path]
- 47["Path
[1777, 1830, 7]"]
- 48["Segment
[1777, 1830, 7]"]
- 49[Solid2d]
+ subgraph path46 [Path]
+ 46["Path
[2078, 2150, 7]"]
+ 47["Segment
[2078, 2150, 7]"]
+ 48[Solid2d]
end
- subgraph path58 [Path]
- 58["Path
[2078, 2150, 7]"]
- 59["Segment
[2078, 2150, 7]"]
- 60[Solid2d]
+ subgraph path67 [Path]
+ 67["Path
[2412, 2443, 7]"]
+ 68["Segment
[2449, 2469, 7]"]
+ 69["Segment
[2475, 2495, 7]"]
+ 70["Segment
[2501, 2522, 7]"]
+ 71["Segment
[2528, 2584, 7]"]
+ 72["Segment
[2590, 2597, 7]"]
+ 73[Solid2d]
end
- subgraph path81 [Path]
- 81["Path
[2412, 2443, 7]"]
- 82["Segment
[2449, 2469, 7]"]
- 83["Segment
[2475, 2495, 7]"]
- 84["Segment
[2501, 2522, 7]"]
- 85["Segment
[2528, 2584, 7]"]
- 86["Segment
[2590, 2597, 7]"]
- 87[Solid2d]
+ subgraph path87 [Path]
+ 87["Path
[2904, 2936, 7]"]
+ 88["Segment
[2942, 2963, 7]"]
+ 89["Segment
[2969, 2989, 7]"]
+ 90["Segment
[2995, 3015, 7]"]
+ 91["Segment
[3021, 3077, 7]"]
+ 92["Segment
[3083, 3090, 7]"]
+ 93[Solid2d]
end
- subgraph path106 [Path]
- 106["Path
[2904, 2936, 7]"]
- 107["Segment
[2942, 2963, 7]"]
- 108["Segment
[2969, 2989, 7]"]
- 109["Segment
[2995, 3015, 7]"]
- 110["Segment
[3021, 3077, 7]"]
- 111["Segment
[3083, 3090, 7]"]
- 112[Solid2d]
+ subgraph path108 [Path]
+ 108["Path
[354, 410, 6]"]
+ 109["Segment
[354, 410, 6]"]
+ 110[Solid2d]
end
- subgraph path132 [Path]
- 132["Path
[354, 410, 6]"]
- 133["Segment
[354, 410, 6]"]
- 134[Solid2d]
+ subgraph path111 [Path]
+ 111["Path
[421, 477, 6]"]
+ 112["Segment
[421, 477, 6]"]
+ 113[Solid2d]
end
- subgraph path135 [Path]
- 135["Path
[421, 477, 6]"]
- 136["Segment
[421, 477, 6]"]
- 137[Solid2d]
+ subgraph path118 [Path]
+ 118["Path
[647, 703, 6]"]
+ 119["Segment
[647, 703, 6]"]
+ 120[Solid2d]
end
- subgraph path144 [Path]
- 144["Path
[647, 703, 6]"]
- 145["Segment
[647, 703, 6]"]
- 146[Solid2d]
+ subgraph path121 [Path]
+ 121["Path
[714, 770, 6]"]
+ 122["Segment
[714, 770, 6]"]
+ 123[Solid2d]
+ end
+ subgraph path128 [Path]
+ 128["Path
[919, 973, 6]"]
+ 129["Segment
[919, 973, 6]"]
+ 130[Solid2d]
+ end
+ subgraph path137 [Path]
+ 137["Path
[1256, 1317, 6]"]
+ 138["Segment
[1256, 1317, 6]"]
+ 139[Solid2d]
end
subgraph path147 [Path]
- 147["Path
[714, 770, 6]"]
- 148["Segment
[714, 770, 6]"]
- 149[Solid2d]
+ 147["Path
[1675, 1721, 6]"]
+ 148["Segment
[1727, 1779, 6]"]
+ 149["Segment
[1785, 1858, 6]"]
+ 150["Segment
[1864, 1886, 6]"]
+ 151["Segment
[1892, 1948, 6]"]
+ 152["Segment
[1954, 1961, 6]"]
+ 153[Solid2d]
end
- subgraph path156 [Path]
- 156["Path
[919, 973, 6]"]
- 157["Segment
[919, 973, 6]"]
- 158[Solid2d]
+ subgraph path160 [Path]
+ 160["Path
[2093, 2139, 6]"]
+ 161["Segment
[2145, 2197, 6]"]
+ 162["Segment
[2203, 2278, 6]"]
+ 163["Segment
[2284, 2321, 6]"]
+ 164["Segment
[2327, 2383, 6]"]
+ 165["Segment
[2389, 2396, 6]"]
+ 166[Solid2d]
end
- subgraph path167 [Path]
- 167["Path
[1256, 1317, 6]"]
- 168["Segment
[1256, 1317, 6]"]
- 169[Solid2d]
+ subgraph path173 [Path]
+ 173["Path
[2877, 2924, 6]"]
+ 174["Segment
[2932, 3269, 6]"]
+ 175["Segment
[3277, 3309, 6]"]
+ 176["Segment
[3317, 3658, 6]"]
+ 177["Segment
[3666, 3722, 6]"]
+ 178["Segment
[3730, 3737, 6]"]
+ 179[Solid2d]
end
- subgraph path179 [Path]
- 179["Path
[1675, 1721, 6]"]
- 180["Segment
[1727, 1779, 6]"]
- 181["Segment
[1785, 1858, 6]"]
- 182["Segment
[1864, 1886, 6]"]
- 183["Segment
[1892, 1948, 6]"]
- 184["Segment
[1954, 1961, 6]"]
- 185[Solid2d]
+ subgraph path191 [Path]
+ 191["Path
[2877, 2924, 6]"]
+ 192["Segment
[2932, 3269, 6]"]
+ 193["Segment
[3277, 3309, 6]"]
+ 194["Segment
[3317, 3658, 6]"]
+ 195["Segment
[3666, 3722, 6]"]
+ 196["Segment
[3730, 3737, 6]"]
+ 197[Solid2d]
end
- subgraph path195 [Path]
- 195["Path
[2093, 2139, 6]"]
- 196["Segment
[2145, 2197, 6]"]
- 197["Segment
[2203, 2278, 6]"]
- 198["Segment
[2284, 2321, 6]"]
- 199["Segment
[2327, 2383, 6]"]
- 200["Segment
[2389, 2396, 6]"]
- 201[Solid2d]
+ subgraph path209 [Path]
+ 209["Path
[4265, 4360, 6]"]
+ 210["Segment
[4366, 4399, 6]"]
+ 211["Segment
[4405, 4456, 6]"]
+ 212["Segment
[4462, 4495, 6]"]
+ 213["Segment
[4501, 4551, 6]"]
+ 214["Segment
[4557, 4598, 6]"]
+ 215["Segment
[4604, 4653, 6]"]
+ 216["Segment
[4659, 4692, 6]"]
+ 217["Segment
[4698, 4732, 6]"]
+ 218["Segment
[4738, 4772, 6]"]
+ 219["Segment
[4778, 4830, 6]"]
+ 220["Segment
[4836, 4870, 6]"]
+ 221["Segment
[4876, 4952, 6]"]
+ 222["Segment
[4958, 4991, 6]"]
+ 223["Segment
[4997, 5073, 6]"]
+ 224["Segment
[5079, 5113, 6]"]
+ 225["Segment
[5119, 5193, 6]"]
+ 226["Segment
[5199, 5233, 6]"]
+ 227["Segment
[5239, 5290, 6]"]
+ 228["Segment
[5296, 5358, 6]"]
+ 229["Segment
[5364, 5415, 6]"]
+ 230["Segment
[5421, 5455, 6]"]
+ 231["Segment
[5461, 5494, 6]"]
+ 232["Segment
[5500, 5533, 6]"]
+ 233["Segment
[5539, 5546, 6]"]
+ 234[Solid2d]
end
- subgraph path212 [Path]
- 212["Path
[2877, 2924, 6]"]
- 213["Segment
[2932, 3269, 6]"]
- 214["Segment
[3277, 3309, 6]"]
- 215["Segment
[3317, 3658, 6]"]
- 216["Segment
[3666, 3722, 6]"]
- 217["Segment
[3730, 3737, 6]"]
- 218[Solid2d]
+ subgraph path261 [Path]
+ 261["Path
[713, 753, 9]"]
+ 262["Segment
[761, 808, 9]"]
+ 263["Segment
[816, 852, 9]"]
+ 264["Segment
[860, 890, 9]"]
+ 265["Segment
[898, 943, 9]"]
+ 266["Segment
[951, 991, 9]"]
+ 267["Segment
[999, 1034, 9]"]
+ 268["Segment
[1042, 1080, 9]"]
+ 269["Segment
[1088, 1110, 9]"]
+ 270["Segment
[1118, 1125, 9]"]
+ 271[Solid2d]
end
- subgraph path235 [Path]
- 235["Path
[2877, 2924, 6]"]
- 236["Segment
[2932, 3269, 6]"]
- 237["Segment
[3277, 3309, 6]"]
- 238["Segment
[3317, 3658, 6]"]
- 239["Segment
[3666, 3722, 6]"]
- 240["Segment
[3730, 3737, 6]"]
- 241[Solid2d]
+ subgraph path283 [Path]
+ 283["Path
[511, 592, 8]"]
+ 284["Segment
[598, 699, 8]"]
+ 285["Segment
[705, 763, 8]"]
+ 286["Segment
[769, 853, 8]"]
+ 287["Segment
[859, 918, 8]"]
+ 288["Segment
[924, 1009, 8]"]
+ 289["Segment
[1015, 1074, 8]"]
+ 290["Segment
[1080, 1203, 8]"]
+ 291["Segment
[1209, 1268, 8]"]
+ 292["Segment
[1274, 1409, 8]"]
+ 293["Segment
[1415, 1474, 8]"]
+ 294["Segment
[1480, 1604, 8]"]
+ 295["Segment
[1610, 1669, 8]"]
+ 296["Segment
[1675, 1760, 8]"]
+ 297["Segment
[1766, 1825, 8]"]
+ 298["Segment
[1831, 1916, 8]"]
+ 299["Segment
[1922, 1980, 8]"]
+ 300["Segment
[1986, 1993, 8]"]
+ 301[Solid2d]
end
- subgraph path258 [Path]
- 258["Path
[4265, 4360, 6]"]
- 259["Segment
[4366, 4399, 6]"]
- 260["Segment
[4405, 4456, 6]"]
- 261["Segment
[4462, 4495, 6]"]
- 262["Segment
[4501, 4551, 6]"]
- 263["Segment
[4557, 4598, 6]"]
- 264["Segment
[4604, 4653, 6]"]
- 265["Segment
[4659, 4692, 6]"]
- 266["Segment
[4698, 4732, 6]"]
- 267["Segment
[4738, 4772, 6]"]
- 268["Segment
[4778, 4830, 6]"]
- 269["Segment
[4836, 4870, 6]"]
- 270["Segment
[4876, 4952, 6]"]
- 271["Segment
[4958, 4991, 6]"]
- 272["Segment
[4997, 5073, 6]"]
- 273["Segment
[5079, 5113, 6]"]
- 274["Segment
[5119, 5193, 6]"]
- 275["Segment
[5199, 5233, 6]"]
- 276["Segment
[5239, 5290, 6]"]
- 277["Segment
[5296, 5358, 6]"]
- 278["Segment
[5364, 5415, 6]"]
- 279["Segment
[5421, 5455, 6]"]
- 280["Segment
[5461, 5494, 6]"]
- 281["Segment
[5500, 5533, 6]"]
- 282["Segment
[5539, 5546, 6]"]
- 283[Solid2d]
- end
- subgraph path334 [Path]
- 334["Path
[713, 753, 9]"]
- 335["Segment
[761, 808, 9]"]
- 336["Segment
[816, 852, 9]"]
- 337["Segment
[860, 890, 9]"]
- 338["Segment
[898, 943, 9]"]
- 339["Segment
[951, 991, 9]"]
- 340["Segment
[999, 1034, 9]"]
- 341["Segment
[1042, 1080, 9]"]
- 342["Segment
[1088, 1110, 9]"]
- 343["Segment
[1118, 1125, 9]"]
- 344[Solid2d]
- end
- subgraph path365 [Path]
- 365["Path
[511, 592, 8]"]
- 366["Segment
[598, 699, 8]"]
- 367["Segment
[705, 763, 8]"]
- 368["Segment
[769, 853, 8]"]
- 369["Segment
[859, 918, 8]"]
- 370["Segment
[924, 1009, 8]"]
- 371["Segment
[1015, 1074, 8]"]
- 372["Segment
[1080, 1203, 8]"]
- 373["Segment
[1209, 1268, 8]"]
- 374["Segment
[1274, 1409, 8]"]
- 375["Segment
[1415, 1474, 8]"]
- 376["Segment
[1480, 1604, 8]"]
- 377["Segment
[1610, 1669, 8]"]
- 378["Segment
[1675, 1760, 8]"]
- 379["Segment
[1766, 1825, 8]"]
- 380["Segment
[1831, 1916, 8]"]
- 381["Segment
[1922, 1980, 8]"]
- 382["Segment
[1986, 1993, 8]"]
- 383[Solid2d]
- end
- subgraph path439 [Path]
- 439["Path
[487, 544, 10]"]
- 440["Segment
[550, 684, 10]"]
- 441["Segment
[690, 737, 10]"]
- 442["Segment
[743, 840, 10]"]
- 443["Segment
[846, 878, 10]"]
- 444["Segment
[884, 916, 10]"]
- 445["Segment
[922, 953, 10]"]
- 446["Segment
[959, 1074, 10]"]
- 447["Segment
[1080, 1112, 10]"]
- 448["Segment
[1118, 1150, 10]"]
- 449["Segment
[1156, 1187, 10]"]
- 450["Segment
[1193, 1286, 10]"]
- 451["Segment
[1292, 1339, 10]"]
- 452["Segment
[1345, 1418, 10]"]
- 453["Segment
[1424, 1431, 10]"]
- 454[Solid2d]
+ subgraph path339 [Path]
+ 339["Path
[487, 544, 10]"]
+ 340["Segment
[550, 684, 10]"]
+ 341["Segment
[690, 737, 10]"]
+ 342["Segment
[743, 840, 10]"]
+ 343["Segment
[846, 878, 10]"]
+ 344["Segment
[884, 916, 10]"]
+ 345["Segment
[922, 953, 10]"]
+ 346["Segment
[959, 1074, 10]"]
+ 347["Segment
[1080, 1112, 10]"]
+ 348["Segment
[1118, 1150, 10]"]
+ 349["Segment
[1156, 1187, 10]"]
+ 350["Segment
[1193, 1286, 10]"]
+ 351["Segment
[1292, 1339, 10]"]
+ 352["Segment
[1345, 1418, 10]"]
+ 353["Segment
[1424, 1431, 10]"]
+ 354[Solid2d]
end
1["Plane
[548, 565, 7]"]
5["Sweep Extrusion
[631, 687, 7]"]
6[Wall]
7["Cap Start"]
8["Cap End"]
- 9["SweepEdge Opposite"]
- 10["SweepEdge Adjacent"]
- 14["Sweep Extrusion
[881, 943, 7]"]
- 15[Wall]
- 16["Cap End"]
- 17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
+ 12["Sweep Extrusion
[881, 943, 7]"]
+ 13[Wall]
+ 14["Cap End"]
+ 18["Sweep Extrusion
[1198, 1277, 7]"]
+ 19[Wall]
+ 20["Sweep Extrusion
[1198, 1277, 7]"]
+ 21["Sweep Extrusion
[1198, 1277, 7]"]
22["Sweep Extrusion
[1198, 1277, 7]"]
- 23[Wall]
- 24["SweepEdge Opposite"]
- 25["SweepEdge Adjacent"]
- 26["Sweep Extrusion
[1198, 1277, 7]"]
- 27["Sweep Extrusion
[1198, 1277, 7]"]
- 28["Sweep Extrusion
[1198, 1277, 7]"]
- 29["Sweep Extrusion
[1198, 1277, 7]"]
- 33["Sweep Extrusion
[1485, 1518, 7]"]
+ 23["Sweep Extrusion
[1198, 1277, 7]"]
+ 27["Sweep Extrusion
[1485, 1518, 7]"]
+ 28[Wall]
+ 29["Cap End"]
+ 33["Sweep Extrusion
[1654, 1719, 7]"]
34[Wall]
- 35["Cap End"]
- 36["SweepEdge Opposite"]
- 37["SweepEdge Adjacent"]
- 41["Sweep Extrusion
[1654, 1719, 7]"]
- 42[Wall]
- 43["Cap Start"]
- 44["Cap End"]
- 45["SweepEdge Opposite"]
- 46["SweepEdge Adjacent"]
- 50["Sweep Extrusion
[1977, 2021, 7]"]
- 51[Wall]
- 52["SweepEdge Opposite"]
- 53["SweepEdge Adjacent"]
- 54["Sweep Extrusion
[1977, 2021, 7]"]
- 55["Sweep Extrusion
[1977, 2021, 7]"]
- 56["Sweep Extrusion
[1977, 2021, 7]"]
- 57["Sweep Extrusion
[1977, 2021, 7]"]
+ 35["Cap Start"]
+ 36["Cap End"]
+ 40["Sweep Extrusion
[1977, 2021, 7]"]
+ 41[Wall]
+ 42["Sweep Extrusion
[1977, 2021, 7]"]
+ 43["Sweep Extrusion
[1977, 2021, 7]"]
+ 44["Sweep Extrusion
[1977, 2021, 7]"]
+ 45["Sweep Extrusion
[1977, 2021, 7]"]
+ 49["Sweep Extrusion
[2305, 2349, 7]"]
+ 50[Wall]
+ 51["Cap End"]
+ 52["Sweep Extrusion
[2305, 2349, 7]"]
+ 53["Sweep Extrusion
[2305, 2349, 7]"]
+ 54["Sweep Extrusion
[2305, 2349, 7]"]
+ 55["Sweep Extrusion
[2305, 2349, 7]"]
+ 56["Sweep Extrusion
[2305, 2349, 7]"]
+ 57["Sweep Extrusion
[2305, 2349, 7]"]
+ 58["Sweep Extrusion
[2305, 2349, 7]"]
+ 59["Sweep Extrusion
[2305, 2349, 7]"]
+ 60["Sweep Extrusion
[2305, 2349, 7]"]
61["Sweep Extrusion
[2305, 2349, 7]"]
- 62[Wall]
- 63["Cap End"]
- 64["SweepEdge Opposite"]
- 65["SweepEdge Adjacent"]
+ 62["Sweep Extrusion
[2305, 2349, 7]"]
+ 63["Sweep Extrusion
[2305, 2349, 7]"]
+ 64["Sweep Extrusion
[2305, 2349, 7]"]
+ 65["Sweep Extrusion
[2305, 2349, 7]"]
66["Sweep Extrusion
[2305, 2349, 7]"]
- 67["Sweep Extrusion
[2305, 2349, 7]"]
- 68["Sweep Extrusion
[2305, 2349, 7]"]
- 69["Sweep Extrusion
[2305, 2349, 7]"]
- 70["Sweep Extrusion
[2305, 2349, 7]"]
- 71["Sweep Extrusion
[2305, 2349, 7]"]
- 72["Sweep Extrusion
[2305, 2349, 7]"]
- 73["Sweep Extrusion
[2305, 2349, 7]"]
- 74["Sweep Extrusion
[2305, 2349, 7]"]
- 75["Sweep Extrusion
[2305, 2349, 7]"]
- 76["Sweep Extrusion
[2305, 2349, 7]"]
- 77["Sweep Extrusion
[2305, 2349, 7]"]
- 78["Sweep Extrusion
[2305, 2349, 7]"]
- 79["Sweep Extrusion
[2305, 2349, 7]"]
- 80["Sweep Extrusion
[2305, 2349, 7]"]
- 88["Sweep Extrusion
[2763, 2831, 7]"]
- 89[Wall]
- 90[Wall]
- 91[Wall]
- 92[Wall]
- 93["Cap Start"]
- 94["SweepEdge Opposite"]
- 95["SweepEdge Adjacent"]
- 96["SweepEdge Opposite"]
- 97["SweepEdge Adjacent"]
- 98["SweepEdge Opposite"]
- 99["SweepEdge Adjacent"]
+ 74["Sweep Extrusion
[2763, 2831, 7]"]
+ 75[Wall]
+ 76[Wall]
+ 77[Wall]
+ 78[Wall]
+ 79["Cap Start"]
+ 80["SweepEdge Opposite"]
+ 81["SweepEdge Opposite"]
+ 82["SweepEdge Opposite"]
+ 83["Sweep Extrusion
[2763, 2831, 7]"]
+ 84["Sweep Extrusion
[2763, 2831, 7]"]
+ 85["Sweep Extrusion
[2763, 2831, 7]"]
+ 86["Sweep Extrusion
[2763, 2831, 7]"]
+ 94["Sweep Extrusion
[3253, 3327, 7]"]
+ 95[Wall]
+ 96[Wall]
+ 97[Wall]
+ 98[Wall]
+ 99["Cap Start"]
100["SweepEdge Opposite"]
- 101["SweepEdge Adjacent"]
- 102["Sweep Extrusion
[2763, 2831, 7]"]
- 103["Sweep Extrusion
[2763, 2831, 7]"]
- 104["Sweep Extrusion
[2763, 2831, 7]"]
- 105["Sweep Extrusion
[2763, 2831, 7]"]
- 113["Sweep Extrusion
[3253, 3327, 7]"]
- 114[Wall]
+ 101["SweepEdge Opposite"]
+ 102["SweepEdge Opposite"]
+ 103["Sweep Extrusion
[3253, 3327, 7]"]
+ 104["Sweep Extrusion
[3253, 3327, 7]"]
+ 105["Sweep Extrusion
[3253, 3327, 7]"]
+ 106["Sweep Extrusion
[3253, 3327, 7]"]
+ 107["Plane
[331, 348, 6]"]
+ 114["Sweep Extrusion
[487, 520, 6]"]
115[Wall]
- 116[Wall]
- 117[Wall]
- 118["Cap Start"]
- 119["SweepEdge Opposite"]
- 120["SweepEdge Adjacent"]
- 121["SweepEdge Opposite"]
- 122["SweepEdge Adjacent"]
- 123["SweepEdge Opposite"]
- 124["SweepEdge Adjacent"]
- 125["SweepEdge Opposite"]
- 126["SweepEdge Adjacent"]
- 127["Sweep Extrusion
[3253, 3327, 7]"]
- 128["Sweep Extrusion
[3253, 3327, 7]"]
- 129["Sweep Extrusion
[3253, 3327, 7]"]
- 130["Sweep Extrusion
[3253, 3327, 7]"]
- 131["Plane
[331, 348, 6]"]
- 138["Sweep Extrusion
[487, 520, 6]"]
- 139[Wall]
- 140["Cap Start"]
- 141["Cap End"]
- 142["SweepEdge Opposite"]
- 143["SweepEdge Adjacent"]
- 150["Sweep Extrusion
[780, 813, 6]"]
- 151[Wall]
- 152["Cap Start"]
- 153["Cap End"]
- 154["SweepEdge Opposite"]
- 155["SweepEdge Adjacent"]
- 159["Sweep Extrusion
[1120, 1154, 6]"]
- 160[Wall]
- 161["SweepEdge Opposite"]
- 162["SweepEdge Adjacent"]
- 163["Sweep Extrusion
[1120, 1154, 6]"]
- 164["Sweep Extrusion
[1120, 1154, 6]"]
- 165["Sweep Extrusion
[1120, 1154, 6]"]
- 166["Sweep Extrusion
[1120, 1154, 6]"]
- 170["Sweep Extrusion
[1464, 1498, 6]"]
+ 116["Cap Start"]
+ 117["Cap End"]
+ 124["Sweep Extrusion
[780, 813, 6]"]
+ 125[Wall]
+ 126["Cap Start"]
+ 127["Cap End"]
+ 131["Sweep Extrusion
[1120, 1154, 6]"]
+ 132[Wall]
+ 133["Sweep Extrusion
[1120, 1154, 6]"]
+ 134["Sweep Extrusion
[1120, 1154, 6]"]
+ 135["Sweep Extrusion
[1120, 1154, 6]"]
+ 136["Sweep Extrusion
[1120, 1154, 6]"]
+ 140["Sweep Extrusion
[1464, 1498, 6]"]
+ 141[Wall]
+ 142["Sweep Extrusion
[1464, 1498, 6]"]
+ 143["Sweep Extrusion
[1464, 1498, 6]"]
+ 144["Sweep Extrusion
[1464, 1498, 6]"]
+ 145["Sweep Extrusion
[1464, 1498, 6]"]
+ 146["Plane
[1652, 1669, 6]"]
+ 154["Sweep Revolve
[1967, 1984, 6]"]
+ 155[Wall]
+ 156[Wall]
+ 157[Wall]
+ 158[Wall]
+ 159["Plane
[2070, 2087, 6]"]
+ 167["Sweep Revolve
[2402, 2419, 6]"]
+ 168[Wall]
+ 169[Wall]
+ 170[Wall]
171[Wall]
- 172["SweepEdge Opposite"]
- 173["SweepEdge Adjacent"]
- 174["Sweep Extrusion
[1464, 1498, 6]"]
- 175["Sweep Extrusion
[1464, 1498, 6]"]
- 176["Sweep Extrusion
[1464, 1498, 6]"]
- 177["Sweep Extrusion
[1464, 1498, 6]"]
- 178["Plane
[1652, 1669, 6]"]
- 186["Sweep Revolve
[1967, 1984, 6]"]
- 187[Wall]
- 188[Wall]
- 189[Wall]
- 190[Wall]
- 191["SweepEdge Adjacent"]
- 192["SweepEdge Adjacent"]
- 193["SweepEdge Adjacent"]
- 194["Plane
[2070, 2087, 6]"]
- 202["Sweep Revolve
[2402, 2419, 6]"]
- 203[Wall]
- 204[Wall]
- 205[Wall]
- 206[Wall]
- 207["SweepEdge Adjacent"]
- 208["SweepEdge Adjacent"]
- 209["SweepEdge Adjacent"]
- 210["SweepEdge Adjacent"]
- 211["Plane
[2846, 2869, 6]"]
- 219["Sweep Extrusion
[3785, 3831, 6]"]
- 220[Wall]
- 221[Wall]
- 222[Wall]
- 223[Wall]
- 224["Cap Start"]
- 225["Cap End"]
- 226["SweepEdge Opposite"]
- 227["SweepEdge Adjacent"]
- 228["SweepEdge Opposite"]
- 229["SweepEdge Adjacent"]
- 230["SweepEdge Opposite"]
- 231["SweepEdge Adjacent"]
- 232["SweepEdge Opposite"]
- 233["SweepEdge Adjacent"]
- 234["Plane
[2846, 2869, 6]"]
- 242["Sweep Extrusion
[3785, 3831, 6]"]
+ 172["Plane
[2846, 2869, 6]"]
+ 180["Sweep Extrusion
[3785, 3831, 6]"]
+ 181[Wall]
+ 182[Wall]
+ 183[Wall]
+ 184[Wall]
+ 185["Cap Start"]
+ 186["Cap End"]
+ 187["SweepEdge Opposite"]
+ 188["SweepEdge Opposite"]
+ 189["SweepEdge Opposite"]
+ 190["Plane
[2846, 2869, 6]"]
+ 198["Sweep Extrusion
[3785, 3831, 6]"]
+ 199[Wall]
+ 200[Wall]
+ 201[Wall]
+ 202[Wall]
+ 203["Cap Start"]
+ 204["Cap End"]
+ 205["SweepEdge Opposite"]
+ 206["SweepEdge Opposite"]
+ 207["SweepEdge Opposite"]
+ 208["Plane
[4242, 4259, 6]"]
+ 235["Sweep Revolve
[5552, 5569, 6]"]
+ 236[Wall]
+ 237[Wall]
+ 238[Wall]
+ 239[Wall]
+ 240[Wall]
+ 241[Wall]
+ 242[Wall]
243[Wall]
244[Wall]
245[Wall]
246[Wall]
- 247["Cap Start"]
- 248["Cap End"]
- 249["SweepEdge Opposite"]
- 250["SweepEdge Adjacent"]
- 251["SweepEdge Opposite"]
- 252["SweepEdge Adjacent"]
- 253["SweepEdge Opposite"]
- 254["SweepEdge Adjacent"]
- 255["SweepEdge Opposite"]
- 256["SweepEdge Adjacent"]
- 257["Plane
[4242, 4259, 6]"]
- 284["Sweep Revolve
[5552, 5569, 6]"]
- 285[Wall]
- 286[Wall]
- 287[Wall]
- 288[Wall]
- 289[Wall]
- 290[Wall]
- 291[Wall]
- 292[Wall]
- 293[Wall]
- 294[Wall]
- 295[Wall]
- 296[Wall]
- 297[Wall]
- 298[Wall]
- 299[Wall]
- 300[Wall]
- 301[Wall]
- 302[Wall]
+ 247[Wall]
+ 248[Wall]
+ 249[Wall]
+ 250[Wall]
+ 251[Wall]
+ 252[Wall]
+ 253[Wall]
+ 254[Wall]
+ 255[Wall]
+ 256[Wall]
+ 257[Wall]
+ 258[Wall]
+ 259[Wall]
+ 260["Plane
[679, 705, 9]"]
+ 272["Sweep Revolve
[1133, 1150, 9]"]
+ 273[Wall]
+ 274[Wall]
+ 275[Wall]
+ 276[Wall]
+ 277[Wall]
+ 278[Wall]
+ 279[Wall]
+ 280[Wall]
+ 281[Wall]
+ 282["Plane
[488, 505, 8]"]
+ 302["Sweep Revolve
[2031, 2081, 8]"]
303[Wall]
304[Wall]
305[Wall]
306[Wall]
307[Wall]
308[Wall]
- 309["SweepEdge Adjacent"]
- 310["SweepEdge Adjacent"]
- 311["SweepEdge Adjacent"]
- 312["SweepEdge Adjacent"]
- 313["SweepEdge Adjacent"]
- 314["SweepEdge Adjacent"]
- 315["SweepEdge Adjacent"]
- 316["SweepEdge Adjacent"]
- 317["SweepEdge Adjacent"]
- 318["SweepEdge Adjacent"]
- 319["SweepEdge Adjacent"]
- 320["SweepEdge Adjacent"]
- 321["SweepEdge Adjacent"]
- 322["SweepEdge Adjacent"]
- 323["SweepEdge Adjacent"]
- 324["SweepEdge Adjacent"]
- 325["SweepEdge Adjacent"]
- 326["SweepEdge Adjacent"]
- 327["SweepEdge Adjacent"]
- 328["SweepEdge Adjacent"]
- 329["SweepEdge Adjacent"]
- 330["SweepEdge Adjacent"]
- 331["SweepEdge Adjacent"]
- 332["SweepEdge Adjacent"]
- 333["Plane
[679, 705, 9]"]
- 345["Sweep Revolve
[1133, 1150, 9]"]
- 346[Wall]
- 347[Wall]
- 348[Wall]
- 349[Wall]
- 350[Wall]
- 351[Wall]
- 352[Wall]
- 353[Wall]
- 354[Wall]
- 355["SweepEdge Adjacent"]
- 356["SweepEdge Adjacent"]
- 357["SweepEdge Adjacent"]
- 358["SweepEdge Adjacent"]
- 359["SweepEdge Adjacent"]
- 360["SweepEdge Adjacent"]
- 361["SweepEdge Adjacent"]
- 362["SweepEdge Adjacent"]
- 363["SweepEdge Adjacent"]
- 364["Plane
[488, 505, 8]"]
- 384["Sweep Revolve
[2031, 2081, 8]"]
- 385[Wall]
- 386[Wall]
- 387[Wall]
- 388[Wall]
- 389[Wall]
- 390[Wall]
- 391[Wall]
- 392[Wall]
- 393[Wall]
- 394[Wall]
- 395[Wall]
- 396[Wall]
- 397[Wall]
- 398[Wall]
- 399[Wall]
- 400[Wall]
- 401[Wall]
- 402["Cap Start"]
- 403["Cap End"]
- 404["SweepEdge Opposite"]
- 405["SweepEdge Adjacent"]
- 406["SweepEdge Opposite"]
- 407["SweepEdge Adjacent"]
- 408["SweepEdge Opposite"]
- 409["SweepEdge Adjacent"]
- 410["SweepEdge Opposite"]
- 411["SweepEdge Adjacent"]
- 412["SweepEdge Opposite"]
- 413["SweepEdge Adjacent"]
- 414["SweepEdge Opposite"]
- 415["SweepEdge Adjacent"]
- 416["SweepEdge Opposite"]
- 417["SweepEdge Adjacent"]
- 418["SweepEdge Opposite"]
- 419["SweepEdge Adjacent"]
- 420["SweepEdge Opposite"]
- 421["SweepEdge Adjacent"]
- 422["SweepEdge Opposite"]
- 423["SweepEdge Adjacent"]
- 424["SweepEdge Opposite"]
- 425["SweepEdge Adjacent"]
- 426["SweepEdge Opposite"]
- 427["SweepEdge Adjacent"]
- 428["SweepEdge Opposite"]
- 429["SweepEdge Adjacent"]
- 430["SweepEdge Opposite"]
- 431["SweepEdge Adjacent"]
- 432["SweepEdge Opposite"]
- 433["SweepEdge Adjacent"]
- 434["SweepEdge Opposite"]
- 435["SweepEdge Adjacent"]
- 436["SweepEdge Opposite"]
- 437["SweepEdge Adjacent"]
- 438["Plane
[464, 481, 10]"]
- 455["Sweep Revolve
[1484, 1513, 10]"]
- 456[Wall]
- 457[Wall]
- 458[Wall]
- 459[Wall]
- 460[Wall]
- 461[Wall]
- 462[Wall]
- 463[Wall]
- 464[Wall]
- 465[Wall]
- 466[Wall]
- 467[Wall]
- 468[Wall]
- 469[Wall]
- 470["SweepEdge Adjacent"]
- 471["SweepEdge Adjacent"]
- 472["SweepEdge Adjacent"]
- 473["SweepEdge Adjacent"]
- 474["SweepEdge Adjacent"]
- 475["SweepEdge Adjacent"]
- 476["SweepEdge Adjacent"]
- 477["SweepEdge Adjacent"]
- 478["SweepEdge Adjacent"]
- 479["SweepEdge Adjacent"]
- 480["SweepEdge Adjacent"]
- 481["SweepEdge Adjacent"]
- 482["SweepEdge Adjacent"]
- 483["SweepEdge Adjacent"]
- 484["StartSketchOnFace
[774, 806, 7]"]
- 485["StartSketchOnFace
[956, 992, 7]"]
- 486["StartSketchOnFace
[1399, 1433, 7]"]
- 487["StartSketchOnFace
[1543, 1582, 7]"]
- 488["StartSketchOnFace
[1733, 1771, 7]"]
- 489["StartSketchOnFace
[2038, 2072, 7]"]
- 490["StartSketchOnFace
[2372, 2406, 7]"]
- 491["StartSketchOnFace
[2860, 2898, 7]"]
- 492["StartSketchOnFace
[607, 641, 6]"]
- 493["StartSketchOnFace
[874, 913, 6]"]
- 494["StartSketchOnFace
[1216, 1250, 6]"]
+ 309[Wall]
+ 310[Wall]
+ 311[Wall]
+ 312[Wall]
+ 313[Wall]
+ 314[Wall]
+ 315[Wall]
+ 316[Wall]
+ 317[Wall]
+ 318[Wall]
+ 319[Wall]
+ 320["Cap Start"]
+ 321["Cap End"]
+ 322["SweepEdge Opposite"]
+ 323["SweepEdge Opposite"]
+ 324["SweepEdge Opposite"]
+ 325["SweepEdge Opposite"]
+ 326["SweepEdge Opposite"]
+ 327["SweepEdge Opposite"]
+ 328["SweepEdge Opposite"]
+ 329["SweepEdge Opposite"]
+ 330["SweepEdge Opposite"]
+ 331["SweepEdge Opposite"]
+ 332["SweepEdge Opposite"]
+ 333["SweepEdge Opposite"]
+ 334["SweepEdge Opposite"]
+ 335["SweepEdge Opposite"]
+ 336["SweepEdge Opposite"]
+ 337["SweepEdge Opposite"]
+ 338["Plane
[464, 481, 10]"]
+ 355["Sweep Revolve
[1484, 1513, 10]"]
+ 356[Wall]
+ 357[Wall]
+ 358[Wall]
+ 359[Wall]
+ 360[Wall]
+ 361[Wall]
+ 362[Wall]
+ 363[Wall]
+ 364[Wall]
+ 365[Wall]
+ 366[Wall]
+ 367[Wall]
+ 368[Wall]
+ 369[Wall]
+ 370["StartSketchOnFace
[774, 806, 7]"]
+ 371["StartSketchOnFace
[956, 992, 7]"]
+ 372["StartSketchOnFace
[1399, 1433, 7]"]
+ 373["StartSketchOnFace
[1543, 1582, 7]"]
+ 374["StartSketchOnFace
[1733, 1771, 7]"]
+ 375["StartSketchOnFace
[2038, 2072, 7]"]
+ 376["StartSketchOnFace
[2372, 2406, 7]"]
+ 377["StartSketchOnFace
[2860, 2898, 7]"]
+ 378["StartSketchOnFace
[607, 641, 6]"]
+ 379["StartSketchOnFace
[874, 913, 6]"]
+ 380["StartSketchOnFace
[1216, 1250, 6]"]
1 --- 2
2 --- 3
2 ---- 5
2 --- 4
3 --- 6
- 3 --- 9
- 3 --- 10
+ 3 x--> 7
5 --- 6
5 --- 7
5 --- 8
- 5 --- 9
- 5 --- 10
- 7 --- 30
- 7 --- 58
- 7 --- 81
- 8 --- 11
- 11 --- 12
- 11 ---- 14
- 11 --- 13
- 12 --- 15
- 12 --- 17
- 12 --- 18
+ 7 --- 24
+ 7 --- 46
+ 7 --- 67
+ 8 --- 9
+ 9 --- 10
+ 9 ---- 12
+ 9 --- 11
+ 10 --- 13
+ 10 <--x 8
+ 12 --- 13
+ 12 --- 14
14 --- 15
- 14 --- 16
- 14 --- 17
- 14 --- 18
+ 15 --- 16
+ 15 ---- 18
+ 15 --- 17
16 --- 19
- 19 --- 20
- 19 ---- 22
- 19 --- 21
- 20 --- 23
- 20 --- 24
- 20 --- 25
- 22 --- 23
- 22 --- 24
- 22 --- 25
+ 16 <--x 14
+ 18 --- 19
+ 24 --- 25
+ 24 ---- 27
+ 24 --- 26
+ 25 --- 28
+ 25 <--x 7
+ 27 --- 28
+ 27 --- 29
+ 29 --- 30
30 --- 31
30 ---- 33
30 --- 32
31 --- 34
- 31 --- 36
- 31 --- 37
+ 31 x--> 35
33 --- 34
33 --- 35
33 --- 36
- 33 --- 37
- 35 --- 38
- 38 --- 39
- 38 ---- 41
- 38 --- 40
- 39 --- 42
- 39 --- 45
- 39 --- 46
- 41 --- 42
- 41 --- 43
- 41 --- 44
- 41 --- 45
- 41 --- 46
- 44 --- 47
- 44 --- 106
- 47 --- 48
- 47 ---- 50
- 47 --- 49
- 48 --- 51
- 48 --- 52
- 48 --- 53
- 50 --- 51
- 50 --- 52
- 50 --- 53
- 58 --- 59
- 58 ---- 61
- 58 --- 60
- 59 --- 62
- 59 --- 64
- 59 --- 65
- 61 --- 62
- 61 --- 63
- 61 --- 64
- 61 --- 65
- 81 --- 82
- 81 --- 83
- 81 --- 84
- 81 --- 85
- 81 --- 86
- 81 ---- 88
- 81 --- 87
- 82 --- 89
- 82 --- 94
- 82 --- 95
- 83 --- 90
- 83 --- 96
- 83 --- 97
- 84 --- 91
- 84 --- 98
- 84 --- 99
- 85 --- 92
- 85 --- 100
- 85 --- 101
- 88 --- 89
- 88 --- 90
- 88 --- 91
- 88 --- 92
- 88 --- 93
- 88 --- 94
- 88 --- 95
- 88 --- 96
- 88 --- 97
+ 36 --- 37
+ 36 --- 87
+ 37 --- 38
+ 37 ---- 40
+ 37 --- 39
+ 38 --- 41
+ 38 <--x 36
+ 40 --- 41
+ 46 --- 47
+ 46 ---- 49
+ 46 --- 48
+ 47 --- 50
+ 47 <--x 7
+ 49 --- 50
+ 49 --- 51
+ 67 --- 68
+ 67 --- 69
+ 67 --- 70
+ 67 --- 71
+ 67 --- 72
+ 67 ---- 74
+ 67 --- 73
+ 68 --- 75
+ 68 <--x 7
+ 69 --- 76
+ 69 --- 80
+ 69 <--x 7
+ 70 --- 77
+ 70 --- 81
+ 70 <--x 7
+ 71 --- 78
+ 71 --- 82
+ 71 <--x 7
+ 74 --- 75
+ 74 --- 76
+ 74 --- 77
+ 74 --- 78
+ 74 --- 79
+ 74 --- 80
+ 74 --- 81
+ 74 --- 82
+ 80 <--x 76
+ 80 <--x 79
+ 81 <--x 77
+ 81 <--x 79
+ 82 <--x 78
+ 82 <--x 79
+ 87 --- 88
+ 87 --- 89
+ 87 --- 90
+ 87 --- 91
+ 87 --- 92
+ 87 ---- 94
+ 87 --- 93
88 --- 98
- 88 --- 99
- 88 --- 100
- 88 --- 101
- 106 --- 107
- 106 --- 108
- 106 --- 109
- 106 --- 110
- 106 --- 111
- 106 ---- 113
- 106 --- 112
- 107 --- 117
- 107 --- 125
- 107 --- 126
- 108 --- 116
- 108 --- 123
- 108 --- 124
+ 88 --- 102
+ 88 <--x 36
+ 89 --- 97
+ 89 --- 101
+ 89 <--x 36
+ 90 --- 96
+ 90 --- 100
+ 90 <--x 36
+ 91 --- 95
+ 91 <--x 36
+ 94 --- 95
+ 94 --- 96
+ 94 --- 97
+ 94 --- 98
+ 94 --- 99
+ 94 --- 100
+ 94 --- 101
+ 94 --- 102
+ 100 <--x 96
+ 100 <--x 99
+ 101 <--x 97
+ 101 <--x 99
+ 102 <--x 98
+ 102 <--x 99
+ 107 --- 108
+ 107 --- 111
+ 108 --- 109
+ 108 ---- 114
+ 108 --- 110
109 --- 115
- 109 --- 121
- 109 --- 122
- 110 --- 114
- 110 --- 119
- 110 --- 120
- 113 --- 114
- 113 --- 115
- 113 --- 116
- 113 --- 117
- 113 --- 118
- 113 --- 119
- 113 --- 120
- 113 --- 121
- 113 --- 122
- 113 --- 123
- 113 --- 124
- 113 --- 125
- 113 --- 126
+ 109 x--> 116
+ 111 --- 112
+ 111 --- 113
+ 114 --- 115
+ 114 --- 116
+ 114 --- 117
+ 117 --- 118
+ 117 --- 121
+ 117 --- 137
+ 118 --- 119
+ 118 ---- 124
+ 118 --- 120
+ 119 --- 125
+ 119 x--> 126
+ 121 --- 122
+ 121 --- 123
+ 124 --- 125
+ 124 --- 126
+ 124 --- 127
+ 127 --- 128
+ 128 --- 129
+ 128 ---- 131
+ 128 --- 130
+ 129 --- 132
+ 129 <--x 127
131 --- 132
- 131 --- 135
- 132 --- 133
- 132 ---- 138
- 132 --- 134
- 133 --- 139
- 133 --- 142
- 133 --- 143
- 135 --- 136
- 135 --- 137
- 138 --- 139
- 138 --- 140
+ 137 --- 138
+ 137 ---- 140
+ 137 --- 139
138 --- 141
- 138 --- 142
- 138 --- 143
- 141 --- 144
- 141 --- 147
- 141 --- 167
- 144 --- 145
- 144 ---- 150
- 144 --- 146
- 145 --- 151
- 145 --- 154
- 145 --- 155
+ 138 <--x 117
+ 140 --- 141
+ 146 --- 147
147 --- 148
147 --- 149
- 150 --- 151
- 150 --- 152
- 150 --- 153
- 150 --- 154
- 150 --- 155
- 153 --- 156
- 156 --- 157
- 156 ---- 159
- 156 --- 158
- 157 --- 160
- 157 --- 161
- 157 --- 162
+ 147 --- 150
+ 147 --- 151
+ 147 --- 152
+ 147 ---- 154
+ 147 --- 153
+ 148 --- 155
+ 149 --- 156
+ 150 --- 157
+ 151 --- 158
+ 154 --- 155
+ 154 --- 156
+ 154 --- 157
+ 154 --- 158
+ 154 <--x 149
+ 154 <--x 150
+ 154 <--x 151
159 --- 160
- 159 --- 161
- 159 --- 162
+ 160 --- 161
+ 160 --- 162
+ 160 --- 163
+ 160 --- 164
+ 160 --- 165
+ 160 ---- 167
+ 160 --- 166
+ 161 --- 168
+ 162 --- 169
+ 163 --- 170
+ 164 --- 171
167 --- 168
- 167 ---- 170
167 --- 169
- 168 --- 171
- 168 --- 172
- 168 --- 173
- 170 --- 171
- 170 --- 172
- 170 --- 173
- 178 --- 179
- 179 --- 180
- 179 --- 181
- 179 --- 182
- 179 --- 183
- 179 --- 184
- 179 ---- 186
- 179 --- 185
+ 167 --- 170
+ 167 --- 171
+ 167 <--x 162
+ 167 <--x 163
+ 167 <--x 164
+ 172 --- 173
+ 173 --- 174
+ 173 --- 175
+ 173 --- 176
+ 173 --- 177
+ 173 --- 178
+ 173 ---- 180
+ 173 --- 179
+ 174 --- 184
+ 174 --- 189
+ 174 x--> 185
+ 175 --- 183
+ 175 --- 188
+ 175 x--> 185
+ 176 --- 182
+ 176 --- 187
+ 176 x--> 185
+ 177 --- 181
+ 177 x--> 185
+ 180 --- 181
+ 180 --- 182
+ 180 --- 183
+ 180 --- 184
+ 180 --- 185
+ 180 --- 186
180 --- 187
- 180 x--> 191
- 181 --- 188
- 181 --- 191
- 182 --- 189
- 182 --- 192
- 183 --- 190
- 183 --- 193
- 186 --- 187
- 186 --- 188
- 186 --- 189
- 186 --- 190
- 186 <--x 180
- 186 --- 191
- 186 <--x 181
- 186 <--x 182
- 186 --- 192
- 186 <--x 183
- 186 --- 193
- 194 --- 195
- 195 --- 196
- 195 --- 197
- 195 --- 198
+ 180 --- 188
+ 180 --- 189
+ 187 <--x 182
+ 187 <--x 186
+ 188 <--x 183
+ 188 <--x 186
+ 189 <--x 184
+ 189 <--x 186
+ 190 --- 191
+ 191 --- 192
+ 191 --- 193
+ 191 --- 194
+ 191 --- 195
+ 191 --- 196
+ 191 ---- 198
+ 191 --- 197
+ 192 --- 202
+ 192 --- 207
+ 192 x--> 204
+ 193 --- 201
+ 193 --- 206
+ 193 x--> 204
+ 194 --- 200
+ 194 --- 205
+ 194 x--> 204
195 --- 199
- 195 --- 200
- 195 ---- 202
- 195 --- 201
- 196 --- 203
- 196 --- 207
- 197 --- 204
- 197 --- 208
+ 195 x--> 204
+ 198 --- 199
+ 198 --- 200
+ 198 --- 201
+ 198 --- 202
+ 198 --- 203
+ 198 --- 204
198 --- 205
- 198 --- 209
- 199 --- 206
- 199 --- 210
- 202 --- 203
- 202 --- 204
- 202 --- 205
- 202 --- 206
- 202 <--x 196
- 202 --- 207
- 202 <--x 197
- 202 --- 208
- 202 <--x 198
- 202 --- 209
- 202 <--x 199
- 202 --- 210
- 211 --- 212
- 212 --- 213
- 212 --- 214
- 212 --- 215
- 212 --- 216
- 212 --- 217
- 212 ---- 219
- 212 --- 218
- 213 --- 223
- 213 --- 232
- 213 --- 233
- 214 --- 222
- 214 --- 230
- 214 --- 231
- 215 --- 221
- 215 --- 228
- 215 --- 229
- 216 --- 220
- 216 --- 226
- 216 --- 227
- 219 --- 220
- 219 --- 221
- 219 --- 222
- 219 --- 223
- 219 --- 224
- 219 --- 225
- 219 --- 226
- 219 --- 227
- 219 --- 228
- 219 --- 229
- 219 --- 230
- 219 --- 231
- 219 --- 232
- 219 --- 233
- 234 --- 235
+ 198 --- 206
+ 198 --- 207
+ 205 <--x 200
+ 205 <--x 203
+ 206 <--x 201
+ 206 <--x 203
+ 207 <--x 202
+ 207 <--x 203
+ 208 --- 209
+ 209 --- 210
+ 209 --- 211
+ 209 --- 212
+ 209 --- 213
+ 209 --- 214
+ 209 --- 215
+ 209 --- 216
+ 209 --- 217
+ 209 --- 218
+ 209 --- 219
+ 209 --- 220
+ 209 --- 221
+ 209 --- 222
+ 209 --- 223
+ 209 --- 224
+ 209 --- 225
+ 209 --- 226
+ 209 --- 227
+ 209 --- 228
+ 209 --- 229
+ 209 --- 230
+ 209 --- 231
+ 209 --- 232
+ 209 --- 233
+ 209 ---- 235
+ 209 --- 234
+ 210 --- 236
+ 211 --- 237
+ 212 --- 238
+ 213 --- 239
+ 214 --- 240
+ 215 --- 241
+ 216 --- 242
+ 217 --- 243
+ 218 --- 244
+ 219 --- 245
+ 220 --- 246
+ 221 --- 247
+ 222 --- 248
+ 223 --- 249
+ 224 --- 250
+ 225 --- 251
+ 226 --- 252
+ 227 --- 253
+ 228 --- 254
+ 229 --- 255
+ 230 --- 256
+ 231 --- 257
+ 232 --- 258
+ 233 --- 259
235 --- 236
235 --- 237
235 --- 238
235 --- 239
235 --- 240
- 235 ---- 242
235 --- 241
- 236 --- 246
- 236 --- 255
- 236 --- 256
- 237 --- 245
- 237 --- 253
- 237 --- 254
- 238 --- 244
- 238 --- 251
- 238 --- 252
- 239 --- 243
- 239 --- 249
- 239 --- 250
- 242 --- 243
- 242 --- 244
- 242 --- 245
- 242 --- 246
- 242 --- 247
- 242 --- 248
- 242 --- 249
- 242 --- 250
- 242 --- 251
- 242 --- 252
- 242 --- 253
- 242 --- 254
- 242 --- 255
- 242 --- 256
- 257 --- 258
- 258 --- 259
- 258 --- 260
- 258 --- 261
- 258 --- 262
- 258 --- 263
- 258 --- 264
- 258 --- 265
- 258 --- 266
- 258 --- 267
- 258 --- 268
- 258 --- 269
- 258 --- 270
- 258 --- 271
- 258 --- 272
- 258 --- 273
- 258 --- 274
- 258 --- 275
- 258 --- 276
- 258 --- 277
- 258 --- 278
- 258 --- 279
- 258 --- 280
- 258 --- 281
- 258 --- 282
- 258 ---- 284
- 258 --- 283
- 259 --- 285
- 259 --- 309
- 260 --- 286
- 260 --- 310
- 261 --- 287
- 261 --- 311
- 262 --- 288
- 262 --- 312
- 263 --- 289
- 263 --- 313
- 264 --- 290
- 264 --- 314
- 265 --- 291
- 265 --- 315
- 266 --- 292
- 266 --- 316
- 267 --- 293
- 267 --- 317
- 268 --- 294
- 268 --- 318
- 269 --- 295
- 269 --- 319
- 270 --- 296
- 270 --- 320
- 271 --- 297
- 271 --- 321
- 272 --- 298
- 272 --- 322
- 273 --- 299
- 273 --- 323
- 274 --- 300
- 274 --- 324
- 275 --- 301
- 275 --- 325
- 276 --- 302
- 276 --- 326
- 277 --- 303
- 277 --- 327
- 278 --- 304
- 278 --- 328
- 279 --- 305
- 279 --- 329
- 280 --- 306
- 280 --- 330
- 281 --- 307
- 281 --- 331
- 282 --- 308
- 282 --- 332
- 284 --- 285
- 284 --- 286
- 284 --- 287
- 284 --- 288
- 284 --- 289
- 284 --- 290
- 284 --- 291
- 284 --- 292
- 284 --- 293
- 284 --- 294
- 284 --- 295
- 284 --- 296
- 284 --- 297
- 284 --- 298
- 284 --- 299
- 284 --- 300
- 284 --- 301
- 284 --- 302
+ 235 --- 242
+ 235 --- 243
+ 235 --- 244
+ 235 --- 245
+ 235 --- 246
+ 235 --- 247
+ 235 --- 248
+ 235 --- 249
+ 235 --- 250
+ 235 --- 251
+ 235 --- 252
+ 235 --- 253
+ 235 --- 254
+ 235 --- 255
+ 235 --- 256
+ 235 --- 257
+ 235 --- 258
+ 235 --- 259
+ 235 <--x 211
+ 235 <--x 212
+ 235 <--x 213
+ 235 <--x 214
+ 235 <--x 215
+ 235 <--x 216
+ 235 <--x 217
+ 235 <--x 218
+ 235 <--x 219
+ 235 <--x 220
+ 235 <--x 221
+ 235 <--x 222
+ 235 <--x 223
+ 235 <--x 224
+ 235 <--x 225
+ 235 <--x 226
+ 235 <--x 227
+ 235 <--x 228
+ 235 <--x 229
+ 235 <--x 230
+ 235 <--x 231
+ 235 <--x 232
+ 235 <--x 233
+ 260 --- 261
+ 261 --- 262
+ 261 --- 263
+ 261 --- 264
+ 261 --- 265
+ 261 --- 266
+ 261 --- 267
+ 261 --- 268
+ 261 --- 269
+ 261 --- 270
+ 261 ---- 272
+ 261 --- 271
+ 262 --- 273
+ 263 --- 274
+ 264 --- 275
+ 265 --- 276
+ 266 --- 277
+ 267 --- 278
+ 268 --- 279
+ 269 --- 280
+ 270 --- 281
+ 272 --- 273
+ 272 --- 274
+ 272 --- 275
+ 272 --- 276
+ 272 --- 277
+ 272 --- 278
+ 272 --- 279
+ 272 --- 280
+ 272 --- 281
+ 272 <--x 263
+ 272 <--x 264
+ 272 <--x 265
+ 272 <--x 266
+ 272 <--x 267
+ 272 <--x 268
+ 272 <--x 269
+ 272 <--x 270
+ 282 --- 283
+ 283 --- 284
+ 283 --- 285
+ 283 --- 286
+ 283 --- 287
+ 283 --- 288
+ 283 --- 289
+ 283 --- 290
+ 283 --- 291
+ 283 --- 292
+ 283 --- 293
+ 283 --- 294
+ 283 --- 295
+ 283 --- 296
+ 283 --- 297
+ 283 --- 298
+ 283 --- 299
+ 283 --- 300
+ 283 ---- 302
+ 283 --- 301
284 --- 303
- 284 --- 304
- 284 --- 305
- 284 --- 306
- 284 --- 307
- 284 --- 308
- 284 <--x 259
- 284 --- 309
- 284 <--x 260
- 284 --- 310
- 284 <--x 261
- 284 --- 311
- 284 <--x 262
- 284 --- 312
- 284 <--x 263
- 284 --- 313
- 284 <--x 264
- 284 --- 314
- 284 <--x 265
- 284 --- 315
- 284 <--x 266
- 284 --- 316
- 284 <--x 267
- 284 --- 317
- 284 <--x 268
- 284 --- 318
- 284 <--x 269
- 284 --- 319
- 284 <--x 270
- 284 --- 320
- 284 <--x 271
- 284 --- 321
- 284 <--x 272
- 284 --- 322
- 284 <--x 273
- 284 --- 323
- 284 <--x 274
- 284 --- 324
- 284 <--x 275
- 284 --- 325
- 284 <--x 276
- 284 --- 326
- 284 <--x 277
- 284 --- 327
- 284 <--x 278
- 284 --- 328
- 284 <--x 279
- 284 --- 329
- 284 <--x 280
- 284 --- 330
- 284 <--x 281
- 284 --- 331
- 284 <--x 282
- 284 --- 332
- 333 --- 334
- 334 --- 335
- 334 --- 336
- 334 --- 337
- 334 --- 338
- 334 --- 339
- 334 --- 340
- 334 --- 341
- 334 --- 342
- 334 --- 343
- 334 ---- 345
- 334 --- 344
- 335 --- 346
- 335 --- 355
- 336 --- 347
- 336 --- 356
- 337 --- 348
- 337 --- 357
- 338 --- 349
- 338 --- 358
+ 284 x--> 320
+ 285 --- 304
+ 285 --- 322
+ 285 x--> 320
+ 286 --- 305
+ 286 --- 323
+ 286 x--> 320
+ 287 --- 306
+ 287 --- 324
+ 287 x--> 320
+ 288 --- 307
+ 288 --- 325
+ 288 x--> 320
+ 289 --- 308
+ 289 --- 326
+ 289 x--> 320
+ 290 --- 309
+ 290 --- 327
+ 290 x--> 320
+ 291 --- 310
+ 291 --- 328
+ 291 x--> 320
+ 292 --- 311
+ 292 --- 329
+ 292 x--> 320
+ 293 --- 312
+ 293 --- 330
+ 293 x--> 320
+ 294 --- 313
+ 294 --- 331
+ 294 x--> 320
+ 295 --- 314
+ 295 --- 332
+ 295 x--> 320
+ 296 --- 315
+ 296 --- 333
+ 296 x--> 320
+ 297 --- 316
+ 297 --- 334
+ 297 x--> 320
+ 298 --- 317
+ 298 --- 335
+ 298 x--> 320
+ 299 --- 318
+ 299 --- 336
+ 299 x--> 320
+ 300 --- 319
+ 300 --- 337
+ 300 x--> 320
+ 302 --- 303
+ 302 --- 304
+ 302 --- 305
+ 302 --- 306
+ 302 --- 307
+ 302 --- 308
+ 302 --- 309
+ 302 --- 310
+ 302 --- 311
+ 302 --- 312
+ 302 --- 313
+ 302 --- 314
+ 302 --- 315
+ 302 --- 316
+ 302 --- 317
+ 302 --- 318
+ 302 --- 319
+ 302 --- 320
+ 302 --- 321
+ 302 --- 322
+ 302 --- 323
+ 302 --- 324
+ 302 --- 325
+ 302 --- 326
+ 302 --- 327
+ 302 --- 328
+ 302 --- 329
+ 302 --- 330
+ 302 --- 331
+ 302 --- 332
+ 302 --- 333
+ 302 --- 334
+ 302 --- 335
+ 302 --- 336
+ 302 --- 337
+ 322 <--x 304
+ 322 <--x 321
+ 323 <--x 305
+ 323 <--x 321
+ 324 <--x 306
+ 324 <--x 321
+ 325 <--x 307
+ 325 <--x 321
+ 326 <--x 308
+ 326 <--x 321
+ 327 <--x 309
+ 327 <--x 321
+ 328 <--x 310
+ 328 <--x 321
+ 329 <--x 311
+ 329 <--x 321
+ 330 <--x 312
+ 330 <--x 321
+ 331 <--x 313
+ 331 <--x 321
+ 332 <--x 314
+ 332 <--x 321
+ 333 <--x 315
+ 333 <--x 321
+ 334 <--x 316
+ 334 <--x 321
+ 335 <--x 317
+ 335 <--x 321
+ 336 <--x 318
+ 336 <--x 321
+ 337 <--x 319
+ 337 <--x 321
+ 338 --- 339
+ 339 --- 340
+ 339 --- 341
+ 339 --- 342
+ 339 --- 343
+ 339 --- 344
+ 339 --- 345
+ 339 --- 346
+ 339 --- 347
+ 339 --- 348
+ 339 --- 349
339 --- 350
- 339 --- 359
- 340 --- 351
- 340 --- 360
- 341 --- 352
- 341 --- 361
- 342 --- 353
- 342 --- 362
- 343 --- 354
- 343 --- 363
- 345 --- 346
- 345 --- 347
- 345 --- 348
- 345 --- 349
- 345 --- 350
- 345 --- 351
- 345 --- 352
- 345 --- 353
- 345 --- 354
- 345 <--x 335
- 345 --- 355
- 345 <--x 336
- 345 --- 356
- 345 <--x 337
- 345 --- 357
- 345 <--x 338
- 345 --- 358
- 345 <--x 339
- 345 --- 359
- 345 <--x 340
- 345 --- 360
- 345 <--x 341
+ 339 --- 351
+ 339 --- 352
+ 339 --- 353
+ 339 ---- 355
+ 339 --- 354
+ 340 --- 356
+ 341 --- 357
+ 342 --- 358
+ 343 --- 359
+ 344 --- 360
345 --- 361
- 345 <--x 342
- 345 --- 362
- 345 <--x 343
- 345 --- 363
- 364 --- 365
- 365 --- 366
- 365 --- 367
- 365 --- 368
- 365 --- 369
- 365 --- 370
- 365 --- 371
- 365 --- 372
- 365 --- 373
- 365 --- 374
- 365 --- 375
- 365 --- 376
- 365 --- 377
- 365 --- 378
- 365 --- 379
- 365 --- 380
- 365 --- 381
- 365 --- 382
- 365 ---- 384
- 365 --- 383
- 366 --- 385
- 366 --- 404
- 366 --- 405
- 367 --- 386
- 367 --- 406
- 367 --- 407
- 368 --- 387
- 368 --- 408
- 368 --- 409
- 369 --- 388
- 369 --- 410
- 369 --- 411
- 370 --- 389
- 370 --- 412
- 370 --- 413
- 371 --- 390
- 371 --- 414
- 371 --- 415
- 372 --- 391
- 372 --- 416
- 372 --- 417
- 373 --- 392
- 373 --- 418
- 373 --- 419
- 374 --- 393
- 374 --- 420
- 374 --- 421
- 375 --- 394
- 375 --- 422
- 375 --- 423
- 376 --- 395
- 376 --- 424
- 376 --- 425
- 377 --- 396
- 377 --- 426
- 377 --- 427
- 378 --- 397
- 378 --- 428
- 378 --- 429
- 379 --- 398
- 379 --- 430
- 379 --- 431
- 380 --- 399
- 380 --- 432
- 380 --- 433
- 381 --- 400
- 381 --- 434
- 381 --- 435
- 382 --- 401
- 382 --- 436
- 382 --- 437
- 384 --- 385
- 384 --- 386
- 384 --- 387
- 384 --- 388
- 384 --- 389
- 384 --- 390
- 384 --- 391
- 384 --- 392
- 384 --- 393
- 384 --- 394
- 384 --- 395
- 384 --- 396
- 384 --- 397
- 384 --- 398
- 384 --- 399
- 384 --- 400
- 384 --- 401
- 384 --- 402
- 384 --- 403
- 384 --- 404
- 384 --- 405
- 384 --- 406
- 384 --- 407
- 384 --- 408
- 384 --- 409
- 384 --- 410
- 384 --- 411
- 384 --- 412
- 384 --- 413
- 384 --- 414
- 384 --- 415
- 384 --- 416
- 384 --- 417
- 384 --- 418
- 384 --- 419
- 384 --- 420
- 384 --- 421
- 384 --- 422
- 384 --- 423
- 384 --- 424
- 384 --- 425
- 384 --- 426
- 384 --- 427
- 384 --- 428
- 384 --- 429
- 384 --- 430
- 384 --- 431
- 384 --- 432
- 384 --- 433
- 384 --- 434
- 384 --- 435
- 384 --- 436
- 384 --- 437
- 438 --- 439
- 439 --- 440
- 439 --- 441
- 439 --- 442
- 439 --- 443
- 439 --- 444
- 439 --- 445
- 439 --- 446
- 439 --- 447
- 439 --- 448
- 439 --- 449
- 439 --- 450
- 439 --- 451
- 439 --- 452
- 439 --- 453
- 439 ---- 455
- 439 --- 454
- 440 --- 456
- 440 --- 470
- 441 --- 457
- 441 --- 471
- 442 --- 458
- 442 --- 472
- 443 --- 459
- 443 --- 473
- 444 --- 460
- 444 --- 474
- 445 --- 461
- 445 --- 475
- 446 --- 462
- 446 --- 476
- 447 --- 463
- 447 --- 477
- 448 --- 464
- 448 --- 478
- 449 --- 465
- 449 --- 479
- 450 --- 466
- 450 --- 480
- 451 --- 467
- 451 --- 481
- 452 --- 468
- 452 --- 482
- 453 --- 469
- 453 --- 483
- 455 --- 456
- 455 --- 457
- 455 --- 458
- 455 --- 459
- 455 --- 460
- 455 --- 461
- 455 --- 462
- 455 --- 463
- 455 --- 464
- 455 --- 465
- 455 --- 466
- 455 --- 467
- 455 --- 468
- 455 --- 469
- 455 <--x 440
- 455 --- 470
- 455 <--x 441
- 455 --- 471
- 455 <--x 442
- 455 --- 472
- 455 <--x 443
- 455 --- 473
- 455 <--x 444
- 455 --- 474
- 455 <--x 445
- 455 --- 475
- 455 <--x 446
- 455 --- 476
- 455 <--x 447
- 455 --- 477
- 455 <--x 448
- 455 --- 478
- 455 <--x 449
- 455 --- 479
- 455 <--x 450
- 455 --- 480
- 455 <--x 451
- 455 --- 481
- 455 <--x 452
- 455 --- 482
- 455 <--x 453
- 455 --- 483
- 8 <--x 484
- 16 <--x 485
- 7 <--x 486
- 35 <--x 487
- 44 <--x 488
- 7 <--x 489
- 7 <--x 490
- 44 <--x 491
- 141 <--x 492
- 153 <--x 493
- 141 <--x 494
+ 346 --- 362
+ 347 --- 363
+ 348 --- 364
+ 349 --- 365
+ 350 --- 366
+ 351 --- 367
+ 352 --- 368
+ 353 --- 369
+ 355 --- 356
+ 355 --- 357
+ 355 --- 358
+ 355 --- 359
+ 355 --- 360
+ 355 --- 361
+ 355 --- 362
+ 355 --- 363
+ 355 --- 364
+ 355 --- 365
+ 355 --- 366
+ 355 --- 367
+ 355 --- 368
+ 355 --- 369
+ 355 <--x 341
+ 355 <--x 342
+ 355 <--x 343
+ 355 <--x 344
+ 355 <--x 345
+ 355 <--x 346
+ 355 <--x 347
+ 355 <--x 348
+ 355 <--x 349
+ 355 <--x 350
+ 355 <--x 351
+ 355 <--x 352
+ 355 <--x 353
+ 8 <--x 370
+ 14 <--x 371
+ 7 <--x 372
+ 29 <--x 373
+ 36 <--x 374
+ 7 <--x 375
+ 7 <--x 376
+ 36 <--x 377
+ 117 <--x 378
+ 127 <--x 379
+ 117 <--x 380
```
diff --git a/rust/kcl-lib/tests/kcl_samples/color-cube/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/color-cube/artifact_commands.snap
index e83f8a4f5..2a0a2892e 100644
--- a/rust/kcl-lib/tests/kcl_samples/color-cube/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/color-cube/artifact_commands.snap
@@ -457,20 +457,27 @@ description: Artifact commands color-cube.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -493,6 +500,33 @@ description: Artifact commands color-cube.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -513,6 +547,80 @@ description: Artifact commands color-cube.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -724,20 +832,27 @@ description: Artifact commands color-cube.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -760,6 +875,33 @@ description: Artifact commands color-cube.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -780,6 +922,80 @@ description: Artifact commands color-cube.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -991,20 +1207,27 @@ description: Artifact commands color-cube.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1027,6 +1250,33 @@ description: Artifact commands color-cube.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1047,6 +1297,80 @@ description: Artifact commands color-cube.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1258,20 +1582,27 @@ description: Artifact commands color-cube.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1294,6 +1625,33 @@ description: Artifact commands color-cube.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1314,6 +1672,80 @@ description: Artifact commands color-cube.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1525,20 +1957,27 @@ description: Artifact commands color-cube.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1561,6 +2000,33 @@ description: Artifact commands color-cube.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1581,6 +2047,80 @@ description: Artifact commands color-cube.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1792,20 +2332,27 @@ description: Artifact commands color-cube.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1828,6 +2375,33 @@ description: Artifact commands color-cube.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1848,6 +2422,80 @@ description: Artifact commands color-cube.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/color-cube/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/color-cube/artifact_graph_flowchart.snap.md
index 6c8523e1b..8fcf4a6ed 100644
--- a/rust/kcl-lib/tests/kcl_samples/color-cube/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/color-cube/artifact_graph_flowchart.snap.md
@@ -9,50 +9,50 @@ flowchart LR
12["Segment
[1188, 1195, 0]"]
13[Solid2d]
end
- subgraph path29 [Path]
- 29["Path
[773, 813, 0]"]
- 30["Segment
[821, 886, 0]"]
- 31["Segment
[894, 991, 0]"]
- 32["Segment
[999, 1116, 0]"]
- 33["Segment
[1124, 1180, 0]"]
- 34["Segment
[1188, 1195, 0]"]
- 35[Solid2d]
+ subgraph path24 [Path]
+ 24["Path
[773, 813, 0]"]
+ 25["Segment
[821, 886, 0]"]
+ 26["Segment
[894, 991, 0]"]
+ 27["Segment
[999, 1116, 0]"]
+ 28["Segment
[1124, 1180, 0]"]
+ 29["Segment
[1188, 1195, 0]"]
+ 30[Solid2d]
end
- subgraph path51 [Path]
- 51["Path
[773, 813, 0]"]
- 52["Segment
[821, 886, 0]"]
- 53["Segment
[894, 991, 0]"]
- 54["Segment
[999, 1116, 0]"]
- 55["Segment
[1124, 1180, 0]"]
- 56["Segment
[1188, 1195, 0]"]
- 57[Solid2d]
+ subgraph path41 [Path]
+ 41["Path
[773, 813, 0]"]
+ 42["Segment
[821, 886, 0]"]
+ 43["Segment
[894, 991, 0]"]
+ 44["Segment
[999, 1116, 0]"]
+ 45["Segment
[1124, 1180, 0]"]
+ 46["Segment
[1188, 1195, 0]"]
+ 47[Solid2d]
end
- subgraph path73 [Path]
- 73["Path
[773, 813, 0]"]
- 74["Segment
[821, 886, 0]"]
- 75["Segment
[894, 991, 0]"]
- 76["Segment
[999, 1116, 0]"]
- 77["Segment
[1124, 1180, 0]"]
- 78["Segment
[1188, 1195, 0]"]
- 79[Solid2d]
+ subgraph path58 [Path]
+ 58["Path
[773, 813, 0]"]
+ 59["Segment
[821, 886, 0]"]
+ 60["Segment
[894, 991, 0]"]
+ 61["Segment
[999, 1116, 0]"]
+ 62["Segment
[1124, 1180, 0]"]
+ 63["Segment
[1188, 1195, 0]"]
+ 64[Solid2d]
end
- subgraph path95 [Path]
- 95["Path
[773, 813, 0]"]
- 96["Segment
[821, 886, 0]"]
- 97["Segment
[894, 991, 0]"]
- 98["Segment
[999, 1116, 0]"]
- 99["Segment
[1124, 1180, 0]"]
- 100["Segment
[1188, 1195, 0]"]
- 101[Solid2d]
+ subgraph path75 [Path]
+ 75["Path
[773, 813, 0]"]
+ 76["Segment
[821, 886, 0]"]
+ 77["Segment
[894, 991, 0]"]
+ 78["Segment
[999, 1116, 0]"]
+ 79["Segment
[1124, 1180, 0]"]
+ 80["Segment
[1188, 1195, 0]"]
+ 81[Solid2d]
end
- subgraph path117 [Path]
- 117["Path
[773, 813, 0]"]
- 118["Segment
[821, 886, 0]"]
- 119["Segment
[894, 991, 0]"]
- 120["Segment
[999, 1116, 0]"]
- 121["Segment
[1124, 1180, 0]"]
- 122["Segment
[1188, 1195, 0]"]
- 123[Solid2d]
+ subgraph path92 [Path]
+ 92["Path
[773, 813, 0]"]
+ 93["Segment
[821, 886, 0]"]
+ 94["Segment
[894, 991, 0]"]
+ 95["Segment
[999, 1116, 0]"]
+ 96["Segment
[1124, 1180, 0]"]
+ 97["Segment
[1188, 1195, 0]"]
+ 98[Solid2d]
end
1["Plane
[356, 390, 0]"]
2["Plane
[405, 440, 0]"]
@@ -68,94 +68,64 @@ flowchart LR
19["Cap Start"]
20["Cap End"]
21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
+ 22["SweepEdge Opposite"]
23["SweepEdge Opposite"]
- 24["SweepEdge Adjacent"]
- 25["SweepEdge Opposite"]
- 26["SweepEdge Adjacent"]
- 27["SweepEdge Opposite"]
- 28["SweepEdge Adjacent"]
- 36["Sweep Extrusion
[1203, 1234, 0]"]
- 37[Wall]
- 38[Wall]
- 39[Wall]
- 40[Wall]
- 41["Cap Start"]
- 42["Cap End"]
- 43["SweepEdge Opposite"]
- 44["SweepEdge Adjacent"]
- 45["SweepEdge Opposite"]
- 46["SweepEdge Adjacent"]
- 47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
- 49["SweepEdge Opposite"]
- 50["SweepEdge Adjacent"]
- 58["Sweep Extrusion
[1203, 1234, 0]"]
- 59[Wall]
- 60[Wall]
- 61[Wall]
- 62[Wall]
- 63["Cap Start"]
- 64["Cap End"]
- 65["SweepEdge Opposite"]
- 66["SweepEdge Adjacent"]
- 67["SweepEdge Opposite"]
- 68["SweepEdge Adjacent"]
- 69["SweepEdge Opposite"]
- 70["SweepEdge Adjacent"]
- 71["SweepEdge Opposite"]
- 72["SweepEdge Adjacent"]
- 80["Sweep Extrusion
[1203, 1234, 0]"]
- 81[Wall]
- 82[Wall]
+ 31["Sweep Extrusion
[1203, 1234, 0]"]
+ 32[Wall]
+ 33[Wall]
+ 34[Wall]
+ 35[Wall]
+ 36["Cap Start"]
+ 37["Cap End"]
+ 38["SweepEdge Opposite"]
+ 39["SweepEdge Opposite"]
+ 40["SweepEdge Opposite"]
+ 48["Sweep Extrusion
[1203, 1234, 0]"]
+ 49[Wall]
+ 50[Wall]
+ 51[Wall]
+ 52[Wall]
+ 53["Cap Start"]
+ 54["Cap End"]
+ 55["SweepEdge Opposite"]
+ 56["SweepEdge Opposite"]
+ 57["SweepEdge Opposite"]
+ 65["Sweep Extrusion
[1203, 1234, 0]"]
+ 66[Wall]
+ 67[Wall]
+ 68[Wall]
+ 69[Wall]
+ 70["Cap Start"]
+ 71["Cap End"]
+ 72["SweepEdge Opposite"]
+ 73["SweepEdge Opposite"]
+ 74["SweepEdge Opposite"]
+ 82["Sweep Extrusion
[1203, 1234, 0]"]
83[Wall]
84[Wall]
- 85["Cap Start"]
- 86["Cap End"]
- 87["SweepEdge Opposite"]
- 88["SweepEdge Adjacent"]
+ 85[Wall]
+ 86[Wall]
+ 87["Cap Start"]
+ 88["Cap End"]
89["SweepEdge Opposite"]
- 90["SweepEdge Adjacent"]
+ 90["SweepEdge Opposite"]
91["SweepEdge Opposite"]
- 92["SweepEdge Adjacent"]
- 93["SweepEdge Opposite"]
- 94["SweepEdge Adjacent"]
- 102["Sweep Extrusion
[1203, 1234, 0]"]
+ 99["Sweep Extrusion
[1203, 1234, 0]"]
+ 100[Wall]
+ 101[Wall]
+ 102[Wall]
103[Wall]
- 104[Wall]
- 105[Wall]
- 106[Wall]
- 107["Cap Start"]
- 108["Cap End"]
- 109["SweepEdge Opposite"]
- 110["SweepEdge Adjacent"]
- 111["SweepEdge Opposite"]
- 112["SweepEdge Adjacent"]
- 113["SweepEdge Opposite"]
- 114["SweepEdge Adjacent"]
- 115["SweepEdge Opposite"]
- 116["SweepEdge Adjacent"]
- 124["Sweep Extrusion
[1203, 1234, 0]"]
- 125[Wall]
- 126[Wall]
- 127[Wall]
- 128[Wall]
- 129["Cap Start"]
- 130["Cap End"]
- 131["SweepEdge Opposite"]
- 132["SweepEdge Adjacent"]
- 133["SweepEdge Opposite"]
- 134["SweepEdge Adjacent"]
- 135["SweepEdge Opposite"]
- 136["SweepEdge Adjacent"]
- 137["SweepEdge Opposite"]
- 138["SweepEdge Adjacent"]
+ 104["Cap Start"]
+ 105["Cap End"]
+ 106["SweepEdge Opposite"]
+ 107["SweepEdge Opposite"]
+ 108["SweepEdge Opposite"]
1 --- 7
- 2 --- 29
- 3 --- 51
- 4 --- 117
- 5 --- 73
- 6 --- 95
+ 2 --- 24
+ 3 --- 41
+ 4 --- 92
+ 5 --- 58
+ 6 --- 75
7 --- 8
7 --- 9
7 --- 10
@@ -164,17 +134,16 @@ flowchart LR
7 ---- 14
7 --- 13
8 --- 18
- 8 --- 27
- 8 --- 28
+ 8 --- 23
+ 8 x--> 19
9 --- 17
- 9 --- 25
- 9 --- 26
+ 9 --- 22
+ 9 x--> 19
10 --- 16
- 10 --- 23
- 10 --- 24
+ 10 --- 21
+ 10 x--> 19
11 --- 15
- 11 --- 21
- 11 --- 22
+ 11 x--> 19
14 --- 15
14 --- 16
14 --- 17
@@ -184,174 +153,175 @@ flowchart LR
14 --- 21
14 --- 22
14 --- 23
- 14 --- 24
- 14 --- 25
- 14 --- 26
- 14 --- 27
- 14 --- 28
- 29 --- 30
- 29 --- 31
- 29 --- 32
- 29 --- 33
- 29 --- 34
- 29 ---- 36
- 29 --- 35
- 30 --- 40
- 30 --- 49
- 30 --- 50
+ 21 <--x 16
+ 21 <--x 20
+ 22 <--x 17
+ 22 <--x 20
+ 23 <--x 18
+ 23 <--x 20
+ 24 --- 25
+ 24 --- 26
+ 24 --- 27
+ 24 --- 28
+ 24 --- 29
+ 24 ---- 31
+ 24 --- 30
+ 25 --- 35
+ 25 --- 40
+ 25 x--> 36
+ 26 --- 34
+ 26 --- 39
+ 26 x--> 36
+ 27 --- 33
+ 27 --- 38
+ 27 x--> 36
+ 28 --- 32
+ 28 x--> 36
+ 31 --- 32
+ 31 --- 33
+ 31 --- 34
+ 31 --- 35
+ 31 --- 36
+ 31 --- 37
+ 31 --- 38
31 --- 39
- 31 --- 47
- 31 --- 48
- 32 --- 38
- 32 --- 45
- 32 --- 46
- 33 --- 37
- 33 --- 43
- 33 --- 44
- 36 --- 37
- 36 --- 38
- 36 --- 39
- 36 --- 40
- 36 --- 41
- 36 --- 42
- 36 --- 43
- 36 --- 44
- 36 --- 45
- 36 --- 46
- 36 --- 47
- 36 --- 48
- 36 --- 49
- 36 --- 50
- 51 --- 52
- 51 --- 53
- 51 --- 54
- 51 --- 55
- 51 --- 56
- 51 ---- 58
- 51 --- 57
- 52 --- 62
- 52 --- 71
- 52 --- 72
- 53 --- 61
- 53 --- 69
- 53 --- 70
- 54 --- 60
- 54 --- 67
- 54 --- 68
- 55 --- 59
- 55 --- 65
- 55 --- 66
+ 31 --- 40
+ 38 <--x 33
+ 38 <--x 37
+ 39 <--x 34
+ 39 <--x 37
+ 40 <--x 35
+ 40 <--x 37
+ 41 --- 42
+ 41 --- 43
+ 41 --- 44
+ 41 --- 45
+ 41 --- 46
+ 41 ---- 48
+ 41 --- 47
+ 42 --- 52
+ 42 --- 57
+ 42 x--> 53
+ 43 --- 51
+ 43 --- 56
+ 43 x--> 53
+ 44 --- 50
+ 44 --- 55
+ 44 x--> 53
+ 45 --- 49
+ 45 x--> 53
+ 48 --- 49
+ 48 --- 50
+ 48 --- 51
+ 48 --- 52
+ 48 --- 53
+ 48 --- 54
+ 48 --- 55
+ 48 --- 56
+ 48 --- 57
+ 55 <--x 50
+ 55 <--x 54
+ 56 <--x 51
+ 56 <--x 54
+ 57 <--x 52
+ 57 <--x 54
58 --- 59
58 --- 60
58 --- 61
58 --- 62
58 --- 63
+ 58 ---- 65
58 --- 64
- 58 --- 65
- 58 --- 66
- 58 --- 67
- 58 --- 68
- 58 --- 69
- 58 --- 70
- 58 --- 71
- 58 --- 72
- 73 --- 74
- 73 --- 75
- 73 --- 76
- 73 --- 77
- 73 --- 78
- 73 ---- 80
- 73 --- 79
- 74 --- 84
- 74 --- 93
- 74 --- 94
- 75 --- 83
- 75 --- 91
- 75 --- 92
- 76 --- 82
- 76 --- 89
- 76 --- 90
- 77 --- 81
- 77 --- 87
- 77 --- 88
- 80 --- 81
- 80 --- 82
- 80 --- 83
- 80 --- 84
- 80 --- 85
- 80 --- 86
- 80 --- 87
- 80 --- 88
- 80 --- 89
- 80 --- 90
- 80 --- 91
- 80 --- 92
- 80 --- 93
- 80 --- 94
- 95 --- 96
- 95 --- 97
- 95 --- 98
- 95 --- 99
- 95 --- 100
- 95 ---- 102
+ 59 --- 69
+ 59 --- 74
+ 59 x--> 70
+ 60 --- 68
+ 60 --- 73
+ 60 x--> 70
+ 61 --- 67
+ 61 --- 72
+ 61 x--> 70
+ 62 --- 66
+ 62 x--> 70
+ 65 --- 66
+ 65 --- 67
+ 65 --- 68
+ 65 --- 69
+ 65 --- 70
+ 65 --- 71
+ 65 --- 72
+ 65 --- 73
+ 65 --- 74
+ 72 <--x 67
+ 72 <--x 71
+ 73 <--x 68
+ 73 <--x 71
+ 74 <--x 69
+ 74 <--x 71
+ 75 --- 76
+ 75 --- 77
+ 75 --- 78
+ 75 --- 79
+ 75 --- 80
+ 75 ---- 82
+ 75 --- 81
+ 76 --- 86
+ 76 --- 91
+ 76 x--> 87
+ 77 --- 85
+ 77 --- 90
+ 77 x--> 87
+ 78 --- 84
+ 78 --- 89
+ 78 x--> 87
+ 79 --- 83
+ 79 x--> 87
+ 82 --- 83
+ 82 --- 84
+ 82 --- 85
+ 82 --- 86
+ 82 --- 87
+ 82 --- 88
+ 82 --- 89
+ 82 --- 90
+ 82 --- 91
+ 89 <--x 84
+ 89 <--x 88
+ 90 <--x 85
+ 90 <--x 88
+ 91 <--x 86
+ 91 <--x 88
+ 92 --- 93
+ 92 --- 94
+ 92 --- 95
+ 92 --- 96
+ 92 --- 97
+ 92 ---- 99
+ 92 --- 98
+ 93 --- 103
+ 93 --- 108
+ 93 x--> 104
+ 94 --- 102
+ 94 --- 107
+ 94 x--> 104
95 --- 101
- 96 --- 106
- 96 --- 115
- 96 --- 116
- 97 --- 105
- 97 --- 113
- 97 --- 114
- 98 --- 104
- 98 --- 111
- 98 --- 112
+ 95 --- 106
+ 95 x--> 104
+ 96 --- 100
+ 96 x--> 104
+ 99 --- 100
+ 99 --- 101
+ 99 --- 102
99 --- 103
- 99 --- 109
- 99 --- 110
- 102 --- 103
- 102 --- 104
- 102 --- 105
- 102 --- 106
- 102 --- 107
- 102 --- 108
- 102 --- 109
- 102 --- 110
- 102 --- 111
- 102 --- 112
- 102 --- 113
- 102 --- 114
- 102 --- 115
- 102 --- 116
- 117 --- 118
- 117 --- 119
- 117 --- 120
- 117 --- 121
- 117 --- 122
- 117 ---- 124
- 117 --- 123
- 118 --- 128
- 118 --- 137
- 118 --- 138
- 119 --- 127
- 119 --- 135
- 119 --- 136
- 120 --- 126
- 120 --- 133
- 120 --- 134
- 121 --- 125
- 121 --- 131
- 121 --- 132
- 124 --- 125
- 124 --- 126
- 124 --- 127
- 124 --- 128
- 124 --- 129
- 124 --- 130
- 124 --- 131
- 124 --- 132
- 124 --- 133
- 124 --- 134
- 124 --- 135
- 124 --- 136
- 124 --- 137
- 124 --- 138
+ 99 --- 104
+ 99 --- 105
+ 99 --- 106
+ 99 --- 107
+ 99 --- 108
+ 106 <--x 101
+ 106 <--x 105
+ 107 <--x 102
+ 107 <--x 105
+ 108 <--x 103
+ 108 <--x 105
```
diff --git a/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/artifact_commands.snap
index 89c0421f6..d536637f0 100644
--- a/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/artifact_commands.snap
@@ -956,20 +956,27 @@ description: Artifact commands cycloidal-gear.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -996,20 +1003,27 @@ description: Artifact commands cycloidal-gear.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1032,6 +1046,33 @@ description: Artifact commands cycloidal-gear.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1052,6 +1093,127 @@ description: Artifact commands cycloidal-gear.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/artifact_graph_flowchart.snap.md
index 0f33d1161..4716968bd 100644
--- a/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/cycloidal-gear/artifact_graph_flowchart.snap.md
@@ -34,6 +34,7 @@ flowchart LR
end
subgraph path28 [Path]
28["Path
[631, 865, 0]"]
+ 29["Segment
[875, 959, 0]"]
35["Segment
[1282, 1290, 0]"]
36[Solid2d]
end
@@ -45,7 +46,6 @@ flowchart LR
1["Plane
[587, 620, 0]"]
14["Plane
[587, 620, 0]"]
27["Plane
[587, 620, 0]"]
- 29["SweepEdge Opposite"]
30["SweepEdge Opposite"]
31["SweepEdge Opposite"]
32["SweepEdge Opposite"]
@@ -60,15 +60,9 @@ flowchart LR
46[Wall]
47["Cap Start"]
48["Cap End"]
- 49["SweepEdge Adjacent"]
- 50["SweepEdge Adjacent"]
- 51["SweepEdge Adjacent"]
- 52["SweepEdge Adjacent"]
- 53["SweepEdge Adjacent"]
- 54["SweepEdge Adjacent"]
- 55["StartSketchOnPlane
[573, 621, 0]"]
- 56["StartSketchOnPlane
[573, 621, 0]"]
- 57["StartSketchOnPlane
[573, 621, 0]"]
+ 49["StartSketchOnPlane
[573, 621, 0]"]
+ 50["StartSketchOnPlane
[573, 621, 0]"]
+ 51["StartSketchOnPlane
[573, 621, 0]"]
1 --- 2
1 --- 11
2 --- 3
@@ -81,23 +75,22 @@ flowchart LR
2 ---- 40
2 --- 10
3 --- 41
- 3 --- 29
- 3 --- 49
+ 3 x--> 47
4 --- 42
4 --- 30
- 4 --- 50
+ 4 x--> 47
5 --- 43
5 --- 31
- 5 --- 51
+ 5 x--> 47
6 --- 44
6 --- 32
- 6 --- 52
+ 6 x--> 47
7 --- 45
7 --- 33
- 7 --- 53
+ 7 x--> 47
8 --- 46
8 --- 34
- 8 --- 54
+ 8 x--> 47
11 --- 12
11 --- 13
14 --- 15
@@ -115,7 +108,7 @@ flowchart LR
24 --- 26
27 --- 28
27 --- 37
- 28 x--> 29
+ 28 --- 29
28 x--> 30
28 x--> 31
28 x--> 32
@@ -124,12 +117,23 @@ flowchart LR
28 --- 35
28 x---> 40
28 --- 36
- 40 --- 29
+ 29 x--> 41
+ 29 x--> 48
40 --- 30
+ 30 x--> 42
+ 30 x--> 48
40 --- 31
+ 31 x--> 43
+ 31 x--> 48
40 --- 32
+ 32 x--> 44
+ 32 x--> 48
40 --- 33
+ 33 x--> 45
+ 33 x--> 48
40 --- 34
+ 34 x--> 46
+ 34 x--> 48
37 --- 38
37 --- 39
40 --- 41
@@ -140,13 +144,7 @@ flowchart LR
40 --- 46
40 --- 47
40 --- 48
- 40 --- 49
- 40 --- 50
- 40 --- 51
- 40 --- 52
- 40 --- 53
- 40 --- 54
- 1 <--x 55
- 14 <--x 56
- 27 <--x 57
+ 1 <--x 49
+ 14 <--x 50
+ 27 <--x 51
```
diff --git a/rust/kcl-lib/tests/kcl_samples/dodecahedron/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/dodecahedron/artifact_commands.snap
index a81f0a4a2..1883006d4 100644
--- a/rust/kcl-lib/tests/kcl_samples/dodecahedron/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/dodecahedron/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands dodecahedron.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -537,20 +645,27 @@ description: Artifact commands dodecahedron.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -573,6 +688,33 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -593,6 +735,80 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -843,20 +1059,27 @@ description: Artifact commands dodecahedron.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -879,6 +1102,33 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -899,6 +1149,80 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1149,20 +1473,27 @@ description: Artifact commands dodecahedron.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1185,6 +1516,33 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1205,6 +1563,80 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1455,20 +1887,27 @@ description: Artifact commands dodecahedron.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1491,6 +1930,33 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1511,6 +1977,80 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1761,20 +2301,27 @@ description: Artifact commands dodecahedron.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1797,6 +2344,33 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1817,6 +2391,80 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2067,20 +2715,27 @@ description: Artifact commands dodecahedron.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2103,6 +2758,33 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2123,6 +2805,80 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2373,20 +3129,27 @@ description: Artifact commands dodecahedron.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2409,6 +3172,33 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2429,6 +3219,80 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2679,20 +3543,27 @@ description: Artifact commands dodecahedron.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2715,6 +3586,33 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2735,6 +3633,80 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2985,20 +3957,27 @@ description: Artifact commands dodecahedron.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3021,6 +4000,33 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3041,6 +4047,80 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3291,20 +4371,27 @@ description: Artifact commands dodecahedron.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3327,6 +4414,33 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3347,6 +4461,80 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3597,20 +4785,27 @@ description: Artifact commands dodecahedron.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3633,6 +4828,33 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3653,6 +4875,80 @@ description: Artifact commands dodecahedron.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/dodecahedron/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/dodecahedron/artifact_graph_flowchart.snap.md
index 9c2cf3d88..925d58939 100644
--- a/rust/kcl-lib/tests/kcl_samples/dodecahedron/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/dodecahedron/artifact_graph_flowchart.snap.md
@@ -8,93 +8,93 @@ flowchart LR
6["Segment
[731, 738, 0]"]
7[Solid2d]
end
- subgraph path24 [Path]
- 24["Path
[496, 547, 0]"]
- 25["Segment
[555, 606, 0]"]
- 26["Segment
[614, 664, 0]"]
- 27["Segment
[672, 723, 0]"]
- 28["Segment
[731, 738, 0]"]
- 29[Solid2d]
+ subgraph path19 [Path]
+ 19["Path
[496, 547, 0]"]
+ 20["Segment
[555, 606, 0]"]
+ 21["Segment
[614, 664, 0]"]
+ 22["Segment
[672, 723, 0]"]
+ 23["Segment
[731, 738, 0]"]
+ 24[Solid2d]
end
- subgraph path46 [Path]
- 46["Path
[496, 547, 0]"]
- 47["Segment
[555, 606, 0]"]
- 48["Segment
[614, 664, 0]"]
- 49["Segment
[672, 723, 0]"]
- 50["Segment
[731, 738, 0]"]
- 51[Solid2d]
+ subgraph path36 [Path]
+ 36["Path
[496, 547, 0]"]
+ 37["Segment
[555, 606, 0]"]
+ 38["Segment
[614, 664, 0]"]
+ 39["Segment
[672, 723, 0]"]
+ 40["Segment
[731, 738, 0]"]
+ 41[Solid2d]
end
- subgraph path68 [Path]
- 68["Path
[496, 547, 0]"]
- 69["Segment
[555, 606, 0]"]
- 70["Segment
[614, 664, 0]"]
- 71["Segment
[672, 723, 0]"]
- 72["Segment
[731, 738, 0]"]
- 73[Solid2d]
+ subgraph path53 [Path]
+ 53["Path
[496, 547, 0]"]
+ 54["Segment
[555, 606, 0]"]
+ 55["Segment
[614, 664, 0]"]
+ 56["Segment
[672, 723, 0]"]
+ 57["Segment
[731, 738, 0]"]
+ 58[Solid2d]
end
- subgraph path90 [Path]
- 90["Path
[496, 547, 0]"]
- 91["Segment
[555, 606, 0]"]
- 92["Segment
[614, 664, 0]"]
- 93["Segment
[672, 723, 0]"]
- 94["Segment
[731, 738, 0]"]
- 95[Solid2d]
+ subgraph path70 [Path]
+ 70["Path
[496, 547, 0]"]
+ 71["Segment
[555, 606, 0]"]
+ 72["Segment
[614, 664, 0]"]
+ 73["Segment
[672, 723, 0]"]
+ 74["Segment
[731, 738, 0]"]
+ 75[Solid2d]
end
- subgraph path112 [Path]
- 112["Path
[496, 547, 0]"]
- 113["Segment
[555, 606, 0]"]
- 114["Segment
[614, 664, 0]"]
- 115["Segment
[672, 723, 0]"]
- 116["Segment
[731, 738, 0]"]
- 117[Solid2d]
+ subgraph path87 [Path]
+ 87["Path
[496, 547, 0]"]
+ 88["Segment
[555, 606, 0]"]
+ 89["Segment
[614, 664, 0]"]
+ 90["Segment
[672, 723, 0]"]
+ 91["Segment
[731, 738, 0]"]
+ 92[Solid2d]
end
- subgraph path134 [Path]
- 134["Path
[496, 547, 0]"]
- 135["Segment
[555, 606, 0]"]
- 136["Segment
[614, 664, 0]"]
- 137["Segment
[672, 723, 0]"]
- 138["Segment
[731, 738, 0]"]
- 139[Solid2d]
+ subgraph path104 [Path]
+ 104["Path
[496, 547, 0]"]
+ 105["Segment
[555, 606, 0]"]
+ 106["Segment
[614, 664, 0]"]
+ 107["Segment
[672, 723, 0]"]
+ 108["Segment
[731, 738, 0]"]
+ 109[Solid2d]
end
- subgraph path156 [Path]
- 156["Path
[496, 547, 0]"]
- 157["Segment
[555, 606, 0]"]
- 158["Segment
[614, 664, 0]"]
- 159["Segment
[672, 723, 0]"]
- 160["Segment
[731, 738, 0]"]
- 161[Solid2d]
+ subgraph path121 [Path]
+ 121["Path
[496, 547, 0]"]
+ 122["Segment
[555, 606, 0]"]
+ 123["Segment
[614, 664, 0]"]
+ 124["Segment
[672, 723, 0]"]
+ 125["Segment
[731, 738, 0]"]
+ 126[Solid2d]
end
- subgraph path178 [Path]
- 178["Path
[496, 547, 0]"]
- 179["Segment
[555, 606, 0]"]
- 180["Segment
[614, 664, 0]"]
- 181["Segment
[672, 723, 0]"]
- 182["Segment
[731, 738, 0]"]
- 183[Solid2d]
+ subgraph path138 [Path]
+ 138["Path
[496, 547, 0]"]
+ 139["Segment
[555, 606, 0]"]
+ 140["Segment
[614, 664, 0]"]
+ 141["Segment
[672, 723, 0]"]
+ 142["Segment
[731, 738, 0]"]
+ 143[Solid2d]
end
- subgraph path200 [Path]
- 200["Path
[496, 547, 0]"]
- 201["Segment
[555, 606, 0]"]
- 202["Segment
[614, 664, 0]"]
- 203["Segment
[672, 723, 0]"]
- 204["Segment
[731, 738, 0]"]
- 205[Solid2d]
+ subgraph path155 [Path]
+ 155["Path
[496, 547, 0]"]
+ 156["Segment
[555, 606, 0]"]
+ 157["Segment
[614, 664, 0]"]
+ 158["Segment
[672, 723, 0]"]
+ 159["Segment
[731, 738, 0]"]
+ 160[Solid2d]
end
- subgraph path222 [Path]
- 222["Path
[496, 547, 0]"]
- 223["Segment
[555, 606, 0]"]
- 224["Segment
[614, 664, 0]"]
- 225["Segment
[672, 723, 0]"]
- 226["Segment
[731, 738, 0]"]
- 227[Solid2d]
+ subgraph path172 [Path]
+ 172["Path
[496, 547, 0]"]
+ 173["Segment
[555, 606, 0]"]
+ 174["Segment
[614, 664, 0]"]
+ 175["Segment
[672, 723, 0]"]
+ 176["Segment
[731, 738, 0]"]
+ 177[Solid2d]
end
- subgraph path244 [Path]
- 244["Path
[496, 547, 0]"]
- 245["Segment
[555, 606, 0]"]
- 246["Segment
[614, 664, 0]"]
- 247["Segment
[672, 723, 0]"]
- 248["Segment
[731, 738, 0]"]
- 249[Solid2d]
+ subgraph path189 [Path]
+ 189["Path
[496, 547, 0]"]
+ 190["Segment
[555, 606, 0]"]
+ 191["Segment
[614, 664, 0]"]
+ 192["Segment
[672, 723, 0]"]
+ 193["Segment
[731, 738, 0]"]
+ 194[Solid2d]
end
1["Plane
[471, 488, 0]"]
8["Sweep Extrusion
[752, 802, 0]"]
@@ -105,190 +105,130 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 23["Plane
[471, 488, 0]"]
- 30["Sweep Extrusion
[752, 802, 0]"]
- 31[Wall]
- 32[Wall]
- 33[Wall]
- 34[Wall]
- 35["Cap Start"]
- 36["Cap End"]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
- 39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 41["SweepEdge Opposite"]
- 42["SweepEdge Adjacent"]
- 43["SweepEdge Opposite"]
- 44["SweepEdge Adjacent"]
- 45["Plane
[471, 488, 0]"]
- 52["Sweep Extrusion
[752, 802, 0]"]
- 53[Wall]
- 54[Wall]
- 55[Wall]
- 56[Wall]
- 57["Cap Start"]
- 58["Cap End"]
- 59["SweepEdge Opposite"]
- 60["SweepEdge Adjacent"]
- 61["SweepEdge Opposite"]
- 62["SweepEdge Adjacent"]
- 63["SweepEdge Opposite"]
- 64["SweepEdge Adjacent"]
- 65["SweepEdge Opposite"]
- 66["SweepEdge Adjacent"]
- 67["Plane
[471, 488, 0]"]
- 74["Sweep Extrusion
[752, 802, 0]"]
- 75[Wall]
- 76[Wall]
+ 18["Plane
[471, 488, 0]"]
+ 25["Sweep Extrusion
[752, 802, 0]"]
+ 26[Wall]
+ 27[Wall]
+ 28[Wall]
+ 29[Wall]
+ 30["Cap Start"]
+ 31["Cap End"]
+ 32["SweepEdge Opposite"]
+ 33["SweepEdge Opposite"]
+ 34["SweepEdge Opposite"]
+ 35["Plane
[471, 488, 0]"]
+ 42["Sweep Extrusion
[752, 802, 0]"]
+ 43[Wall]
+ 44[Wall]
+ 45[Wall]
+ 46[Wall]
+ 47["Cap Start"]
+ 48["Cap End"]
+ 49["SweepEdge Opposite"]
+ 50["SweepEdge Opposite"]
+ 51["SweepEdge Opposite"]
+ 52["Plane
[471, 488, 0]"]
+ 59["Sweep Extrusion
[752, 802, 0]"]
+ 60[Wall]
+ 61[Wall]
+ 62[Wall]
+ 63[Wall]
+ 64["Cap Start"]
+ 65["Cap End"]
+ 66["SweepEdge Opposite"]
+ 67["SweepEdge Opposite"]
+ 68["SweepEdge Opposite"]
+ 69["Plane
[471, 488, 0]"]
+ 76["Sweep Extrusion
[752, 802, 0]"]
77[Wall]
78[Wall]
- 79["Cap Start"]
- 80["Cap End"]
- 81["SweepEdge Opposite"]
- 82["SweepEdge Adjacent"]
+ 79[Wall]
+ 80[Wall]
+ 81["Cap Start"]
+ 82["Cap End"]
83["SweepEdge Opposite"]
- 84["SweepEdge Adjacent"]
+ 84["SweepEdge Opposite"]
85["SweepEdge Opposite"]
- 86["SweepEdge Adjacent"]
- 87["SweepEdge Opposite"]
- 88["SweepEdge Adjacent"]
- 89["Plane
[471, 488, 0]"]
- 96["Sweep Extrusion
[752, 802, 0]"]
+ 86["Plane
[471, 488, 0]"]
+ 93["Sweep Extrusion
[752, 802, 0]"]
+ 94[Wall]
+ 95[Wall]
+ 96[Wall]
97[Wall]
- 98[Wall]
- 99[Wall]
- 100[Wall]
- 101["Cap Start"]
- 102["Cap End"]
- 103["SweepEdge Opposite"]
- 104["SweepEdge Adjacent"]
- 105["SweepEdge Opposite"]
- 106["SweepEdge Adjacent"]
- 107["SweepEdge Opposite"]
- 108["SweepEdge Adjacent"]
- 109["SweepEdge Opposite"]
- 110["SweepEdge Adjacent"]
- 111["Plane
[471, 488, 0]"]
- 118["Sweep Extrusion
[752, 802, 0]"]
- 119[Wall]
- 120[Wall]
- 121[Wall]
- 122[Wall]
- 123["Cap Start"]
- 124["Cap End"]
- 125["SweepEdge Opposite"]
- 126["SweepEdge Adjacent"]
- 127["SweepEdge Opposite"]
- 128["SweepEdge Adjacent"]
- 129["SweepEdge Opposite"]
- 130["SweepEdge Adjacent"]
- 131["SweepEdge Opposite"]
- 132["SweepEdge Adjacent"]
- 133["Plane
[471, 488, 0]"]
- 140["Sweep Extrusion
[752, 802, 0]"]
- 141[Wall]
- 142[Wall]
- 143[Wall]
- 144[Wall]
- 145["Cap Start"]
- 146["Cap End"]
- 147["SweepEdge Opposite"]
- 148["SweepEdge Adjacent"]
- 149["SweepEdge Opposite"]
- 150["SweepEdge Adjacent"]
+ 98["Cap Start"]
+ 99["Cap End"]
+ 100["SweepEdge Opposite"]
+ 101["SweepEdge Opposite"]
+ 102["SweepEdge Opposite"]
+ 103["Plane
[471, 488, 0]"]
+ 110["Sweep Extrusion
[752, 802, 0]"]
+ 111[Wall]
+ 112[Wall]
+ 113[Wall]
+ 114[Wall]
+ 115["Cap Start"]
+ 116["Cap End"]
+ 117["SweepEdge Opposite"]
+ 118["SweepEdge Opposite"]
+ 119["SweepEdge Opposite"]
+ 120["Plane
[471, 488, 0]"]
+ 127["Sweep Extrusion
[752, 802, 0]"]
+ 128[Wall]
+ 129[Wall]
+ 130[Wall]
+ 131[Wall]
+ 132["Cap Start"]
+ 133["Cap End"]
+ 134["SweepEdge Opposite"]
+ 135["SweepEdge Opposite"]
+ 136["SweepEdge Opposite"]
+ 137["Plane
[471, 488, 0]"]
+ 144["Sweep Extrusion
[752, 802, 0]"]
+ 145[Wall]
+ 146[Wall]
+ 147[Wall]
+ 148[Wall]
+ 149["Cap Start"]
+ 150["Cap End"]
151["SweepEdge Opposite"]
- 152["SweepEdge Adjacent"]
+ 152["SweepEdge Opposite"]
153["SweepEdge Opposite"]
- 154["SweepEdge Adjacent"]
- 155["Plane
[471, 488, 0]"]
- 162["Sweep Extrusion
[752, 802, 0]"]
+ 154["Plane
[471, 488, 0]"]
+ 161["Sweep Extrusion
[752, 802, 0]"]
+ 162[Wall]
163[Wall]
164[Wall]
165[Wall]
- 166[Wall]
- 167["Cap Start"]
- 168["Cap End"]
+ 166["Cap Start"]
+ 167["Cap End"]
+ 168["SweepEdge Opposite"]
169["SweepEdge Opposite"]
- 170["SweepEdge Adjacent"]
- 171["SweepEdge Opposite"]
- 172["SweepEdge Adjacent"]
- 173["SweepEdge Opposite"]
- 174["SweepEdge Adjacent"]
- 175["SweepEdge Opposite"]
- 176["SweepEdge Adjacent"]
- 177["Plane
[471, 488, 0]"]
- 184["Sweep Extrusion
[752, 802, 0]"]
- 185[Wall]
- 186[Wall]
- 187[Wall]
- 188[Wall]
- 189["Cap Start"]
- 190["Cap End"]
- 191["SweepEdge Opposite"]
- 192["SweepEdge Adjacent"]
- 193["SweepEdge Opposite"]
- 194["SweepEdge Adjacent"]
- 195["SweepEdge Opposite"]
- 196["SweepEdge Adjacent"]
- 197["SweepEdge Opposite"]
- 198["SweepEdge Adjacent"]
- 199["Plane
[471, 488, 0]"]
- 206["Sweep Extrusion
[752, 802, 0]"]
- 207[Wall]
- 208[Wall]
- 209[Wall]
- 210[Wall]
- 211["Cap Start"]
- 212["Cap End"]
- 213["SweepEdge Opposite"]
- 214["SweepEdge Adjacent"]
- 215["SweepEdge Opposite"]
- 216["SweepEdge Adjacent"]
- 217["SweepEdge Opposite"]
- 218["SweepEdge Adjacent"]
- 219["SweepEdge Opposite"]
- 220["SweepEdge Adjacent"]
- 221["Plane
[471, 488, 0]"]
- 228["Sweep Extrusion
[752, 802, 0]"]
- 229[Wall]
- 230[Wall]
- 231[Wall]
- 232[Wall]
- 233["Cap Start"]
- 234["Cap End"]
- 235["SweepEdge Opposite"]
- 236["SweepEdge Adjacent"]
- 237["SweepEdge Opposite"]
- 238["SweepEdge Adjacent"]
- 239["SweepEdge Opposite"]
- 240["SweepEdge Adjacent"]
- 241["SweepEdge Opposite"]
- 242["SweepEdge Adjacent"]
- 243["Plane
[471, 488, 0]"]
- 250["Sweep Extrusion
[752, 802, 0]"]
- 251[Wall]
- 252[Wall]
- 253[Wall]
- 254[Wall]
- 255["Cap Start"]
- 256["Cap End"]
- 257["SweepEdge Opposite"]
- 258["SweepEdge Adjacent"]
- 259["SweepEdge Opposite"]
- 260["SweepEdge Adjacent"]
- 261["SweepEdge Opposite"]
- 262["SweepEdge Adjacent"]
- 263["SweepEdge Opposite"]
- 264["SweepEdge Adjacent"]
- 265["CompositeSolid Intersect
[1997, 2027, 0]"]
+ 170["SweepEdge Opposite"]
+ 171["Plane
[471, 488, 0]"]
+ 178["Sweep Extrusion
[752, 802, 0]"]
+ 179[Wall]
+ 180[Wall]
+ 181[Wall]
+ 182[Wall]
+ 183["Cap Start"]
+ 184["Cap End"]
+ 185["SweepEdge Opposite"]
+ 186["SweepEdge Opposite"]
+ 187["SweepEdge Opposite"]
+ 188["Plane
[471, 488, 0]"]
+ 195["Sweep Extrusion
[752, 802, 0]"]
+ 196[Wall]
+ 197[Wall]
+ 198[Wall]
+ 199[Wall]
+ 200["Cap Start"]
+ 201["Cap End"]
+ 202["SweepEdge Opposite"]
+ 203["SweepEdge Opposite"]
+ 204["SweepEdge Opposite"]
+ 205["CompositeSolid Intersect
[1997, 2027, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -297,17 +237,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 9
- 3 --- 15
- 3 --- 16
+ 3 x--> 13
4 --- 10
- 4 --- 17
- 4 --- 18
+ 4 --- 15
+ 4 x--> 13
5 --- 11
- 5 --- 19
- 5 --- 20
+ 5 --- 16
+ 5 x--> 13
6 --- 12
- 6 --- 21
- 6 --- 22
+ 6 --- 17
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -317,374 +256,375 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 23 --- 24
- 24 --- 25
- 24 --- 26
- 24 --- 27
- 24 --- 28
- 24 ---- 30
- 24 --- 29
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 18 --- 19
+ 19 --- 20
+ 19 --- 21
+ 19 --- 22
+ 19 --- 23
+ 19 ---- 25
+ 19 --- 24
+ 20 --- 26
+ 20 x--> 30
+ 21 --- 27
+ 21 --- 32
+ 21 x--> 30
+ 22 --- 28
+ 22 --- 33
+ 22 x--> 30
+ 23 --- 29
+ 23 --- 34
+ 23 x--> 30
+ 25 --- 26
+ 25 --- 27
+ 25 --- 28
+ 25 --- 29
+ 25 --- 30
25 --- 31
- 25 --- 37
- 25 --- 38
- 26 --- 32
- 26 --- 39
- 26 --- 40
- 27 --- 33
- 27 --- 41
- 27 --- 42
- 28 --- 34
- 28 --- 43
- 28 --- 44
- 30 --- 31
- 30 --- 32
- 30 --- 33
- 30 --- 34
- 30 --- 35
- 30 --- 36
- 30 --- 37
- 30 --- 38
- 30 --- 39
- 30 --- 40
- 30 --- 41
- 30 --- 42
- 30 --- 43
- 30 --- 44
- 45 --- 46
- 46 --- 47
- 46 --- 48
- 46 --- 49
- 46 --- 50
- 46 ---- 52
- 46 --- 51
- 47 --- 53
- 47 --- 59
- 47 --- 60
- 48 --- 54
- 48 --- 61
- 48 --- 62
- 49 --- 55
- 49 --- 63
- 49 --- 64
- 50 --- 56
- 50 --- 65
- 50 --- 66
+ 25 --- 32
+ 25 --- 33
+ 25 --- 34
+ 32 <--x 27
+ 32 <--x 31
+ 33 <--x 28
+ 33 <--x 31
+ 34 <--x 29
+ 34 <--x 31
+ 35 --- 36
+ 36 --- 37
+ 36 --- 38
+ 36 --- 39
+ 36 --- 40
+ 36 ---- 42
+ 36 --- 41
+ 37 --- 43
+ 37 x--> 47
+ 38 --- 44
+ 38 --- 49
+ 38 x--> 47
+ 39 --- 45
+ 39 --- 50
+ 39 x--> 47
+ 40 --- 46
+ 40 --- 51
+ 40 x--> 47
+ 42 --- 43
+ 42 --- 44
+ 42 --- 45
+ 42 --- 46
+ 42 --- 47
+ 42 --- 48
+ 42 --- 49
+ 42 --- 50
+ 42 --- 51
+ 49 <--x 44
+ 49 <--x 48
+ 50 <--x 45
+ 50 <--x 48
+ 51 <--x 46
+ 51 <--x 48
52 --- 53
- 52 --- 54
- 52 --- 55
- 52 --- 56
- 52 --- 57
- 52 --- 58
- 52 --- 59
- 52 --- 60
- 52 --- 61
- 52 --- 62
- 52 --- 63
- 52 --- 64
- 52 --- 65
- 52 --- 66
- 67 --- 68
- 68 --- 69
- 68 --- 70
- 68 --- 71
- 68 --- 72
- 68 ---- 74
- 68 --- 73
- 69 --- 75
- 69 --- 81
- 69 --- 82
- 70 --- 76
- 70 --- 83
- 70 --- 84
+ 53 --- 54
+ 53 --- 55
+ 53 --- 56
+ 53 --- 57
+ 53 ---- 59
+ 53 --- 58
+ 54 --- 60
+ 54 x--> 64
+ 55 --- 61
+ 55 --- 66
+ 55 x--> 64
+ 56 --- 62
+ 56 --- 67
+ 56 x--> 64
+ 57 --- 63
+ 57 --- 68
+ 57 x--> 64
+ 59 --- 60
+ 59 --- 61
+ 59 --- 62
+ 59 --- 63
+ 59 --- 64
+ 59 --- 65
+ 59 --- 66
+ 59 --- 67
+ 59 --- 68
+ 66 <--x 61
+ 66 <--x 65
+ 67 <--x 62
+ 67 <--x 65
+ 68 <--x 63
+ 68 <--x 65
+ 69 --- 70
+ 70 --- 71
+ 70 --- 72
+ 70 --- 73
+ 70 --- 74
+ 70 ---- 76
+ 70 --- 75
71 --- 77
- 71 --- 85
- 71 --- 86
+ 71 x--> 81
72 --- 78
- 72 --- 87
- 72 --- 88
- 74 --- 75
- 74 --- 76
- 74 --- 77
- 74 --- 78
- 74 --- 79
+ 72 --- 83
+ 72 x--> 81
+ 73 --- 79
+ 73 --- 84
+ 73 x--> 81
74 --- 80
- 74 --- 81
- 74 --- 82
- 74 --- 83
- 74 --- 84
74 --- 85
- 74 --- 86
- 74 --- 87
- 74 --- 88
- 89 --- 90
- 90 --- 91
- 90 --- 92
- 90 --- 93
- 90 --- 94
- 90 ---- 96
- 90 --- 95
+ 74 x--> 81
+ 76 --- 77
+ 76 --- 78
+ 76 --- 79
+ 76 --- 80
+ 76 --- 81
+ 76 --- 82
+ 76 --- 83
+ 76 --- 84
+ 76 --- 85
+ 83 <--x 78
+ 83 <--x 82
+ 84 <--x 79
+ 84 <--x 82
+ 85 <--x 80
+ 85 <--x 82
+ 86 --- 87
+ 87 --- 88
+ 87 --- 89
+ 87 --- 90
+ 87 --- 91
+ 87 ---- 93
+ 87 --- 92
+ 88 --- 94
+ 88 x--> 98
+ 89 --- 95
+ 89 --- 100
+ 89 x--> 98
+ 90 --- 96
+ 90 --- 101
+ 90 x--> 98
91 --- 97
- 91 --- 103
- 91 --- 104
- 92 --- 98
- 92 --- 105
- 92 --- 106
+ 91 --- 102
+ 91 x--> 98
+ 93 --- 94
+ 93 --- 95
+ 93 --- 96
+ 93 --- 97
+ 93 --- 98
93 --- 99
- 93 --- 107
- 93 --- 108
- 94 --- 100
- 94 --- 109
- 94 --- 110
- 96 --- 97
- 96 --- 98
- 96 --- 99
- 96 --- 100
- 96 --- 101
- 96 --- 102
- 96 --- 103
- 96 --- 104
- 96 --- 105
- 96 --- 106
- 96 --- 107
- 96 --- 108
- 96 --- 109
- 96 --- 110
- 111 --- 112
- 112 --- 113
- 112 --- 114
- 112 --- 115
- 112 --- 116
- 112 ---- 118
- 112 --- 117
- 113 --- 119
- 113 --- 125
- 113 --- 126
- 114 --- 120
- 114 --- 127
- 114 --- 128
- 115 --- 121
- 115 --- 129
- 115 --- 130
- 116 --- 122
- 116 --- 131
- 116 --- 132
- 118 --- 119
- 118 --- 120
- 118 --- 121
- 118 --- 122
- 118 --- 123
- 118 --- 124
- 118 --- 125
- 118 --- 126
- 118 --- 127
- 118 --- 128
- 118 --- 129
- 118 --- 130
- 118 --- 131
- 118 --- 132
- 133 --- 134
- 134 --- 135
- 134 --- 136
- 134 --- 137
- 134 --- 138
- 134 ---- 140
- 134 --- 139
- 135 --- 141
- 135 --- 147
- 135 --- 148
- 136 --- 142
- 136 --- 149
- 136 --- 150
- 137 --- 143
- 137 --- 151
- 137 --- 152
- 138 --- 144
- 138 --- 153
- 138 --- 154
- 140 --- 141
- 140 --- 142
- 140 --- 143
- 140 --- 144
- 140 --- 145
+ 93 --- 100
+ 93 --- 101
+ 93 --- 102
+ 100 <--x 95
+ 100 <--x 99
+ 101 <--x 96
+ 101 <--x 99
+ 102 <--x 97
+ 102 <--x 99
+ 103 --- 104
+ 104 --- 105
+ 104 --- 106
+ 104 --- 107
+ 104 --- 108
+ 104 ---- 110
+ 104 --- 109
+ 105 --- 111
+ 105 x--> 115
+ 106 --- 112
+ 106 --- 117
+ 106 x--> 115
+ 107 --- 113
+ 107 --- 118
+ 107 x--> 115
+ 108 --- 114
+ 108 --- 119
+ 108 x--> 115
+ 110 --- 111
+ 110 --- 112
+ 110 --- 113
+ 110 --- 114
+ 110 --- 115
+ 110 --- 116
+ 110 --- 117
+ 110 --- 118
+ 110 --- 119
+ 117 <--x 112
+ 117 <--x 116
+ 118 <--x 113
+ 118 <--x 116
+ 119 <--x 114
+ 119 <--x 116
+ 120 --- 121
+ 121 --- 122
+ 121 --- 123
+ 121 --- 124
+ 121 --- 125
+ 121 ---- 127
+ 121 --- 126
+ 122 --- 128
+ 122 x--> 132
+ 123 --- 129
+ 123 --- 134
+ 123 x--> 132
+ 124 --- 130
+ 124 --- 135
+ 124 x--> 132
+ 125 --- 131
+ 125 --- 136
+ 125 x--> 132
+ 127 --- 128
+ 127 --- 129
+ 127 --- 130
+ 127 --- 131
+ 127 --- 132
+ 127 --- 133
+ 127 --- 134
+ 127 --- 135
+ 127 --- 136
+ 134 <--x 129
+ 134 <--x 133
+ 135 <--x 130
+ 135 <--x 133
+ 136 <--x 131
+ 136 <--x 133
+ 137 --- 138
+ 138 --- 139
+ 138 --- 140
+ 138 --- 141
+ 138 --- 142
+ 138 ---- 144
+ 138 --- 143
+ 139 --- 145
+ 139 x--> 149
140 --- 146
- 140 --- 147
- 140 --- 148
- 140 --- 149
- 140 --- 150
140 --- 151
- 140 --- 152
- 140 --- 153
- 140 --- 154
+ 140 x--> 149
+ 141 --- 147
+ 141 --- 152
+ 141 x--> 149
+ 142 --- 148
+ 142 --- 153
+ 142 x--> 149
+ 144 --- 145
+ 144 --- 146
+ 144 --- 147
+ 144 --- 148
+ 144 --- 149
+ 144 --- 150
+ 144 --- 151
+ 144 --- 152
+ 144 --- 153
+ 151 <--x 146
+ 151 <--x 150
+ 152 <--x 147
+ 152 <--x 150
+ 153 <--x 148
+ 153 <--x 150
+ 154 --- 155
155 --- 156
- 156 --- 157
- 156 --- 158
- 156 --- 159
- 156 --- 160
- 156 ---- 162
- 156 --- 161
+ 155 --- 157
+ 155 --- 158
+ 155 --- 159
+ 155 ---- 161
+ 155 --- 160
+ 156 --- 162
+ 156 x--> 166
157 --- 163
- 157 --- 169
- 157 --- 170
+ 157 --- 168
+ 157 x--> 166
158 --- 164
- 158 --- 171
- 158 --- 172
+ 158 --- 169
+ 158 x--> 166
159 --- 165
- 159 --- 173
- 159 --- 174
- 160 --- 166
- 160 --- 175
- 160 --- 176
- 162 --- 163
- 162 --- 164
- 162 --- 165
- 162 --- 166
- 162 --- 167
- 162 --- 168
- 162 --- 169
- 162 --- 170
- 162 --- 171
- 162 --- 172
- 162 --- 173
- 162 --- 174
- 162 --- 175
- 162 --- 176
- 177 --- 178
+ 159 --- 170
+ 159 x--> 166
+ 161 --- 162
+ 161 --- 163
+ 161 --- 164
+ 161 --- 165
+ 161 --- 166
+ 161 --- 167
+ 161 --- 168
+ 161 --- 169
+ 161 --- 170
+ 168 <--x 163
+ 168 <--x 167
+ 169 <--x 164
+ 169 <--x 167
+ 170 <--x 165
+ 170 <--x 167
+ 171 --- 172
+ 172 --- 173
+ 172 --- 174
+ 172 --- 175
+ 172 --- 176
+ 172 ---- 178
+ 172 --- 177
+ 173 --- 179
+ 173 x--> 183
+ 174 --- 180
+ 174 --- 185
+ 174 x--> 183
+ 175 --- 181
+ 175 --- 186
+ 175 x--> 183
+ 176 --- 182
+ 176 --- 187
+ 176 x--> 183
178 --- 179
178 --- 180
178 --- 181
178 --- 182
- 178 ---- 184
178 --- 183
- 179 --- 185
- 179 --- 191
- 179 --- 192
- 180 --- 186
- 180 --- 193
- 180 --- 194
- 181 --- 187
- 181 --- 195
- 181 --- 196
- 182 --- 188
- 182 --- 197
- 182 --- 198
- 184 --- 185
- 184 --- 186
- 184 --- 187
- 184 --- 188
- 184 --- 189
- 184 --- 190
- 184 --- 191
- 184 --- 192
- 184 --- 193
- 184 --- 194
- 184 --- 195
- 184 --- 196
- 184 --- 197
- 184 --- 198
- 199 --- 200
- 200 --- 201
- 200 --- 202
- 200 --- 203
- 200 --- 204
- 200 ---- 206
- 200 --- 205
- 201 --- 207
- 201 --- 213
- 201 --- 214
- 202 --- 208
- 202 --- 215
- 202 --- 216
- 203 --- 209
- 203 --- 217
- 203 --- 218
- 204 --- 210
- 204 --- 219
- 204 --- 220
- 206 --- 207
- 206 --- 208
- 206 --- 209
- 206 --- 210
- 206 --- 211
- 206 --- 212
- 206 --- 213
- 206 --- 214
- 206 --- 215
- 206 --- 216
- 206 --- 217
- 206 --- 218
- 206 --- 219
- 206 --- 220
- 221 --- 222
- 222 --- 223
- 222 --- 224
- 222 --- 225
- 222 --- 226
- 222 ---- 228
- 222 --- 227
- 223 --- 229
- 223 --- 235
- 223 --- 236
- 224 --- 230
- 224 --- 237
- 224 --- 238
- 225 --- 231
- 225 --- 239
- 225 --- 240
- 226 --- 232
- 226 --- 241
- 226 --- 242
- 228 --- 229
- 228 --- 230
- 228 --- 231
- 228 --- 232
- 228 --- 233
- 228 --- 234
- 228 --- 235
- 228 --- 236
- 228 --- 237
- 228 --- 238
- 228 --- 239
- 228 --- 240
- 228 --- 241
- 228 --- 242
- 243 --- 244
- 244 --- 245
- 244 --- 246
- 244 --- 247
- 244 --- 248
- 244 ---- 250
- 244 --- 249
- 245 --- 251
- 245 --- 257
- 245 --- 258
- 246 --- 252
- 246 --- 259
- 246 --- 260
- 247 --- 253
- 247 --- 261
- 247 --- 262
- 248 --- 254
- 248 --- 263
- 248 --- 264
- 250 --- 251
- 250 --- 252
- 250 --- 253
- 250 --- 254
- 250 --- 255
- 250 --- 256
- 250 --- 257
- 250 --- 258
- 250 --- 259
- 250 --- 260
- 250 --- 261
- 250 --- 262
- 250 --- 263
- 250 --- 264
- 2 <--x 265
- 244 <--x 265
+ 178 --- 184
+ 178 --- 185
+ 178 --- 186
+ 178 --- 187
+ 185 <--x 180
+ 185 <--x 184
+ 186 <--x 181
+ 186 <--x 184
+ 187 <--x 182
+ 187 <--x 184
+ 188 --- 189
+ 189 --- 190
+ 189 --- 191
+ 189 --- 192
+ 189 --- 193
+ 189 ---- 195
+ 189 --- 194
+ 190 --- 196
+ 190 x--> 200
+ 191 --- 197
+ 191 --- 202
+ 191 x--> 200
+ 192 --- 198
+ 192 --- 203
+ 192 x--> 200
+ 193 --- 199
+ 193 --- 204
+ 193 x--> 200
+ 195 --- 196
+ 195 --- 197
+ 195 --- 198
+ 195 --- 199
+ 195 --- 200
+ 195 --- 201
+ 195 --- 202
+ 195 --- 203
+ 195 --- 204
+ 202 <--x 197
+ 202 <--x 201
+ 203 <--x 198
+ 203 <--x 201
+ 204 <--x 199
+ 204 <--x 201
+ 2 <--x 205
+ 189 <--x 205
```
diff --git a/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/artifact_commands.snap
index fe7b2396e..734b13028 100644
--- a/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/artifact_commands.snap
@@ -506,20 +506,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -542,6 +549,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -562,6 +596,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -637,20 +745,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -673,6 +788,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -693,6 +835,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -768,20 +984,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -804,6 +1027,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -824,6 +1074,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -899,20 +1223,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -935,6 +1266,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -955,6 +1313,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1030,20 +1462,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1066,6 +1505,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1086,6 +1552,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1161,20 +1701,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1197,6 +1744,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1217,6 +1791,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1292,20 +1940,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1328,6 +1983,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1348,6 +2030,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1423,20 +2179,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1459,6 +2222,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1479,6 +2269,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1901,20 +2765,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1937,6 +2808,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1957,6 +2855,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2032,20 +3004,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2068,6 +3047,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2088,6 +3094,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2163,20 +3243,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2199,6 +3286,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2219,6 +3333,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2294,20 +3482,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2330,6 +3525,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2350,6 +3572,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2425,20 +3721,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2461,6 +3764,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2481,6 +3811,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2556,20 +3960,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2592,6 +4003,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2612,6 +4050,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2846,20 +4358,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2882,6 +4401,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2902,6 +4448,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2977,20 +4597,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3013,6 +4640,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3033,6 +4687,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3455,20 +5183,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3491,6 +5226,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3511,6 +5273,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3586,20 +5422,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3622,6 +5465,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3642,6 +5512,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3717,20 +5661,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3753,6 +5704,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3773,6 +5751,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3848,20 +5900,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3884,6 +5943,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3904,6 +5990,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3979,20 +6139,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4015,6 +6182,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4035,6 +6229,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4110,20 +6378,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4146,6 +6421,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4166,6 +6468,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4439,20 +6815,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4475,6 +6858,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4495,6 +6905,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4570,20 +7054,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4606,6 +7097,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4626,6 +7144,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4860,20 +7452,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4896,6 +7495,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4916,6 +7542,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4991,20 +7691,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5027,6 +7734,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5047,6 +7781,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5280,20 +8088,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5316,6 +8131,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5336,6 +8178,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5562,20 +8478,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5598,6 +8521,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5618,6 +8568,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5689,20 +8713,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5725,6 +8756,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5745,6 +8803,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5971,20 +9103,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6007,6 +9146,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6027,6 +9193,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6098,20 +9338,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6134,6 +9381,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6154,6 +9428,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6543,20 +9891,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6579,6 +9934,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6599,6 +9981,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6674,20 +10130,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6710,6 +10173,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6730,6 +10220,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6805,20 +10369,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6841,6 +10412,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6861,6 +10459,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6936,20 +10608,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6972,6 +10651,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6992,6 +10698,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7067,20 +10847,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7103,6 +10890,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7123,6 +10937,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7198,20 +11086,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7234,6 +11129,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7254,6 +11176,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7488,20 +11484,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7524,6 +11527,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7544,6 +11574,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7619,20 +11723,27 @@ description: Artifact commands dual-basin-utility-sink.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7655,6 +11766,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7675,6 +11813,80 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7991,6 +12203,33 @@ description: Artifact commands dual-basin-utility-sink.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/artifact_graph_flowchart.snap.md
index 726bd677a..72a2fff16 100644
--- a/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/dual-basin-utility-sink/artifact_graph_flowchart.snap.md
@@ -9,108 +9,108 @@ flowchart LR
7["Segment
[892, 899, 0]"]
8[Solid2d]
end
- subgraph path32 [Path]
- 32["Path
[1292, 1348, 0]"]
- 33["Segment
[1354, 1386, 0]"]
- 34["Segment
[1392, 1424, 0]"]
- 35["Segment
[1430, 1463, 0]"]
- 36["Segment
[1469, 1525, 0]"]
- 37["Segment
[1531, 1538, 0]"]
- 38[Solid2d]
+ subgraph path27 [Path]
+ 27["Path
[1292, 1348, 0]"]
+ 28["Segment
[1354, 1386, 0]"]
+ 29["Segment
[1392, 1424, 0]"]
+ 30["Segment
[1430, 1463, 0]"]
+ 31["Segment
[1469, 1525, 0]"]
+ 32["Segment
[1531, 1538, 0]"]
+ 33[Solid2d]
end
- subgraph path59 [Path]
- 59["Path
[1803, 1859, 0]"]
- 60["Segment
[1865, 1897, 0]"]
- 61["Segment
[1903, 1935, 0]"]
- 62["Segment
[1941, 1974, 0]"]
- 63["Segment
[1980, 2036, 0]"]
- 64["Segment
[2042, 2049, 0]"]
- 65[Solid2d]
+ subgraph path49 [Path]
+ 49["Path
[1803, 1859, 0]"]
+ 50["Segment
[1865, 1897, 0]"]
+ 51["Segment
[1903, 1935, 0]"]
+ 52["Segment
[1941, 1974, 0]"]
+ 53["Segment
[1980, 2036, 0]"]
+ 54["Segment
[2042, 2049, 0]"]
+ 55[Solid2d]
end
- subgraph path83 [Path]
- 83["Path
[2445, 2503, 0]"]
- 84["Segment
[2509, 2541, 0]"]
- 85["Segment
[2547, 2579, 0]"]
- 86["Segment
[2585, 2618, 0]"]
- 87["Segment
[2624, 2680, 0]"]
- 88["Segment
[2686, 2693, 0]"]
- 89[Solid2d]
+ subgraph path68 [Path]
+ 68["Path
[2445, 2503, 0]"]
+ 69["Segment
[2509, 2541, 0]"]
+ 70["Segment
[2547, 2579, 0]"]
+ 71["Segment
[2585, 2618, 0]"]
+ 72["Segment
[2624, 2680, 0]"]
+ 73["Segment
[2686, 2693, 0]"]
+ 74[Solid2d]
end
- subgraph path111 [Path]
- 111["Path
[2995, 3036, 0]"]
- 112["Segment
[3042, 3074, 0]"]
- 113["Segment
[3080, 3106, 0]"]
- 114["Segment
[3112, 3145, 0]"]
- 115["Segment
[3151, 3207, 0]"]
- 116["Segment
[3213, 3220, 0]"]
- 117[Solid2d]
+ subgraph path91 [Path]
+ 91["Path
[2995, 3036, 0]"]
+ 92["Segment
[3042, 3074, 0]"]
+ 93["Segment
[3080, 3106, 0]"]
+ 94["Segment
[3112, 3145, 0]"]
+ 95["Segment
[3151, 3207, 0]"]
+ 96["Segment
[3213, 3220, 0]"]
+ 97[Solid2d]
end
- subgraph path134 [Path]
- 134["Path
[3403, 3459, 0]"]
- 135["Segment
[3465, 3497, 0]"]
- 136["Segment
[3503, 3535, 0]"]
- 137["Segment
[3541, 3574, 0]"]
- 138["Segment
[3580, 3636, 0]"]
- 139["Segment
[3642, 3649, 0]"]
- 140[Solid2d]
+ subgraph path109 [Path]
+ 109["Path
[3403, 3459, 0]"]
+ 110["Segment
[3465, 3497, 0]"]
+ 111["Segment
[3503, 3535, 0]"]
+ 112["Segment
[3541, 3574, 0]"]
+ 113["Segment
[3580, 3636, 0]"]
+ 114["Segment
[3642, 3649, 0]"]
+ 115[Solid2d]
end
- subgraph path158 [Path]
- 158["Path
[3877, 3917, 0]"]
- 159["Segment
[3923, 3949, 0]"]
- 160["Segment
[3955, 3981, 0]"]
- 161["Segment
[3987, 4014, 0]"]
- 162["Segment
[4020, 4076, 0]"]
- 163["Segment
[4082, 4089, 0]"]
- 164[Solid2d]
+ subgraph path128 [Path]
+ 128["Path
[3877, 3917, 0]"]
+ 129["Segment
[3923, 3949, 0]"]
+ 130["Segment
[3955, 3981, 0]"]
+ 131["Segment
[3987, 4014, 0]"]
+ 132["Segment
[4020, 4076, 0]"]
+ 133["Segment
[4082, 4089, 0]"]
+ 134[Solid2d]
+ end
+ subgraph path145 [Path]
+ 145["Path
[4376, 4447, 0]"]
+ 146["Segment
[4453, 4479, 0]"]
+ 147["Segment
[4485, 4511, 0]"]
+ 148["Segment
[4517, 4544, 0]"]
+ 149["Segment
[4550, 4606, 0]"]
+ 150["Segment
[4612, 4619, 0]"]
+ 151[Solid2d]
+ end
+ subgraph path162 [Path]
+ 162["Path
[4813, 4965, 0]"]
+ 163["Segment
[4971, 5020, 0]"]
+ 164["Segment
[5026, 5074, 0]"]
+ 165["Segment
[5080, 5128, 0]"]
+ 166["Segment
[5134, 5190, 0]"]
+ 167["Segment
[5196, 5203, 0]"]
+ 168[Solid2d]
end
subgraph path180 [Path]
- 180["Path
[4376, 4447, 0]"]
- 181["Segment
[4453, 4479, 0]"]
- 182["Segment
[4485, 4511, 0]"]
- 183["Segment
[4517, 4544, 0]"]
- 184["Segment
[4550, 4606, 0]"]
- 185["Segment
[4612, 4619, 0]"]
+ 180["Path
[5735, 5779, 0]"]
+ 181["Segment
[5785, 5817, 0]"]
+ 182["Segment
[5823, 5848, 0]"]
+ 183["Segment
[5854, 5887, 0]"]
+ 184["Segment
[5893, 5949, 0]"]
+ 185["Segment
[5955, 5962, 0]"]
186[Solid2d]
end
subgraph path202 [Path]
- 202["Path
[4813, 4965, 0]"]
- 203["Segment
[4971, 5020, 0]"]
- 204["Segment
[5026, 5074, 0]"]
- 205["Segment
[5080, 5128, 0]"]
- 206["Segment
[5134, 5190, 0]"]
- 207["Segment
[5196, 5203, 0]"]
+ 202["Path
[6249, 6293, 0]"]
+ 203["Segment
[6299, 6325, 0]"]
+ 204["Segment
[6331, 6363, 0]"]
+ 205["Segment
[6369, 6396, 0]"]
+ 206["Segment
[6402, 6458, 0]"]
+ 207["Segment
[6464, 6471, 0]"]
208[Solid2d]
end
- subgraph path225 [Path]
- 225["Path
[5735, 5779, 0]"]
- 226["Segment
[5785, 5817, 0]"]
- 227["Segment
[5823, 5848, 0]"]
- 228["Segment
[5854, 5887, 0]"]
- 229["Segment
[5893, 5949, 0]"]
- 230["Segment
[5955, 5962, 0]"]
- 231[Solid2d]
+ subgraph path221 [Path]
+ 221["Path
[6948, 7001, 0]"]
+ 222["Segment
[7007, 7044, 0]"]
+ 223["Segment
[7050, 7143, 0]"]
+ 224["Segment
[7149, 7185, 0]"]
+ 225["Segment
[7191, 7292, 0]"]
+ 226["Segment
[7298, 7334, 0]"]
end
- subgraph path252 [Path]
- 252["Path
[6249, 6293, 0]"]
- 253["Segment
[6299, 6325, 0]"]
- 254["Segment
[6331, 6363, 0]"]
- 255["Segment
[6369, 6396, 0]"]
- 256["Segment
[6402, 6458, 0]"]
- 257["Segment
[6464, 6471, 0]"]
- 258[Solid2d]
- end
- subgraph path276 [Path]
- 276["Path
[6948, 7001, 0]"]
- 277["Segment
[7007, 7044, 0]"]
- 278["Segment
[7050, 7143, 0]"]
- 279["Segment
[7149, 7185, 0]"]
- 280["Segment
[7191, 7292, 0]"]
- 281["Segment
[7298, 7334, 0]"]
- end
- subgraph path283 [Path]
- 283["Path
[7397, 7508, 0]"]
- 284["Segment
[7397, 7508, 0]"]
- 285[Solid2d]
+ subgraph path228 [Path]
+ 228["Path
[7397, 7508, 0]"]
+ 229["Segment
[7397, 7508, 0]"]
+ 230[Solid2d]
end
1["Plane
[565, 582, 0]"]
9["Sweep Extrusion
[1060, 1087, 0]"]
@@ -121,210 +121,153 @@ flowchart LR
14["Cap Start"]
15["Cap End"]
16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
+ 17["SweepEdge Opposite"]
18["SweepEdge Opposite"]
- 19["SweepEdge Adjacent"]
- 20["SweepEdge Opposite"]
- 21["SweepEdge Adjacent"]
- 22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
+ 19["Sweep Extrusion
[1060, 1087, 0]"]
+ 20["Sweep Extrusion
[1060, 1087, 0]"]
+ 21["Sweep Extrusion
[1060, 1087, 0]"]
+ 22["Sweep Extrusion
[1060, 1087, 0]"]
+ 23["Sweep Extrusion
[1060, 1087, 0]"]
24["Sweep Extrusion
[1060, 1087, 0]"]
25["Sweep Extrusion
[1060, 1087, 0]"]
- 26["Sweep Extrusion
[1060, 1087, 0]"]
- 27["Sweep Extrusion
[1060, 1087, 0]"]
- 28["Sweep Extrusion
[1060, 1087, 0]"]
- 29["Sweep Extrusion
[1060, 1087, 0]"]
- 30["Sweep Extrusion
[1060, 1087, 0]"]
- 31["Plane
[1219, 1273, 0]"]
- 39["Sweep Extrusion
[1701, 1735, 0]"]
- 40[Wall]
- 41[Wall]
- 42[Wall]
- 43[Wall]
- 44["Cap Start"]
- 45["Cap End"]
- 46["SweepEdge Opposite"]
- 47["SweepEdge Adjacent"]
- 48["SweepEdge Opposite"]
- 49["SweepEdge Adjacent"]
- 50["SweepEdge Opposite"]
- 51["SweepEdge Adjacent"]
- 52["SweepEdge Opposite"]
- 53["SweepEdge Adjacent"]
- 54["Sweep Extrusion
[1701, 1735, 0]"]
- 55["Sweep Extrusion
[1701, 1735, 0]"]
- 56["Sweep Extrusion
[1701, 1735, 0]"]
- 57["Sweep Extrusion
[1701, 1735, 0]"]
- 58["Sweep Extrusion
[1701, 1735, 0]"]
+ 26["Plane
[1219, 1273, 0]"]
+ 34["Sweep Extrusion
[1701, 1735, 0]"]
+ 35[Wall]
+ 36[Wall]
+ 37[Wall]
+ 38[Wall]
+ 39["Cap Start"]
+ 40["Cap End"]
+ 41["SweepEdge Opposite"]
+ 42["SweepEdge Opposite"]
+ 43["SweepEdge Opposite"]
+ 44["Sweep Extrusion
[1701, 1735, 0]"]
+ 45["Sweep Extrusion
[1701, 1735, 0]"]
+ 46["Sweep Extrusion
[1701, 1735, 0]"]
+ 47["Sweep Extrusion
[1701, 1735, 0]"]
+ 48["Sweep Extrusion
[1701, 1735, 0]"]
+ 56["Sweep Extrusion
[2148, 2182, 0]"]
+ 57[Wall]
+ 58[Wall]
+ 59[Wall]
+ 60[Wall]
+ 61["Cap Start"]
+ 62["Cap End"]
+ 63["SweepEdge Opposite"]
+ 64["SweepEdge Opposite"]
+ 65["SweepEdge Opposite"]
66["Sweep Extrusion
[2148, 2182, 0]"]
- 67[Wall]
- 68[Wall]
- 69[Wall]
- 70[Wall]
- 71["Cap Start"]
- 72["Cap End"]
- 73["SweepEdge Opposite"]
- 74["SweepEdge Adjacent"]
- 75["SweepEdge Opposite"]
- 76["SweepEdge Adjacent"]
- 77["SweepEdge Opposite"]
- 78["SweepEdge Adjacent"]
- 79["SweepEdge Opposite"]
- 80["SweepEdge Adjacent"]
- 81["Sweep Extrusion
[2148, 2182, 0]"]
- 82["Plane
[2299, 2350, 0]"]
- 90["Sweep Extrusion
[2856, 2891, 0]"]
- 91[Wall]
- 92[Wall]
- 93[Wall]
- 94[Wall]
- 95["Cap Start"]
- 96["Cap End"]
- 97["SweepEdge Opposite"]
- 98["SweepEdge Adjacent"]
- 99["SweepEdge Opposite"]
- 100["SweepEdge Adjacent"]
- 101["SweepEdge Opposite"]
- 102["SweepEdge Adjacent"]
- 103["SweepEdge Opposite"]
- 104["SweepEdge Adjacent"]
- 105["Sweep Extrusion
[2856, 2891, 0]"]
- 106["Sweep Extrusion
[2856, 2891, 0]"]
- 107["Sweep Extrusion
[2856, 2891, 0]"]
- 108["Sweep Extrusion
[2856, 2891, 0]"]
- 109["Sweep Extrusion
[2856, 2891, 0]"]
- 110["Plane
[2938, 2975, 0]"]
- 118["Sweep Extrusion
[3300, 3335, 0]"]
+ 67["Plane
[2299, 2350, 0]"]
+ 75["Sweep Extrusion
[2856, 2891, 0]"]
+ 76[Wall]
+ 77[Wall]
+ 78[Wall]
+ 79[Wall]
+ 80["Cap Start"]
+ 81["Cap End"]
+ 82["SweepEdge Opposite"]
+ 83["SweepEdge Opposite"]
+ 84["SweepEdge Opposite"]
+ 85["Sweep Extrusion
[2856, 2891, 0]"]
+ 86["Sweep Extrusion
[2856, 2891, 0]"]
+ 87["Sweep Extrusion
[2856, 2891, 0]"]
+ 88["Sweep Extrusion
[2856, 2891, 0]"]
+ 89["Sweep Extrusion
[2856, 2891, 0]"]
+ 90["Plane
[2938, 2975, 0]"]
+ 98["Sweep Extrusion
[3300, 3335, 0]"]
+ 99[Wall]
+ 100[Wall]
+ 101[Wall]
+ 102[Wall]
+ 103["Cap Start"]
+ 104["Cap End"]
+ 105["SweepEdge Opposite"]
+ 106["SweepEdge Opposite"]
+ 107["SweepEdge Opposite"]
+ 108["Sweep Extrusion
[3300, 3335, 0]"]
+ 116["Sweep Extrusion
[3748, 3783, 0]"]
+ 117[Wall]
+ 118[Wall]
119[Wall]
120[Wall]
- 121[Wall]
- 122[Wall]
- 123["Cap Start"]
- 124["Cap End"]
+ 121["Cap Start"]
+ 122["Cap End"]
+ 123["SweepEdge Opposite"]
+ 124["SweepEdge Opposite"]
125["SweepEdge Opposite"]
- 126["SweepEdge Adjacent"]
- 127["SweepEdge Opposite"]
- 128["SweepEdge Adjacent"]
- 129["SweepEdge Opposite"]
- 130["SweepEdge Adjacent"]
- 131["SweepEdge Opposite"]
- 132["SweepEdge Adjacent"]
- 133["Sweep Extrusion
[3300, 3335, 0]"]
- 141["Sweep Extrusion
[3748, 3783, 0]"]
- 142[Wall]
- 143[Wall]
- 144[Wall]
- 145[Wall]
- 146["Cap Start"]
- 147["Cap End"]
- 148["SweepEdge Opposite"]
- 149["SweepEdge Adjacent"]
- 150["SweepEdge Opposite"]
- 151["SweepEdge Adjacent"]
- 152["SweepEdge Opposite"]
- 153["SweepEdge Adjacent"]
- 154["SweepEdge Opposite"]
- 155["SweepEdge Adjacent"]
- 156["Sweep Extrusion
[3748, 3783, 0]"]
- 157["Plane
[3823, 3860, 0]"]
- 165["Sweep Extrusion
[4095, 4128, 0]"]
- 166[Wall]
- 167[Wall]
- 168[Wall]
- 169[Wall]
- 170["Cap Start"]
- 171["Cap End"]
- 172["SweepEdge Opposite"]
- 173["SweepEdge Adjacent"]
- 174["SweepEdge Opposite"]
- 175["SweepEdge Adjacent"]
+ 126["Sweep Extrusion
[3748, 3783, 0]"]
+ 127["Plane
[3823, 3860, 0]"]
+ 135["Sweep Extrusion
[4095, 4128, 0]"]
+ 136[Wall]
+ 137[Wall]
+ 138[Wall]
+ 139[Wall]
+ 140["Cap Start"]
+ 141["Cap End"]
+ 142["SweepEdge Opposite"]
+ 143["SweepEdge Opposite"]
+ 144["SweepEdge Opposite"]
+ 152["Sweep Extrusion
[4709, 4736, 0]"]
+ 153[Wall]
+ 154[Wall]
+ 155[Wall]
+ 156[Wall]
+ 157["Cap End"]
+ 158["SweepEdge Opposite"]
+ 159["SweepEdge Opposite"]
+ 160["SweepEdge Opposite"]
+ 161["Sweep Extrusion
[4709, 4736, 0]"]
+ 169["Sweep Extrusion
[5292, 5320, 0]"]
+ 170[Wall]
+ 171[Wall]
+ 172[Wall]
+ 173[Wall]
+ 174["Cap Start"]
+ 175["SweepEdge Opposite"]
176["SweepEdge Opposite"]
- 177["SweepEdge Adjacent"]
- 178["SweepEdge Opposite"]
- 179["SweepEdge Adjacent"]
- 187["Sweep Extrusion
[4709, 4736, 0]"]
+ 177["SweepEdge Opposite"]
+ 178["Sweep Extrusion
[5292, 5320, 0]"]
+ 179["Plane
[5673, 5722, 0]"]
+ 187["Sweep Extrusion
[6061, 6089, 0]"]
188[Wall]
189[Wall]
190[Wall]
191[Wall]
- 192["Cap End"]
- 193["SweepEdge Opposite"]
- 194["SweepEdge Adjacent"]
+ 192["Cap Start"]
+ 193["Cap End"]
+ 194["SweepEdge Opposite"]
195["SweepEdge Opposite"]
- 196["SweepEdge Adjacent"]
- 197["SweepEdge Opposite"]
- 198["SweepEdge Adjacent"]
- 199["SweepEdge Opposite"]
- 200["SweepEdge Adjacent"]
- 201["Sweep Extrusion
[4709, 4736, 0]"]
- 209["Sweep Extrusion
[5292, 5320, 0]"]
+ 196["SweepEdge Opposite"]
+ 197["Sweep Extrusion
[6061, 6089, 0]"]
+ 198["Sweep Extrusion
[6061, 6089, 0]"]
+ 199["Sweep Extrusion
[6061, 6089, 0]"]
+ 200["Sweep Extrusion
[6061, 6089, 0]"]
+ 201["Sweep Extrusion
[6061, 6089, 0]"]
+ 209["Sweep Extrusion
[6553, 6581, 0]"]
210[Wall]
211[Wall]
212[Wall]
213[Wall]
214["Cap Start"]
- 215["SweepEdge Opposite"]
- 216["SweepEdge Adjacent"]
+ 215["Cap End"]
+ 216["SweepEdge Opposite"]
217["SweepEdge Opposite"]
- 218["SweepEdge Adjacent"]
- 219["SweepEdge Opposite"]
- 220["SweepEdge Adjacent"]
- 221["SweepEdge Opposite"]
- 222["SweepEdge Adjacent"]
- 223["Sweep Extrusion
[5292, 5320, 0]"]
- 224["Plane
[5673, 5722, 0]"]
- 232["Sweep Extrusion
[6061, 6089, 0]"]
- 233[Wall]
- 234[Wall]
- 235[Wall]
- 236[Wall]
- 237["Cap Start"]
- 238["Cap End"]
- 239["SweepEdge Opposite"]
- 240["SweepEdge Adjacent"]
- 241["SweepEdge Opposite"]
- 242["SweepEdge Adjacent"]
- 243["SweepEdge Opposite"]
- 244["SweepEdge Adjacent"]
- 245["SweepEdge Opposite"]
- 246["SweepEdge Adjacent"]
- 247["Sweep Extrusion
[6061, 6089, 0]"]
- 248["Sweep Extrusion
[6061, 6089, 0]"]
- 249["Sweep Extrusion
[6061, 6089, 0]"]
- 250["Sweep Extrusion
[6061, 6089, 0]"]
- 251["Sweep Extrusion
[6061, 6089, 0]"]
- 259["Sweep Extrusion
[6553, 6581, 0]"]
- 260[Wall]
- 261[Wall]
- 262[Wall]
- 263[Wall]
- 264["Cap Start"]
- 265["Cap End"]
- 266["SweepEdge Opposite"]
- 267["SweepEdge Adjacent"]
- 268["SweepEdge Opposite"]
- 269["SweepEdge Adjacent"]
- 270["SweepEdge Opposite"]
- 271["SweepEdge Adjacent"]
- 272["SweepEdge Opposite"]
- 273["SweepEdge Adjacent"]
- 274["Sweep Extrusion
[6553, 6581, 0]"]
- 275["Plane
[6874, 6925, 0]"]
- 282["Plane
[7356, 7373, 0]"]
- 286["Sweep Sweep
[7522, 7575, 0]"]
- 287[Wall]
- 288["Cap Start"]
- 289["Cap Start"]
- 290["SweepEdge Opposite"]
- 291["SweepEdge Adjacent"]
- 292["StartSketchOnPlane
[1205, 1274, 0]"]
- 293["StartSketchOnPlane
[2285, 2351, 0]"]
- 294["StartSketchOnPlane
[2924, 2976, 0]"]
- 295["StartSketchOnPlane
[3809, 3861, 0]"]
- 296["StartSketchOnFace
[4316, 4357, 0]"]
- 297["StartSketchOnFace
[4756, 4795, 0]"]
- 298["StartSketchOnPlane
[5659, 5723, 0]"]
- 299["StartSketchOnPlane
[6860, 6926, 0]"]
+ 218["SweepEdge Opposite"]
+ 219["Sweep Extrusion
[6553, 6581, 0]"]
+ 220["Plane
[6874, 6925, 0]"]
+ 227["Plane
[7356, 7373, 0]"]
+ 231["Sweep Sweep
[7522, 7575, 0]"]
+ 232[Wall]
+ 233["Cap Start"]
+ 234["Cap Start"]
+ 235["StartSketchOnPlane
[1205, 1274, 0]"]
+ 236["StartSketchOnPlane
[2285, 2351, 0]"]
+ 237["StartSketchOnPlane
[2924, 2976, 0]"]
+ 238["StartSketchOnPlane
[3809, 3861, 0]"]
+ 239["StartSketchOnFace
[4316, 4357, 0]"]
+ 240["StartSketchOnFace
[4756, 4795, 0]"]
+ 241["StartSketchOnPlane
[5659, 5723, 0]"]
+ 242["StartSketchOnPlane
[6860, 6926, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -334,17 +277,16 @@ flowchart LR
2 ---- 9
2 --- 8
3 --- 13
- 3 --- 22
- 3 --- 23
+ 3 --- 18
+ 3 x--> 14
4 --- 12
- 4 --- 20
- 4 --- 21
+ 4 --- 17
+ 4 x--> 14
5 --- 11
- 5 --- 18
- 5 --- 19
+ 5 --- 16
+ 5 x--> 14
6 --- 10
- 6 --- 16
- 6 --- 17
+ 6 x--> 14
9 --- 10
9 --- 11
9 --- 12
@@ -354,217 +296,284 @@ flowchart LR
9 --- 16
9 --- 17
9 --- 18
- 9 --- 19
- 9 --- 20
- 9 --- 21
- 9 --- 22
- 9 --- 23
- 31 --- 32
- 31 --- 59
- 32 --- 33
- 32 --- 34
- 32 --- 35
- 32 --- 36
- 32 --- 37
- 32 ---- 39
- 32 --- 38
- 33 --- 43
- 33 --- 52
- 33 --- 53
+ 16 <--x 11
+ 16 <--x 15
+ 17 <--x 12
+ 17 <--x 15
+ 18 <--x 13
+ 18 <--x 15
+ 26 --- 27
+ 26 --- 49
+ 27 --- 28
+ 27 --- 29
+ 27 --- 30
+ 27 --- 31
+ 27 --- 32
+ 27 ---- 34
+ 27 --- 33
+ 28 --- 38
+ 28 --- 43
+ 28 x--> 39
+ 29 --- 37
+ 29 --- 42
+ 29 x--> 39
+ 30 --- 36
+ 30 --- 41
+ 30 x--> 39
+ 31 --- 35
+ 31 x--> 39
+ 34 --- 35
+ 34 --- 36
+ 34 --- 37
+ 34 --- 38
+ 34 --- 39
+ 34 --- 40
+ 34 --- 41
34 --- 42
- 34 --- 50
- 34 --- 51
- 35 --- 41
- 35 --- 48
- 35 --- 49
- 36 --- 40
- 36 --- 46
- 36 --- 47
- 39 --- 40
- 39 --- 41
- 39 --- 42
- 39 --- 43
- 39 --- 44
- 39 --- 45
- 39 --- 46
- 39 --- 47
- 39 --- 48
- 39 --- 49
- 39 --- 50
- 39 --- 51
- 39 --- 52
- 39 --- 53
- 59 --- 60
- 59 --- 61
- 59 --- 62
- 59 --- 63
- 59 --- 64
- 59 ---- 66
- 59 --- 65
- 60 --- 70
- 60 --- 79
- 60 --- 80
- 61 --- 69
- 61 --- 77
- 61 --- 78
- 62 --- 68
- 62 --- 75
- 62 --- 76
- 63 --- 67
- 63 --- 73
- 63 --- 74
- 66 --- 67
- 66 --- 68
- 66 --- 69
- 66 --- 70
- 66 --- 71
- 66 --- 72
- 66 --- 73
- 66 --- 74
- 66 --- 75
- 66 --- 76
- 66 --- 77
- 66 --- 78
- 66 --- 79
- 66 --- 80
- 82 --- 83
- 83 --- 84
- 83 --- 85
- 83 --- 86
- 83 --- 87
- 83 --- 88
- 83 ---- 90
- 83 --- 89
- 84 --- 94
- 84 --- 103
- 84 --- 104
- 85 --- 93
- 85 --- 101
- 85 --- 102
- 86 --- 92
- 86 --- 99
- 86 --- 100
- 87 --- 91
- 87 --- 97
- 87 --- 98
+ 34 --- 43
+ 41 <--x 36
+ 41 <--x 40
+ 42 <--x 37
+ 42 <--x 40
+ 43 <--x 38
+ 43 <--x 40
+ 49 --- 50
+ 49 --- 51
+ 49 --- 52
+ 49 --- 53
+ 49 --- 54
+ 49 ---- 56
+ 49 --- 55
+ 50 --- 60
+ 50 --- 65
+ 50 x--> 61
+ 51 --- 59
+ 51 --- 64
+ 51 x--> 61
+ 52 --- 58
+ 52 --- 63
+ 52 x--> 61
+ 53 --- 57
+ 53 x--> 61
+ 56 --- 57
+ 56 --- 58
+ 56 --- 59
+ 56 --- 60
+ 56 --- 61
+ 56 --- 62
+ 56 --- 63
+ 56 --- 64
+ 56 --- 65
+ 63 <--x 58
+ 63 <--x 62
+ 64 <--x 59
+ 64 <--x 62
+ 65 <--x 60
+ 65 <--x 62
+ 67 --- 68
+ 68 --- 69
+ 68 --- 70
+ 68 --- 71
+ 68 --- 72
+ 68 --- 73
+ 68 ---- 75
+ 68 --- 74
+ 69 --- 79
+ 69 --- 84
+ 69 x--> 80
+ 70 --- 78
+ 70 --- 83
+ 70 x--> 80
+ 71 --- 77
+ 71 --- 82
+ 71 x--> 80
+ 72 --- 76
+ 72 x--> 80
+ 75 --- 76
+ 75 --- 77
+ 75 --- 78
+ 75 --- 79
+ 75 --- 80
+ 75 --- 81
+ 75 --- 82
+ 75 --- 83
+ 75 --- 84
+ 82 <--x 77
+ 82 <--x 81
+ 83 <--x 78
+ 83 <--x 81
+ 84 <--x 79
+ 84 <--x 81
90 --- 91
- 90 --- 92
- 90 --- 93
- 90 --- 94
- 90 --- 95
- 90 --- 96
- 90 --- 97
- 90 --- 98
- 90 --- 99
- 90 --- 100
- 90 --- 101
- 90 --- 102
- 90 --- 103
- 90 --- 104
- 110 --- 111
- 110 --- 134
- 111 --- 112
- 111 --- 113
- 111 --- 114
- 111 --- 115
- 111 --- 116
- 111 ---- 118
- 111 --- 117
- 112 --- 122
- 112 --- 131
- 112 --- 132
- 113 --- 121
- 113 --- 129
- 113 --- 130
- 114 --- 120
- 114 --- 127
- 114 --- 128
- 115 --- 119
- 115 --- 125
- 115 --- 126
- 118 --- 119
- 118 --- 120
- 118 --- 121
- 118 --- 122
- 118 --- 123
- 118 --- 124
- 118 --- 125
- 118 --- 126
- 118 --- 127
- 118 --- 128
- 118 --- 129
- 118 --- 130
- 118 --- 131
- 118 --- 132
- 134 --- 135
- 134 --- 136
- 134 --- 137
- 134 --- 138
- 134 --- 139
- 134 ---- 141
- 134 --- 140
- 135 --- 145
- 135 --- 154
- 135 --- 155
- 136 --- 144
- 136 --- 152
- 136 --- 153
- 137 --- 143
- 137 --- 150
- 137 --- 151
- 138 --- 142
- 138 --- 148
- 138 --- 149
- 141 --- 142
- 141 --- 143
- 141 --- 144
- 141 --- 145
- 141 --- 146
- 141 --- 147
- 141 --- 148
- 141 --- 149
- 141 --- 150
- 141 --- 151
- 141 --- 152
- 141 --- 153
- 141 --- 154
- 141 --- 155
- 157 --- 158
- 158 --- 159
- 158 --- 160
- 158 --- 161
- 158 --- 162
- 158 --- 163
- 158 ---- 165
- 158 --- 164
- 159 --- 169
- 159 --- 178
- 159 --- 179
- 160 --- 168
- 160 --- 176
- 160 --- 177
- 161 --- 167
- 161 --- 174
- 161 --- 175
+ 90 --- 109
+ 91 --- 92
+ 91 --- 93
+ 91 --- 94
+ 91 --- 95
+ 91 --- 96
+ 91 ---- 98
+ 91 --- 97
+ 92 --- 102
+ 92 --- 107
+ 92 x--> 104
+ 93 --- 101
+ 93 --- 106
+ 93 x--> 104
+ 94 --- 100
+ 94 --- 105
+ 94 x--> 104
+ 95 --- 99
+ 95 x--> 104
+ 98 --- 99
+ 98 --- 100
+ 98 --- 101
+ 98 --- 102
+ 98 --- 103
+ 98 --- 104
+ 98 --- 105
+ 98 --- 106
+ 98 --- 107
+ 105 <--x 100
+ 105 <--x 103
+ 106 <--x 101
+ 106 <--x 103
+ 107 <--x 102
+ 107 <--x 103
+ 109 --- 110
+ 109 --- 111
+ 109 --- 112
+ 109 --- 113
+ 109 --- 114
+ 109 ---- 116
+ 109 --- 115
+ 110 --- 120
+ 110 --- 125
+ 110 x--> 122
+ 111 --- 119
+ 111 --- 124
+ 111 x--> 122
+ 112 --- 118
+ 112 --- 123
+ 112 x--> 122
+ 113 --- 117
+ 113 x--> 122
+ 116 --- 117
+ 116 --- 118
+ 116 --- 119
+ 116 --- 120
+ 116 --- 121
+ 116 --- 122
+ 116 --- 123
+ 116 --- 124
+ 116 --- 125
+ 123 <--x 118
+ 123 <--x 121
+ 124 <--x 119
+ 124 <--x 121
+ 125 <--x 120
+ 125 <--x 121
+ 127 --- 128
+ 128 --- 129
+ 128 --- 130
+ 128 --- 131
+ 128 --- 132
+ 128 --- 133
+ 128 ---- 135
+ 128 --- 134
+ 129 --- 139
+ 129 --- 144
+ 129 x--> 141
+ 130 --- 138
+ 130 --- 143
+ 130 x--> 141
+ 131 --- 137
+ 131 --- 142
+ 131 x--> 141
+ 132 --- 136
+ 132 x--> 141
+ 135 --- 136
+ 135 --- 137
+ 135 --- 138
+ 135 --- 139
+ 135 --- 140
+ 135 --- 141
+ 135 --- 142
+ 135 --- 143
+ 135 --- 144
+ 140 --- 145
+ 141 --- 162
+ 142 <--x 137
+ 142 <--x 140
+ 143 <--x 138
+ 143 <--x 140
+ 144 <--x 139
+ 144 <--x 140
+ 145 --- 146
+ 145 --- 147
+ 145 --- 148
+ 145 --- 149
+ 145 --- 150
+ 145 ---- 152
+ 145 --- 151
+ 146 --- 153
+ 146 <--x 140
+ 147 --- 154
+ 147 --- 158
+ 147 <--x 140
+ 148 --- 155
+ 148 --- 159
+ 148 <--x 140
+ 149 --- 156
+ 149 --- 160
+ 149 <--x 140
+ 152 --- 153
+ 152 --- 154
+ 152 --- 155
+ 152 --- 156
+ 152 --- 157
+ 152 --- 158
+ 152 --- 159
+ 152 --- 160
+ 158 <--x 154
+ 158 <--x 157
+ 159 <--x 155
+ 159 <--x 157
+ 160 <--x 156
+ 160 <--x 157
+ 162 --- 163
+ 162 --- 164
+ 162 --- 165
162 --- 166
- 162 --- 172
- 162 --- 173
- 165 --- 166
- 165 --- 167
- 165 --- 168
- 165 --- 169
- 165 --- 170
+ 162 --- 167
+ 162 ---- 169
+ 162 --- 168
+ 163 --- 173
+ 163 --- 177
+ 163 <--x 141
+ 164 --- 172
+ 164 --- 176
+ 164 <--x 141
165 --- 171
- 165 --- 172
- 165 --- 173
- 165 --- 174
165 --- 175
- 165 --- 176
- 165 --- 177
- 165 --- 178
- 165 --- 179
- 170 --- 180
- 171 --- 202
+ 165 <--x 141
+ 166 --- 170
+ 166 <--x 141
+ 169 --- 170
+ 169 --- 171
+ 169 --- 172
+ 169 --- 173
+ 169 --- 174
+ 169 --- 175
+ 169 --- 176
+ 169 --- 177
+ 175 <--x 171
+ 175 <--x 174
+ 176 <--x 172
+ 176 <--x 174
+ 177 <--x 173
+ 177 <--x 174
+ 179 --- 180
+ 179 --- 202
180 --- 181
180 --- 182
180 --- 183
@@ -572,18 +581,17 @@ flowchart LR
180 --- 185
180 ---- 187
180 --- 186
- 181 --- 188
- 181 --- 193
- 181 --- 194
- 182 --- 189
+ 181 --- 191
+ 181 --- 196
+ 181 x--> 192
+ 182 --- 190
182 --- 195
- 182 --- 196
- 183 --- 190
- 183 --- 197
- 183 --- 198
- 184 --- 191
- 184 --- 199
- 184 --- 200
+ 182 x--> 192
+ 183 --- 189
+ 183 --- 194
+ 183 x--> 192
+ 184 --- 188
+ 184 x--> 192
187 --- 188
187 --- 189
187 --- 190
@@ -593,10 +601,12 @@ flowchart LR
187 --- 194
187 --- 195
187 --- 196
- 187 --- 197
- 187 --- 198
- 187 --- 199
- 187 --- 200
+ 194 <--x 189
+ 194 <--x 193
+ 195 <--x 190
+ 195 <--x 193
+ 196 <--x 191
+ 196 <--x 193
202 --- 203
202 --- 204
202 --- 205
@@ -605,17 +615,16 @@ flowchart LR
202 ---- 209
202 --- 208
203 --- 213
- 203 --- 221
- 203 --- 222
+ 203 --- 218
+ 203 x--> 214
204 --- 212
- 204 --- 219
- 204 --- 220
+ 204 --- 217
+ 204 x--> 214
205 --- 211
- 205 --- 217
- 205 --- 218
+ 205 --- 216
+ 205 x--> 214
206 --- 210
- 206 --- 215
- 206 --- 216
+ 206 x--> 214
209 --- 210
209 --- 211
209 --- 212
@@ -625,102 +634,33 @@ flowchart LR
209 --- 216
209 --- 217
209 --- 218
- 209 --- 219
- 209 --- 220
- 209 --- 221
- 209 --- 222
- 224 --- 225
- 224 --- 252
- 225 --- 226
- 225 --- 227
- 225 --- 228
- 225 --- 229
- 225 --- 230
- 225 ---- 232
- 225 --- 231
- 226 --- 236
- 226 --- 245
- 226 --- 246
- 227 --- 235
- 227 --- 243
- 227 --- 244
- 228 --- 234
- 228 --- 241
- 228 --- 242
- 229 --- 233
- 229 --- 239
- 229 --- 240
- 232 --- 233
- 232 --- 234
- 232 --- 235
- 232 --- 236
- 232 --- 237
- 232 --- 238
- 232 --- 239
- 232 --- 240
- 232 --- 241
- 232 --- 242
- 232 --- 243
- 232 --- 244
- 232 --- 245
- 232 --- 246
- 252 --- 253
- 252 --- 254
- 252 --- 255
- 252 --- 256
- 252 --- 257
- 252 ---- 259
- 252 --- 258
- 253 --- 263
- 253 --- 272
- 253 --- 273
- 254 --- 262
- 254 --- 270
- 254 --- 271
- 255 --- 261
- 255 --- 268
- 255 --- 269
- 256 --- 260
- 256 --- 266
- 256 --- 267
- 259 --- 260
- 259 --- 261
- 259 --- 262
- 259 --- 263
- 259 --- 264
- 259 --- 265
- 259 --- 266
- 259 --- 267
- 259 --- 268
- 259 --- 269
- 259 --- 270
- 259 --- 271
- 259 --- 272
- 259 --- 273
- 275 --- 276
- 276 --- 277
- 276 --- 278
- 276 --- 279
- 276 --- 280
- 276 --- 281
- 282 --- 283
- 283 --- 284
- 283 ---- 286
- 283 --- 285
- 284 --- 287
- 284 --- 290
- 284 --- 291
- 286 --- 287
- 286 --- 288
- 286 --- 289
- 286 --- 290
- 286 --- 291
- 31 <--x 292
- 82 <--x 293
- 110 <--x 294
- 157 <--x 295
- 170 <--x 296
- 171 <--x 297
- 224 <--x 298
- 275 <--x 299
+ 216 <--x 211
+ 216 <--x 215
+ 217 <--x 212
+ 217 <--x 215
+ 218 <--x 213
+ 218 <--x 215
+ 220 --- 221
+ 221 --- 222
+ 221 --- 223
+ 221 --- 224
+ 221 --- 225
+ 221 --- 226
+ 227 --- 228
+ 228 --- 229
+ 228 ---- 231
+ 228 --- 230
+ 229 --- 232
+ 229 x--> 233
+ 231 --- 232
+ 231 --- 233
+ 231 --- 234
+ 26 <--x 235
+ 67 <--x 236
+ 90 <--x 237
+ 127 <--x 238
+ 140 <--x 239
+ 141 <--x 240
+ 179 <--x 241
+ 220 <--x 242
```
diff --git a/rust/kcl-lib/tests/kcl_samples/enclosure/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/enclosure/artifact_commands.snap
index 6b653f7f8..95cb936f7 100644
--- a/rust/kcl-lib/tests/kcl_samples/enclosure/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/enclosure/artifact_commands.snap
@@ -248,20 +248,27 @@ description: Artifact commands enclosure.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -284,6 +291,33 @@ description: Artifact commands enclosure.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -304,6 +338,80 @@ description: Artifact commands enclosure.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -671,6 +779,33 @@ description: Artifact commands enclosure.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -691,6 +826,33 @@ description: Artifact commands enclosure.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -957,6 +1119,33 @@ description: Artifact commands enclosure.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -977,6 +1166,33 @@ description: Artifact commands enclosure.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1243,6 +1459,33 @@ description: Artifact commands enclosure.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1263,6 +1506,33 @@ description: Artifact commands enclosure.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1529,6 +1799,33 @@ description: Artifact commands enclosure.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1549,6 +1846,33 @@ description: Artifact commands enclosure.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2144,20 +2468,27 @@ description: Artifact commands enclosure.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2184,20 +2515,27 @@ description: Artifact commands enclosure.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2224,20 +2562,27 @@ description: Artifact commands enclosure.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2260,6 +2605,33 @@ description: Artifact commands enclosure.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2280,6 +2652,174 @@ description: Artifact commands enclosure.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2914,20 +3454,27 @@ description: Artifact commands enclosure.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2954,20 +3501,27 @@ description: Artifact commands enclosure.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2994,20 +3548,27 @@ description: Artifact commands enclosure.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3030,6 +3591,33 @@ description: Artifact commands enclosure.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3050,6 +3638,174 @@ description: Artifact commands enclosure.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/enclosure/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/enclosure/artifact_graph_flowchart.snap.md
index 21bb08186..1c1147a6c 100644
--- a/rust/kcl-lib/tests/kcl_samples/enclosure/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/enclosure/artifact_graph_flowchart.snap.md
@@ -9,103 +9,103 @@ flowchart LR
7["Segment
[709, 716, 0]"]
8[Solid2d]
end
- subgraph path29 [Path]
- 29["Path
[1597, 1680, 0]"]
- 30["Segment
[1597, 1680, 0]"]
- 31[Solid2d]
+ subgraph path25 [Path]
+ 25["Path
[1597, 1680, 0]"]
+ 26["Segment
[1597, 1680, 0]"]
+ 27[Solid2d]
end
- subgraph path32 [Path]
- 32["Path
[1693, 1760, 0]"]
- 33["Segment
[1693, 1760, 0]"]
- 34[Solid2d]
+ subgraph path28 [Path]
+ 28["Path
[1693, 1760, 0]"]
+ 29["Segment
[1693, 1760, 0]"]
+ 30[Solid2d]
end
- subgraph path42 [Path]
- 42["Path
[1597, 1680, 0]"]
- 43["Segment
[1597, 1680, 0]"]
- 44[Solid2d]
+ subgraph path36 [Path]
+ 36["Path
[1597, 1680, 0]"]
+ 37["Segment
[1597, 1680, 0]"]
+ 38[Solid2d]
end
- subgraph path45 [Path]
- 45["Path
[1693, 1760, 0]"]
- 46["Segment
[1693, 1760, 0]"]
- 47[Solid2d]
+ subgraph path39 [Path]
+ 39["Path
[1693, 1760, 0]"]
+ 40["Segment
[1693, 1760, 0]"]
+ 41[Solid2d]
end
- subgraph path55 [Path]
- 55["Path
[1597, 1680, 0]"]
- 56["Segment
[1597, 1680, 0]"]
- 57[Solid2d]
+ subgraph path47 [Path]
+ 47["Path
[1597, 1680, 0]"]
+ 48["Segment
[1597, 1680, 0]"]
+ 49[Solid2d]
+ end
+ subgraph path50 [Path]
+ 50["Path
[1693, 1760, 0]"]
+ 51["Segment
[1693, 1760, 0]"]
+ 52[Solid2d]
end
subgraph path58 [Path]
- 58["Path
[1693, 1760, 0]"]
- 59["Segment
[1693, 1760, 0]"]
+ 58["Path
[1597, 1680, 0]"]
+ 59["Segment
[1597, 1680, 0]"]
60[Solid2d]
end
- subgraph path68 [Path]
- 68["Path
[1597, 1680, 0]"]
- 69["Segment
[1597, 1680, 0]"]
- 70[Solid2d]
+ subgraph path61 [Path]
+ 61["Path
[1693, 1760, 0]"]
+ 62["Segment
[1693, 1760, 0]"]
+ 63[Solid2d]
end
- subgraph path71 [Path]
- 71["Path
[1693, 1760, 0]"]
- 72["Segment
[1693, 1760, 0]"]
- 73[Solid2d]
+ subgraph path69 [Path]
+ 69["Path
[2331, 2366, 0]"]
+ 70["Segment
[2372, 2438, 0]"]
+ 71["Segment
[2444, 2543, 0]"]
+ 72["Segment
[2549, 2666, 0]"]
+ 73["Segment
[2672, 2757, 0]"]
+ 74["Segment
[2763, 2770, 0]"]
+ 75[Solid2d]
end
- subgraph path81 [Path]
- 81["Path
[2331, 2366, 0]"]
- 82["Segment
[2372, 2438, 0]"]
- 83["Segment
[2444, 2543, 0]"]
- 84["Segment
[2549, 2666, 0]"]
- 85["Segment
[2672, 2757, 0]"]
- 86["Segment
[2763, 2770, 0]"]
+ subgraph path76 [Path]
+ 76["Path
[2781, 2937, 0]"]
+ 77["Segment
[2781, 2937, 0]"]
+ 78[Solid2d]
+ end
+ subgraph path79 [Path]
+ 79["Path
[2952, 3119, 0]"]
+ 80["Segment
[2952, 3119, 0]"]
+ 81[Solid2d]
+ end
+ subgraph path82 [Path]
+ 82["Path
[3134, 3292, 0]"]
+ 83["Segment
[3134, 3292, 0]"]
+ 84[Solid2d]
+ end
+ subgraph path85 [Path]
+ 85["Path
[3307, 3476, 0]"]
+ 86["Segment
[3307, 3476, 0]"]
87[Solid2d]
end
- subgraph path88 [Path]
- 88["Path
[2781, 2937, 0]"]
- 89["Segment
[2781, 2937, 0]"]
- 90[Solid2d]
+ subgraph path103 [Path]
+ 103["Path
[3922, 4006, 0]"]
+ 104["Segment
[4012, 4100, 0]"]
+ 105["Segment
[4106, 4227, 0]"]
+ 106["Segment
[4233, 4350, 0]"]
+ 107["Segment
[4356, 4441, 0]"]
+ 108["Segment
[4447, 4454, 0]"]
+ 109[Solid2d]
end
- subgraph path91 [Path]
- 91["Path
[2952, 3119, 0]"]
- 92["Segment
[2952, 3119, 0]"]
- 93[Solid2d]
+ subgraph path110 [Path]
+ 110["Path
[4465, 4637, 0]"]
+ 111["Segment
[4465, 4637, 0]"]
+ 112[Solid2d]
end
- subgraph path94 [Path]
- 94["Path
[3134, 3292, 0]"]
- 95["Segment
[3134, 3292, 0]"]
- 96[Solid2d]
+ subgraph path113 [Path]
+ 113["Path
[4652, 4835, 0]"]
+ 114["Segment
[4652, 4835, 0]"]
+ 115[Solid2d]
end
- subgraph path97 [Path]
- 97["Path
[3307, 3476, 0]"]
- 98["Segment
[3307, 3476, 0]"]
- 99[Solid2d]
+ subgraph path116 [Path]
+ 116["Path
[4850, 5024, 0]"]
+ 117["Segment
[4850, 5024, 0]"]
+ 118[Solid2d]
end
subgraph path119 [Path]
- 119["Path
[3922, 4006, 0]"]
- 120["Segment
[4012, 4100, 0]"]
- 121["Segment
[4106, 4227, 0]"]
- 122["Segment
[4233, 4350, 0]"]
- 123["Segment
[4356, 4441, 0]"]
- 124["Segment
[4447, 4454, 0]"]
- 125[Solid2d]
- end
- subgraph path126 [Path]
- 126["Path
[4465, 4637, 0]"]
- 127["Segment
[4465, 4637, 0]"]
- 128[Solid2d]
- end
- subgraph path129 [Path]
- 129["Path
[4652, 4835, 0]"]
- 130["Segment
[4652, 4835, 0]"]
- 131[Solid2d]
- end
- subgraph path132 [Path]
- 132["Path
[4850, 5024, 0]"]
- 133["Segment
[4850, 5024, 0]"]
- 134[Solid2d]
- end
- subgraph path135 [Path]
- 135["Path
[5039, 5224, 0]"]
- 136["Segment
[5039, 5224, 0]"]
- 137[Solid2d]
+ 119["Path
[5039, 5224, 0]"]
+ 120["Segment
[5039, 5224, 0]"]
+ 121[Solid2d]
end
1["Plane
[264, 281, 0]"]
9["Sweep Extrusion
[730, 765, 0]"]
@@ -116,85 +116,65 @@ flowchart LR
14["Cap Start"]
15["Cap End"]
16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
+ 17["SweepEdge Opposite"]
18["SweepEdge Opposite"]
19["SweepEdge Adjacent"]
- 20["SweepEdge Opposite"]
- 21["SweepEdge Adjacent"]
- 22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
- 24["EdgeCut Fillet
[771, 1053, 0]"]
- 25["EdgeCut Fillet
[771, 1053, 0]"]
- 26["EdgeCut Fillet
[771, 1053, 0]"]
- 27["EdgeCut Fillet
[771, 1053, 0]"]
- 28["Plane
[1566, 1589, 0]"]
- 35["Sweep Extrusion
[1780, 1831, 0]"]
- 36[Wall]
- 37["Cap Start"]
- 38["Cap End"]
- 39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 41["Plane
[1566, 1589, 0]"]
- 48["Sweep Extrusion
[1780, 1831, 0]"]
- 49[Wall]
- 50["Cap Start"]
- 51["Cap End"]
- 52["SweepEdge Opposite"]
- 53["SweepEdge Adjacent"]
- 54["Plane
[1566, 1589, 0]"]
- 61["Sweep Extrusion
[1780, 1831, 0]"]
- 62[Wall]
- 63["Cap Start"]
- 64["Cap End"]
- 65["SweepEdge Opposite"]
- 66["SweepEdge Adjacent"]
- 67["Plane
[1566, 1589, 0]"]
- 74["Sweep Extrusion
[1780, 1831, 0]"]
- 75[Wall]
- 76["Cap Start"]
- 77["Cap End"]
- 78["SweepEdge Opposite"]
- 79["SweepEdge Adjacent"]
- 80["Plane
[2308, 2325, 0]"]
- 100["Sweep Extrusion
[3494, 3536, 0]"]
- 101[Wall]
- 102[Wall]
- 103[Wall]
- 104[Wall]
- 105["Cap Start"]
- 106["Cap End"]
- 107["SweepEdge Opposite"]
- 108["SweepEdge Adjacent"]
- 109["SweepEdge Opposite"]
- 110["SweepEdge Adjacent"]
- 111["SweepEdge Opposite"]
- 112["SweepEdge Adjacent"]
- 113["SweepEdge Opposite"]
- 114["SweepEdge Adjacent"]
- 115["EdgeCut Fillet
[3542, 3824, 0]"]
- 116["EdgeCut Fillet
[3542, 3824, 0]"]
- 117["EdgeCut Fillet
[3542, 3824, 0]"]
- 118["EdgeCut Fillet
[3542, 3824, 0]"]
- 138["Sweep Extrusion
[5242, 5284, 0]"]
- 139[Wall]
- 140[Wall]
- 141[Wall]
- 142[Wall]
- 143["Cap Start"]
- 144["Cap End"]
- 145["SweepEdge Opposite"]
- 146["SweepEdge Adjacent"]
- 147["SweepEdge Opposite"]
- 148["SweepEdge Adjacent"]
- 149["SweepEdge Opposite"]
- 150["SweepEdge Adjacent"]
- 151["SweepEdge Opposite"]
- 152["SweepEdge Adjacent"]
- 153["EdgeCut Fillet
[5290, 5572, 0]"]
- 154["EdgeCut Fillet
[5290, 5572, 0]"]
- 155["EdgeCut Fillet
[5290, 5572, 0]"]
- 156["EdgeCut Fillet
[5290, 5572, 0]"]
- 157["StartSketchOnFace
[3879, 3916, 0]"]
+ 20["EdgeCut Fillet
[771, 1053, 0]"]
+ 21["EdgeCut Fillet
[771, 1053, 0]"]
+ 22["EdgeCut Fillet
[771, 1053, 0]"]
+ 23["EdgeCut Fillet
[771, 1053, 0]"]
+ 24["Plane
[1566, 1589, 0]"]
+ 31["Sweep Extrusion
[1780, 1831, 0]"]
+ 32[Wall]
+ 33["Cap Start"]
+ 34["Cap End"]
+ 35["Plane
[1566, 1589, 0]"]
+ 42["Sweep Extrusion
[1780, 1831, 0]"]
+ 43[Wall]
+ 44["Cap Start"]
+ 45["Cap End"]
+ 46["Plane
[1566, 1589, 0]"]
+ 53["Sweep Extrusion
[1780, 1831, 0]"]
+ 54[Wall]
+ 55["Cap Start"]
+ 56["Cap End"]
+ 57["Plane
[1566, 1589, 0]"]
+ 64["Sweep Extrusion
[1780, 1831, 0]"]
+ 65[Wall]
+ 66["Cap Start"]
+ 67["Cap End"]
+ 68["Plane
[2308, 2325, 0]"]
+ 88["Sweep Extrusion
[3494, 3536, 0]"]
+ 89[Wall]
+ 90[Wall]
+ 91[Wall]
+ 92[Wall]
+ 93["Cap Start"]
+ 94["Cap End"]
+ 95["SweepEdge Opposite"]
+ 96["SweepEdge Opposite"]
+ 97["SweepEdge Opposite"]
+ 98["SweepEdge Adjacent"]
+ 99["EdgeCut Fillet
[3542, 3824, 0]"]
+ 100["EdgeCut Fillet
[3542, 3824, 0]"]
+ 101["EdgeCut Fillet
[3542, 3824, 0]"]
+ 102["EdgeCut Fillet
[3542, 3824, 0]"]
+ 122["Sweep Extrusion
[5242, 5284, 0]"]
+ 123[Wall]
+ 124[Wall]
+ 125[Wall]
+ 126[Wall]
+ 127["Cap Start"]
+ 128["Cap End"]
+ 129["SweepEdge Opposite"]
+ 130["SweepEdge Opposite"]
+ 131["SweepEdge Opposite"]
+ 132["SweepEdge Adjacent"]
+ 133["EdgeCut Fillet
[5290, 5572, 0]"]
+ 134["EdgeCut Fillet
[5290, 5572, 0]"]
+ 135["EdgeCut Fillet
[5290, 5572, 0]"]
+ 136["EdgeCut Fillet
[5290, 5572, 0]"]
+ 137["StartSketchOnFace
[3879, 3916, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -204,17 +184,17 @@ flowchart LR
2 ---- 9
2 --- 8
3 --- 10
- 3 --- 16
- 3 --- 17
+ 3 --- 19
+ 3 x--> 14
4 --- 11
- 4 --- 18
- 4 --- 19
+ 4 --- 16
+ 4 x--> 14
5 --- 12
- 5 --- 20
- 5 --- 21
+ 5 --- 17
+ 5 x--> 14
6 --- 13
- 6 --- 22
- 6 --- 23
+ 6 --- 18
+ 6 x--> 14
9 --- 10
9 --- 11
9 --- 12
@@ -225,173 +205,158 @@ flowchart LR
9 --- 17
9 --- 18
9 --- 19
- 9 --- 20
- 9 --- 21
- 9 --- 22
- 9 --- 23
- 17 <--x 24
- 19 <--x 25
- 21 <--x 26
- 23 <--x 27
+ 16 <--x 11
+ 16 <--x 15
+ 17 <--x 12
+ 17 <--x 15
+ 18 <--x 13
+ 18 <--x 15
+ 19 <--x 20
+ 24 --- 25
+ 24 --- 28
+ 25 --- 26
+ 25 ---- 31
+ 25 --- 27
+ 26 --- 32
+ 26 x--> 33
28 --- 29
- 28 --- 32
- 29 --- 30
- 29 ---- 35
- 29 --- 31
- 30 --- 36
- 30 --- 39
- 30 --- 40
- 32 --- 33
- 32 --- 34
+ 28 --- 30
+ 31 --- 32
+ 31 --- 33
+ 31 --- 34
35 --- 36
- 35 --- 37
- 35 --- 38
35 --- 39
- 35 --- 40
- 41 --- 42
- 41 --- 45
+ 36 --- 37
+ 36 ---- 42
+ 36 --- 38
+ 37 --- 43
+ 37 x--> 44
+ 39 --- 40
+ 39 --- 41
42 --- 43
- 42 ---- 48
42 --- 44
- 43 --- 49
- 43 --- 52
- 43 --- 53
- 45 --- 46
- 45 --- 47
- 48 --- 49
- 48 --- 50
- 48 --- 51
- 48 --- 52
- 48 --- 53
- 54 --- 55
- 54 --- 58
- 55 --- 56
- 55 ---- 61
- 55 --- 57
- 56 --- 62
- 56 --- 65
- 56 --- 66
+ 42 --- 45
+ 46 --- 47
+ 46 --- 50
+ 47 --- 48
+ 47 ---- 53
+ 47 --- 49
+ 48 --- 54
+ 48 x--> 55
+ 50 --- 51
+ 50 --- 52
+ 53 --- 54
+ 53 --- 55
+ 53 --- 56
+ 57 --- 58
+ 57 --- 61
58 --- 59
+ 58 ---- 64
58 --- 60
+ 59 --- 65
+ 59 x--> 66
61 --- 62
61 --- 63
- 61 --- 64
- 61 --- 65
- 61 --- 66
- 67 --- 68
- 67 --- 71
+ 64 --- 65
+ 64 --- 66
+ 64 --- 67
68 --- 69
- 68 ---- 74
- 68 --- 70
+ 68 --- 76
+ 68 --- 79
+ 68 --- 82
+ 68 --- 85
+ 69 --- 70
+ 69 --- 71
+ 69 --- 72
+ 69 --- 73
+ 69 --- 74
+ 69 ---- 88
69 --- 75
- 69 --- 78
- 69 --- 79
- 71 --- 72
- 71 --- 73
- 74 --- 75
- 74 --- 76
- 74 --- 77
- 74 --- 78
- 74 --- 79
- 80 --- 81
- 80 --- 88
- 80 --- 91
- 80 --- 94
- 80 --- 97
- 81 --- 82
- 81 --- 83
- 81 --- 84
- 81 --- 85
- 81 --- 86
- 81 ---- 100
- 81 --- 87
- 82 --- 101
- 82 --- 107
- 82 --- 108
- 83 --- 102
- 83 --- 109
- 83 --- 110
- 84 --- 103
- 84 --- 111
- 84 --- 112
- 85 --- 104
- 85 --- 113
- 85 --- 114
+ 70 --- 89
+ 70 --- 98
+ 70 x--> 93
+ 71 --- 90
+ 71 --- 95
+ 71 x--> 93
+ 72 --- 91
+ 72 --- 96
+ 72 x--> 93
+ 73 --- 92
+ 73 --- 97
+ 73 x--> 93
+ 76 --- 77
+ 76 --- 78
+ 79 --- 80
+ 79 --- 81
+ 82 --- 83
+ 82 --- 84
+ 85 --- 86
+ 85 --- 87
88 --- 89
88 --- 90
- 91 --- 92
- 91 --- 93
- 94 --- 95
- 94 --- 96
- 97 --- 98
- 97 --- 99
- 100 --- 101
- 100 --- 102
- 100 --- 103
- 100 --- 104
- 100 --- 105
- 100 --- 106
- 100 --- 107
- 100 --- 108
- 100 --- 109
- 100 --- 110
- 100 --- 111
- 100 --- 112
- 100 --- 113
- 100 --- 114
- 106 --- 119
- 106 --- 126
- 106 --- 129
- 106 --- 132
- 106 --- 135
- 108 <--x 115
- 110 <--x 116
- 112 <--x 117
- 114 <--x 118
+ 88 --- 91
+ 88 --- 92
+ 88 --- 93
+ 88 --- 94
+ 88 --- 95
+ 88 --- 96
+ 88 --- 97
+ 88 --- 98
+ 94 --- 103
+ 94 --- 110
+ 94 --- 113
+ 94 --- 116
+ 94 --- 119
+ 95 <--x 90
+ 95 <--x 94
+ 96 <--x 91
+ 96 <--x 94
+ 97 <--x 92
+ 97 <--x 94
+ 98 <--x 99
+ 103 --- 104
+ 103 --- 105
+ 103 --- 106
+ 103 --- 107
+ 103 --- 108
+ 103 ---- 122
+ 103 --- 109
+ 104 --- 123
+ 104 --- 132
+ 104 x--> 127
+ 105 --- 124
+ 105 --- 129
+ 105 x--> 127
+ 106 --- 125
+ 106 --- 130
+ 106 x--> 127
+ 107 --- 126
+ 107 --- 131
+ 107 x--> 127
+ 110 --- 111
+ 110 --- 112
+ 113 --- 114
+ 113 --- 115
+ 116 --- 117
+ 116 --- 118
119 --- 120
119 --- 121
- 119 --- 122
- 119 --- 123
- 119 --- 124
- 119 ---- 138
- 119 --- 125
- 120 --- 139
- 120 --- 145
- 120 --- 146
- 121 --- 140
- 121 --- 147
- 121 --- 148
- 122 --- 141
- 122 --- 149
- 122 --- 150
- 123 --- 142
- 123 --- 151
- 123 --- 152
- 126 --- 127
- 126 --- 128
- 129 --- 130
- 129 --- 131
- 132 --- 133
- 132 --- 134
- 135 --- 136
- 135 --- 137
- 138 --- 139
- 138 --- 140
- 138 --- 141
- 138 --- 142
- 138 --- 143
- 138 --- 144
- 138 --- 145
- 138 --- 146
- 138 --- 147
- 138 --- 148
- 138 --- 149
- 138 --- 150
- 138 --- 151
- 138 --- 152
- 146 <--x 153
- 148 <--x 154
- 150 <--x 155
- 152 <--x 156
- 106 <--x 157
+ 122 --- 123
+ 122 --- 124
+ 122 --- 125
+ 122 --- 126
+ 122 --- 127
+ 122 --- 128
+ 122 --- 129
+ 122 --- 130
+ 122 --- 131
+ 122 --- 132
+ 129 <--x 124
+ 129 <--x 128
+ 130 <--x 125
+ 130 <--x 128
+ 131 <--x 126
+ 131 <--x 128
+ 132 <--x 133
+ 94 <--x 137
```
diff --git a/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/artifact_commands.snap
index 7c42e1a7e..eb0f45d4d 100644
--- a/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/artifact_commands.snap
@@ -423,6 +423,33 @@ description: Artifact commands exhaust-manifold.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -826,6 +853,33 @@ description: Artifact commands exhaust-manifold.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1229,6 +1283,33 @@ description: Artifact commands exhaust-manifold.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1632,6 +1713,33 @@ description: Artifact commands exhaust-manifold.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2808,20 +2916,27 @@ description: Artifact commands exhaust-manifold.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2848,20 +2963,27 @@ description: Artifact commands exhaust-manifold.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2888,20 +3010,27 @@ description: Artifact commands exhaust-manifold.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2928,20 +3057,27 @@ description: Artifact commands exhaust-manifold.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2968,20 +3104,27 @@ description: Artifact commands exhaust-manifold.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3008,20 +3151,27 @@ description: Artifact commands exhaust-manifold.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3048,20 +3198,27 @@ description: Artifact commands exhaust-manifold.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3088,20 +3245,27 @@ description: Artifact commands exhaust-manifold.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3128,20 +3292,27 @@ description: Artifact commands exhaust-manifold.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3168,20 +3339,27 @@ description: Artifact commands exhaust-manifold.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3208,20 +3386,27 @@ description: Artifact commands exhaust-manifold.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3244,6 +3429,33 @@ description: Artifact commands exhaust-manifold.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3264,6 +3476,550 @@ description: Artifact commands exhaust-manifold.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/artifact_graph_flowchart.snap.md
index bc00e27b9..e8e49b142 100644
--- a/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/exhaust-manifold/artifact_graph_flowchart.snap.md
@@ -18,120 +18,120 @@ flowchart LR
13["Segment
[1298, 1376, 0]"]
14[Solid2d]
end
- subgraph path22 [Path]
- 22["Path
[781, 816, 0]"]
- 23["Segment
[824, 850, 0]"]
- 24["Segment
[858, 919, 0]"]
- 25["Segment
[927, 986, 0]"]
- 26["Segment
[994, 1054, 0]"]
- 27["Segment
[1062, 1121, 0]"]
+ subgraph path20 [Path]
+ 20["Path
[781, 816, 0]"]
+ 21["Segment
[824, 850, 0]"]
+ 22["Segment
[858, 919, 0]"]
+ 23["Segment
[927, 986, 0]"]
+ 24["Segment
[994, 1054, 0]"]
+ 25["Segment
[1062, 1121, 0]"]
end
- subgraph path29 [Path]
- 29["Path
[1223, 1285, 0]"]
- 30["Segment
[1223, 1285, 0]"]
- 31[Solid2d]
+ subgraph path27 [Path]
+ 27["Path
[1223, 1285, 0]"]
+ 28["Segment
[1223, 1285, 0]"]
+ 29[Solid2d]
end
- subgraph path32 [Path]
- 32["Path
[1298, 1376, 0]"]
- 33["Segment
[1298, 1376, 0]"]
- 34[Solid2d]
+ subgraph path30 [Path]
+ 30["Path
[1298, 1376, 0]"]
+ 31["Segment
[1298, 1376, 0]"]
+ 32[Solid2d]
end
- subgraph path42 [Path]
- 42["Path
[781, 816, 0]"]
- 43["Segment
[824, 850, 0]"]
- 44["Segment
[858, 919, 0]"]
- 45["Segment
[927, 986, 0]"]
- 46["Segment
[994, 1054, 0]"]
- 47["Segment
[1062, 1121, 0]"]
+ subgraph path38 [Path]
+ 38["Path
[781, 816, 0]"]
+ 39["Segment
[824, 850, 0]"]
+ 40["Segment
[858, 919, 0]"]
+ 41["Segment
[927, 986, 0]"]
+ 42["Segment
[994, 1054, 0]"]
+ 43["Segment
[1062, 1121, 0]"]
end
- subgraph path49 [Path]
- 49["Path
[1223, 1285, 0]"]
- 50["Segment
[1223, 1285, 0]"]
- 51[Solid2d]
+ subgraph path45 [Path]
+ 45["Path
[1223, 1285, 0]"]
+ 46["Segment
[1223, 1285, 0]"]
+ 47[Solid2d]
end
- subgraph path52 [Path]
- 52["Path
[1298, 1376, 0]"]
- 53["Segment
[1298, 1376, 0]"]
- 54[Solid2d]
+ subgraph path48 [Path]
+ 48["Path
[1298, 1376, 0]"]
+ 49["Segment
[1298, 1376, 0]"]
+ 50[Solid2d]
end
- subgraph path62 [Path]
- 62["Path
[781, 816, 0]"]
- 63["Segment
[824, 850, 0]"]
- 64["Segment
[858, 919, 0]"]
- 65["Segment
[927, 986, 0]"]
- 66["Segment
[994, 1054, 0]"]
- 67["Segment
[1062, 1121, 0]"]
+ subgraph path56 [Path]
+ 56["Path
[781, 816, 0]"]
+ 57["Segment
[824, 850, 0]"]
+ 58["Segment
[858, 919, 0]"]
+ 59["Segment
[927, 986, 0]"]
+ 60["Segment
[994, 1054, 0]"]
+ 61["Segment
[1062, 1121, 0]"]
end
- subgraph path69 [Path]
- 69["Path
[1223, 1285, 0]"]
- 70["Segment
[1223, 1285, 0]"]
- 71[Solid2d]
+ subgraph path63 [Path]
+ 63["Path
[1223, 1285, 0]"]
+ 64["Segment
[1223, 1285, 0]"]
+ 65[Solid2d]
end
- subgraph path72 [Path]
- 72["Path
[1298, 1376, 0]"]
- 73["Segment
[1298, 1376, 0]"]
- 74[Solid2d]
+ subgraph path66 [Path]
+ 66["Path
[1298, 1376, 0]"]
+ 67["Segment
[1298, 1376, 0]"]
+ 68[Solid2d]
end
- subgraph path82 [Path]
- 82["Path
[1703, 1738, 0]"]
- 83["Segment
[1744, 1778, 0]"]
- 84["Segment
[1784, 1823, 0]"]
- 85["Segment
[1829, 1867, 0]"]
- 86["Segment
[1873, 1912, 0]"]
- 87["Segment
[1918, 1952, 0]"]
- 88["Segment
[1958, 2001, 0]"]
- 89["Segment
[2007, 2040, 0]"]
- 90["Segment
[2046, 2085, 0]"]
- 91["Segment
[2091, 2130, 0]"]
- 92["Segment
[2136, 2175, 0]"]
- 93["Segment
[2181, 2224, 0]"]
- 94["Segment
[2230, 2281, 0]"]
- 95["Segment
[2287, 2331, 0]"]
- 96["Segment
[2337, 2376, 0]"]
- 97["Segment
[2382, 2420, 0]"]
- 98["Segment
[2426, 2491, 0]"]
- 99["Segment
[2497, 2504, 0]"]
- 100[Solid2d]
+ subgraph path74 [Path]
+ 74["Path
[1703, 1738, 0]"]
+ 75["Segment
[1744, 1778, 0]"]
+ 76["Segment
[1784, 1823, 0]"]
+ 77["Segment
[1829, 1867, 0]"]
+ 78["Segment
[1873, 1912, 0]"]
+ 79["Segment
[1918, 1952, 0]"]
+ 80["Segment
[1958, 2001, 0]"]
+ 81["Segment
[2007, 2040, 0]"]
+ 82["Segment
[2046, 2085, 0]"]
+ 83["Segment
[2091, 2130, 0]"]
+ 84["Segment
[2136, 2175, 0]"]
+ 85["Segment
[2181, 2224, 0]"]
+ 86["Segment
[2230, 2281, 0]"]
+ 87["Segment
[2287, 2331, 0]"]
+ 88["Segment
[2337, 2376, 0]"]
+ 89["Segment
[2382, 2420, 0]"]
+ 90["Segment
[2426, 2491, 0]"]
+ 91["Segment
[2497, 2504, 0]"]
+ 92[Solid2d]
end
- subgraph path101 [Path]
- 101["Path
[2576, 2649, 0]"]
- 102["Segment
[2576, 2649, 0]"]
- 103[Solid2d]
+ subgraph path93 [Path]
+ 93["Path
[2576, 2649, 0]"]
+ 94["Segment
[2576, 2649, 0]"]
+ 95[Solid2d]
end
- subgraph path104 [Path]
- 104["Path
[2664, 2737, 0]"]
- 105["Segment
[2664, 2737, 0]"]
- 106[Solid2d]
+ subgraph path96 [Path]
+ 96["Path
[2664, 2737, 0]"]
+ 97["Segment
[2664, 2737, 0]"]
+ 98[Solid2d]
end
- subgraph path107 [Path]
- 107["Path
[2752, 2825, 0]"]
- 108["Segment
[2752, 2825, 0]"]
- 109[Solid2d]
+ subgraph path99 [Path]
+ 99["Path
[2752, 2825, 0]"]
+ 100["Segment
[2752, 2825, 0]"]
+ 101[Solid2d]
end
- subgraph path110 [Path]
- 110["Path
[2840, 2913, 0]"]
- 111["Segment
[2840, 2913, 0]"]
- 112[Solid2d]
+ subgraph path102 [Path]
+ 102["Path
[2840, 2913, 0]"]
+ 103["Segment
[2840, 2913, 0]"]
+ 104[Solid2d]
end
- subgraph path113 [Path]
- 113["Path
[2967, 3106, 0]"]
- 114["Segment
[2967, 3106, 0]"]
- 115[Solid2d]
+ subgraph path105 [Path]
+ 105["Path
[2967, 3106, 0]"]
+ 106["Segment
[2967, 3106, 0]"]
+ 107[Solid2d]
end
- subgraph path116 [Path]
- 116["Path
[3121, 3258, 0]"]
- 117["Segment
[3121, 3258, 0]"]
- 118[Solid2d]
+ subgraph path108 [Path]
+ 108["Path
[3121, 3258, 0]"]
+ 109["Segment
[3121, 3258, 0]"]
+ 110[Solid2d]
end
- subgraph path119 [Path]
- 119["Path
[3273, 3420, 0]"]
- 120["Segment
[3273, 3420, 0]"]
- 121[Solid2d]
+ subgraph path111 [Path]
+ 111["Path
[3273, 3420, 0]"]
+ 112["Segment
[3273, 3420, 0]"]
+ 113[Solid2d]
end
- subgraph path122 [Path]
- 122["Path
[3435, 3581, 0]"]
- 123["Segment
[3435, 3581, 0]"]
- 124[Solid2d]
+ subgraph path114 [Path]
+ 114["Path
[3435, 3581, 0]"]
+ 115["Segment
[3435, 3581, 0]"]
+ 116[Solid2d]
end
1["Plane
[748, 773, 0]"]
8["Plane
[1198, 1215, 0]"]
@@ -139,34 +139,34 @@ flowchart LR
16[Wall]
17["Cap Start"]
18["Cap End"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["Plane
[748, 773, 0]"]
- 28["Plane
[1198, 1215, 0]"]
- 35["Sweep Sweep
[1388, 1411, 0]"]
- 36[Wall]
- 37["Cap Start"]
- 38["Cap End"]
- 39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 41["Plane
[748, 773, 0]"]
- 48["Plane
[1198, 1215, 0]"]
- 55["Sweep Sweep
[1388, 1411, 0]"]
- 56[Wall]
- 57["Cap Start"]
- 58["Cap End"]
- 59["SweepEdge Opposite"]
- 60["SweepEdge Adjacent"]
- 61["Plane
[748, 773, 0]"]
- 68["Plane
[1198, 1215, 0]"]
- 75["Sweep Sweep
[1388, 1411, 0]"]
- 76[Wall]
- 77["Cap Start"]
- 78["Cap End"]
- 79["SweepEdge Opposite"]
- 80["SweepEdge Adjacent"]
- 81["Plane
[1680, 1697, 0]"]
- 125["Sweep Extrusion
[3637, 3666, 0]"]
+ 19["Plane
[748, 773, 0]"]
+ 26["Plane
[1198, 1215, 0]"]
+ 33["Sweep Sweep
[1388, 1411, 0]"]
+ 34[Wall]
+ 35["Cap Start"]
+ 36["Cap End"]
+ 37["Plane
[748, 773, 0]"]
+ 44["Plane
[1198, 1215, 0]"]
+ 51["Sweep Sweep
[1388, 1411, 0]"]
+ 52[Wall]
+ 53["Cap Start"]
+ 54["Cap End"]
+ 55["Plane
[748, 773, 0]"]
+ 62["Plane
[1198, 1215, 0]"]
+ 69["Sweep Sweep
[1388, 1411, 0]"]
+ 70[Wall]
+ 71["Cap Start"]
+ 72["Cap End"]
+ 73["Plane
[1680, 1697, 0]"]
+ 117["Sweep Extrusion
[3637, 3666, 0]"]
+ 118[Wall]
+ 119[Wall]
+ 120[Wall]
+ 121[Wall]
+ 122[Wall]
+ 123[Wall]
+ 124[Wall]
+ 125[Wall]
126[Wall]
127[Wall]
128[Wall]
@@ -175,52 +175,28 @@ flowchart LR
131[Wall]
132[Wall]
133[Wall]
- 134[Wall]
- 135[Wall]
- 136[Wall]
- 137[Wall]
- 138[Wall]
- 139[Wall]
- 140[Wall]
- 141[Wall]
- 142["Cap Start"]
- 143["Cap End"]
+ 134["Cap Start"]
+ 135["Cap End"]
+ 136["SweepEdge Opposite"]
+ 137["SweepEdge Opposite"]
+ 138["SweepEdge Opposite"]
+ 139["SweepEdge Opposite"]
+ 140["SweepEdge Opposite"]
+ 141["SweepEdge Opposite"]
+ 142["SweepEdge Opposite"]
+ 143["SweepEdge Opposite"]
144["SweepEdge Opposite"]
- 145["SweepEdge Adjacent"]
+ 145["SweepEdge Opposite"]
146["SweepEdge Opposite"]
- 147["SweepEdge Adjacent"]
+ 147["SweepEdge Opposite"]
148["SweepEdge Opposite"]
- 149["SweepEdge Adjacent"]
+ 149["SweepEdge Opposite"]
150["SweepEdge Opposite"]
151["SweepEdge Adjacent"]
- 152["SweepEdge Opposite"]
- 153["SweepEdge Adjacent"]
- 154["SweepEdge Opposite"]
- 155["SweepEdge Adjacent"]
- 156["SweepEdge Opposite"]
- 157["SweepEdge Adjacent"]
- 158["SweepEdge Opposite"]
- 159["SweepEdge Adjacent"]
- 160["SweepEdge Opposite"]
- 161["SweepEdge Adjacent"]
- 162["SweepEdge Opposite"]
- 163["SweepEdge Adjacent"]
- 164["SweepEdge Opposite"]
- 165["SweepEdge Adjacent"]
- 166["SweepEdge Opposite"]
- 167["SweepEdge Adjacent"]
- 168["SweepEdge Opposite"]
- 169["SweepEdge Adjacent"]
- 170["SweepEdge Opposite"]
- 171["SweepEdge Adjacent"]
- 172["SweepEdge Opposite"]
- 173["SweepEdge Adjacent"]
- 174["SweepEdge Opposite"]
- 175["SweepEdge Adjacent"]
- 176["EdgeCut Fillet
[3672, 3806, 0]"]
- 177["EdgeCut Fillet
[3672, 3806, 0]"]
- 178["EdgeCut Fillet
[3812, 3946, 0]"]
- 179["EdgeCut Fillet
[3812, 3946, 0]"]
+ 152["EdgeCut Fillet
[3672, 3806, 0]"]
+ 153["EdgeCut Fillet
[3672, 3806, 0]"]
+ 154["EdgeCut Fillet
[3812, 3946, 0]"]
+ 155["EdgeCut Fillet
[3812, 3946, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -233,222 +209,221 @@ flowchart LR
9 ---- 15
9 --- 11
10 --- 16
- 10 --- 19
- 10 --- 20
+ 10 x--> 17
12 --- 13
12 --- 14
15 --- 16
15 --- 17
15 --- 18
- 15 --- 19
- 15 --- 20
- 21 --- 22
- 22 --- 23
- 22 --- 24
- 22 --- 25
- 22 --- 26
- 22 --- 27
- 28 --- 29
- 28 --- 32
- 29 --- 30
- 29 ---- 35
- 29 --- 31
- 30 --- 36
- 30 --- 39
- 30 --- 40
- 32 --- 33
- 32 --- 34
- 35 --- 36
- 35 --- 37
- 35 --- 38
- 35 --- 39
- 35 --- 40
- 41 --- 42
- 42 --- 43
- 42 --- 44
- 42 --- 45
- 42 --- 46
- 42 --- 47
+ 19 --- 20
+ 20 --- 21
+ 20 --- 22
+ 20 --- 23
+ 20 --- 24
+ 20 --- 25
+ 26 --- 27
+ 26 --- 30
+ 27 --- 28
+ 27 ---- 33
+ 27 --- 29
+ 28 --- 34
+ 28 x--> 35
+ 30 --- 31
+ 30 --- 32
+ 33 --- 34
+ 33 --- 35
+ 33 --- 36
+ 37 --- 38
+ 38 --- 39
+ 38 --- 40
+ 38 --- 41
+ 38 --- 42
+ 38 --- 43
+ 44 --- 45
+ 44 --- 48
+ 45 --- 46
+ 45 ---- 51
+ 45 --- 47
+ 46 --- 52
+ 46 x--> 53
48 --- 49
- 48 --- 52
- 49 --- 50
- 49 ---- 55
- 49 --- 51
- 50 --- 56
- 50 --- 59
- 50 --- 60
- 52 --- 53
- 52 --- 54
+ 48 --- 50
+ 51 --- 52
+ 51 --- 53
+ 51 --- 54
55 --- 56
- 55 --- 57
- 55 --- 58
- 55 --- 59
- 55 --- 60
- 61 --- 62
+ 56 --- 57
+ 56 --- 58
+ 56 --- 59
+ 56 --- 60
+ 56 --- 61
62 --- 63
- 62 --- 64
- 62 --- 65
62 --- 66
- 62 --- 67
- 68 --- 69
- 68 --- 72
+ 63 --- 64
+ 63 ---- 69
+ 63 --- 65
+ 64 --- 70
+ 64 x--> 71
+ 66 --- 67
+ 66 --- 68
69 --- 70
- 69 ---- 75
69 --- 71
- 70 --- 76
- 70 --- 79
- 70 --- 80
- 72 --- 73
- 72 --- 74
- 75 --- 76
- 75 --- 77
- 75 --- 78
- 75 --- 79
- 75 --- 80
- 81 --- 82
- 81 --- 101
- 81 --- 104
- 81 --- 107
- 81 --- 110
- 81 --- 113
- 81 --- 116
- 81 --- 119
- 81 --- 122
- 82 --- 83
- 82 --- 84
- 82 --- 85
- 82 --- 86
- 82 --- 87
- 82 --- 88
- 82 --- 89
- 82 --- 90
- 82 --- 91
- 82 --- 92
- 82 --- 93
- 82 --- 94
- 82 --- 95
- 82 --- 96
- 82 --- 97
- 82 --- 98
- 82 --- 99
- 82 ---- 125
- 82 --- 100
- 83 --- 141
- 83 --- 174
- 83 --- 175
- 84 --- 140
- 84 --- 172
- 84 --- 173
- 85 --- 139
- 85 --- 170
- 85 --- 171
- 86 --- 138
- 86 --- 168
- 86 --- 169
- 87 --- 137
- 87 --- 166
- 87 --- 167
- 88 --- 136
- 88 --- 164
- 88 --- 165
- 89 --- 135
- 89 --- 162
- 89 --- 163
- 90 --- 134
- 90 --- 160
- 90 --- 161
- 91 --- 133
- 91 --- 158
- 91 --- 159
- 92 --- 132
- 92 --- 156
- 92 --- 157
- 93 --- 131
- 93 --- 154
- 93 --- 155
- 94 --- 130
- 94 --- 152
- 94 --- 153
- 95 --- 129
- 95 --- 150
- 95 --- 151
- 96 --- 128
- 96 --- 148
- 96 --- 149
- 97 --- 127
- 97 --- 146
- 97 --- 147
- 98 --- 126
- 98 --- 144
- 98 --- 145
- 101 --- 102
- 101 --- 103
- 104 --- 105
- 104 --- 106
- 107 --- 108
- 107 --- 109
- 110 --- 111
- 110 --- 112
- 113 --- 114
- 113 --- 115
- 116 --- 117
- 116 --- 118
- 119 --- 120
- 119 --- 121
- 122 --- 123
- 122 --- 124
- 125 --- 126
- 125 --- 127
- 125 --- 128
- 125 --- 129
- 125 --- 130
- 125 --- 131
- 125 --- 132
- 125 --- 133
- 125 --- 134
- 125 --- 135
- 125 --- 136
- 125 --- 137
- 125 --- 138
- 125 --- 139
- 125 --- 140
- 125 --- 141
- 125 --- 142
- 125 --- 143
- 125 --- 144
- 125 --- 145
- 125 --- 146
- 125 --- 147
- 125 --- 148
- 125 --- 149
- 125 --- 150
- 125 --- 151
- 125 --- 152
- 125 --- 153
- 125 --- 154
- 125 --- 155
- 125 --- 156
- 125 --- 157
- 125 --- 158
- 125 --- 159
- 125 --- 160
- 125 --- 161
- 125 --- 162
- 125 --- 163
- 125 --- 164
- 125 --- 165
- 125 --- 166
- 125 --- 167
- 125 --- 168
- 125 --- 169
- 125 --- 170
- 125 --- 171
- 125 --- 172
- 125 --- 173
- 125 --- 174
- 125 --- 175
- 165 <--x 176
- 155 <--x 177
- 167 <--x 178
- 153 <--x 179
+ 69 --- 72
+ 73 --- 74
+ 73 --- 93
+ 73 --- 96
+ 73 --- 99
+ 73 --- 102
+ 73 --- 105
+ 73 --- 108
+ 73 --- 111
+ 73 --- 114
+ 74 --- 75
+ 74 --- 76
+ 74 --- 77
+ 74 --- 78
+ 74 --- 79
+ 74 --- 80
+ 74 --- 81
+ 74 --- 82
+ 74 --- 83
+ 74 --- 84
+ 74 --- 85
+ 74 --- 86
+ 74 --- 87
+ 74 --- 88
+ 74 --- 89
+ 74 --- 90
+ 74 --- 91
+ 74 ---- 117
+ 74 --- 92
+ 75 --- 133
+ 75 --- 150
+ 75 x--> 134
+ 76 --- 132
+ 76 --- 149
+ 76 x--> 134
+ 77 --- 131
+ 77 --- 148
+ 77 x--> 134
+ 78 --- 130
+ 78 --- 147
+ 78 x--> 134
+ 79 --- 129
+ 79 --- 146
+ 79 x--> 134
+ 80 --- 128
+ 80 --- 145
+ 80 --- 151
+ 80 x--> 134
+ 81 --- 127
+ 81 --- 144
+ 81 x--> 134
+ 82 --- 126
+ 82 --- 143
+ 82 x--> 134
+ 83 --- 125
+ 83 --- 142
+ 83 x--> 134
+ 84 --- 124
+ 84 --- 141
+ 84 x--> 134
+ 85 --- 123
+ 85 --- 140
+ 85 x--> 134
+ 86 --- 122
+ 86 --- 139
+ 86 x--> 134
+ 87 --- 121
+ 87 --- 138
+ 87 x--> 134
+ 88 --- 120
+ 88 --- 137
+ 88 x--> 134
+ 89 --- 119
+ 89 --- 136
+ 89 x--> 134
+ 90 --- 118
+ 90 x--> 134
+ 93 --- 94
+ 93 --- 95
+ 96 --- 97
+ 96 --- 98
+ 99 --- 100
+ 99 --- 101
+ 102 --- 103
+ 102 --- 104
+ 105 --- 106
+ 105 --- 107
+ 108 --- 109
+ 108 --- 110
+ 111 --- 112
+ 111 --- 113
+ 114 --- 115
+ 114 --- 116
+ 117 --- 118
+ 117 --- 119
+ 117 --- 120
+ 117 --- 121
+ 117 --- 122
+ 117 --- 123
+ 117 --- 124
+ 117 --- 125
+ 117 --- 126
+ 117 --- 127
+ 117 --- 128
+ 117 --- 129
+ 117 --- 130
+ 117 --- 131
+ 117 --- 132
+ 117 --- 133
+ 117 --- 134
+ 117 --- 135
+ 117 --- 136
+ 117 --- 137
+ 117 --- 138
+ 117 --- 139
+ 117 --- 140
+ 117 --- 141
+ 117 --- 142
+ 117 --- 143
+ 117 --- 144
+ 117 --- 145
+ 117 --- 146
+ 117 --- 147
+ 117 --- 148
+ 117 --- 149
+ 117 --- 150
+ 117 --- 151
+ 136 <--x 119
+ 136 <--x 135
+ 137 <--x 120
+ 137 <--x 135
+ 138 <--x 121
+ 138 <--x 135
+ 139 <--x 122
+ 139 <--x 135
+ 140 <--x 123
+ 140 <--x 135
+ 141 <--x 124
+ 141 <--x 135
+ 142 <--x 125
+ 142 <--x 135
+ 143 <--x 126
+ 143 <--x 135
+ 144 <--x 127
+ 144 <--x 135
+ 145 <--x 128
+ 145 <--x 135
+ 146 <--x 129
+ 146 <--x 135
+ 147 <--x 130
+ 147 <--x 135
+ 148 <--x 131
+ 148 <--x 135
+ 149 <--x 132
+ 149 <--x 135
+ 150 <--x 133
+ 150 <--x 135
+ 151 <--x 152
```
diff --git a/rust/kcl-lib/tests/kcl_samples/flange/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/flange/artifact_commands.snap
index cc94d9459..df8c03701 100644
--- a/rust/kcl-lib/tests/kcl_samples/flange/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/flange/artifact_commands.snap
@@ -399,20 +399,27 @@ description: Artifact commands flange.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -439,20 +446,27 @@ description: Artifact commands flange.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -475,6 +489,127 @@ description: Artifact commands flange.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -614,6 +749,33 @@ description: Artifact commands flange.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -753,6 +915,33 @@ description: Artifact commands flange.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -891,5 +1080,32 @@ description: Artifact commands flange.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/kcl_samples/flange/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/flange/artifact_graph_flowchart.snap.md
index fa13792b1..2d54bbedf 100644
--- a/rust/kcl-lib/tests/kcl_samples/flange/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/flange/artifact_graph_flowchart.snap.md
@@ -10,20 +10,20 @@ flowchart LR
7["Segment
[1185, 1230, 0]"]
8[Solid2d]
end
- subgraph path15 [Path]
- 15["Path
[1403, 1457, 0]"]
- 16["Segment
[1403, 1457, 0]"]
- 17[Solid2d]
+ subgraph path13 [Path]
+ 13["Path
[1403, 1457, 0]"]
+ 14["Segment
[1403, 1457, 0]"]
+ 15[Solid2d]
end
- subgraph path23 [Path]
- 23["Path
[1620, 1677, 0]"]
- 24["Segment
[1620, 1677, 0]"]
- 25[Solid2d]
+ subgraph path19 [Path]
+ 19["Path
[1620, 1677, 0]"]
+ 20["Segment
[1620, 1677, 0]"]
+ 21[Solid2d]
end
- subgraph path31 [Path]
- 31["Path
[1812, 1857, 0]"]
- 32["Segment
[1812, 1857, 0]"]
- 33[Solid2d]
+ subgraph path25 [Path]
+ 25["Path
[1812, 1857, 0]"]
+ 26["Segment
[1812, 1857, 0]"]
+ 27[Solid2d]
end
1["Plane
[840, 857, 0]"]
5["Plane
[1162, 1179, 0]"]
@@ -31,25 +31,17 @@ flowchart LR
10[Wall]
11["Cap Start"]
12["Cap End"]
- 13["SweepEdge Opposite"]
- 14["SweepEdge Adjacent"]
- 18["Sweep Extrusion
[1463, 1498, 0]"]
- 19[Wall]
- 20["Cap End"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 26["Sweep Extrusion
[1683, 1716, 0]"]
- 27[Wall]
- 28["Cap End"]
- 29["SweepEdge Opposite"]
- 30["SweepEdge Adjacent"]
- 34["Sweep Extrusion
[1863, 1938, 0]"]
- 35[Wall]
- 36["SweepEdge Opposite"]
- 37["SweepEdge Adjacent"]
- 38["StartSketchOnFace
[1360, 1397, 0]"]
- 39["StartSketchOnFace
[1575, 1614, 0]"]
- 40["StartSketchOnFace
[1767, 1806, 0]"]
+ 16["Sweep Extrusion
[1463, 1498, 0]"]
+ 17[Wall]
+ 18["Cap End"]
+ 22["Sweep Extrusion
[1683, 1716, 0]"]
+ 23[Wall]
+ 24["Cap End"]
+ 28["Sweep Extrusion
[1863, 1938, 0]"]
+ 29[Wall]
+ 30["StartSketchOnFace
[1360, 1397, 0]"]
+ 31["StartSketchOnFace
[1575, 1614, 0]"]
+ 32["StartSketchOnFace
[1767, 1806, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -58,46 +50,34 @@ flowchart LR
6 ---- 9
6 --- 8
7 --- 10
- 7 --- 13
- 7 --- 14
+ 7 x--> 11
9 --- 10
9 --- 11
9 --- 12
- 9 --- 13
- 9 --- 14
- 11 --- 23
- 12 --- 15
- 15 --- 16
- 15 ---- 18
- 15 --- 17
- 16 --- 19
- 16 --- 21
- 16 --- 22
- 18 --- 19
- 18 --- 20
- 18 --- 21
- 18 --- 22
- 20 --- 31
- 23 --- 24
- 23 ---- 26
- 23 --- 25
- 24 --- 27
- 24 --- 29
- 24 --- 30
- 26 --- 27
- 26 --- 28
+ 11 --- 19
+ 12 --- 13
+ 13 --- 14
+ 13 ---- 16
+ 13 --- 15
+ 14 --- 17
+ 14 <--x 12
+ 16 --- 17
+ 16 --- 18
+ 18 --- 25
+ 19 --- 20
+ 19 ---- 22
+ 19 --- 21
+ 20 --- 23
+ 20 <--x 11
+ 22 --- 23
+ 22 --- 24
+ 25 --- 26
+ 25 ---- 28
+ 25 --- 27
26 --- 29
- 26 --- 30
- 31 --- 32
- 31 ---- 34
- 31 --- 33
- 32 --- 35
- 32 --- 36
- 32 --- 37
- 34 --- 35
- 34 --- 36
- 34 --- 37
- 12 <--x 38
- 11 <--x 39
- 20 <--x 40
+ 26 <--x 18
+ 28 --- 29
+ 12 <--x 30
+ 11 <--x 31
+ 18 <--x 32
```
diff --git a/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/artifact_commands.snap
index 67e24773f..414004f37 100644
--- a/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/artifact_commands.snap
@@ -299,20 +299,27 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -339,20 +346,27 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -379,20 +393,27 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -415,6 +436,33 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -435,6 +483,174 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -771,20 +987,27 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -811,20 +1034,27 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -847,6 +1077,127 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1227,20 +1578,27 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1267,20 +1625,27 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1303,6 +1668,127 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1572,20 +2058,27 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1608,6 +2101,80 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1810,20 +2377,27 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1846,6 +2420,33 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1866,6 +2467,80 @@ description: Artifact commands focusrite-scarlett-mounting-bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/artifact_graph_flowchart.snap.md
index 9189b7cdc..eb07fff9f 100644
--- a/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/focusrite-scarlett-mounting-bracket/artifact_graph_flowchart.snap.md
@@ -12,46 +12,46 @@ flowchart LR
10["Segment
[1673, 1692, 0]"]
11[Solid2d]
end
- subgraph path40 [Path]
- 40["Path
[2383, 2437, 0]"]
- 41["Segment
[2443, 2496, 0]"]
- 42["Segment
[2502, 2552, 0]"]
- 43["Segment
[2558, 2612, 0]"]
- 44["Segment
[2618, 2638, 0]"]
- 45[Solid2d]
+ subgraph path31 [Path]
+ 31["Path
[2383, 2437, 0]"]
+ 32["Segment
[2443, 2496, 0]"]
+ 33["Segment
[2502, 2552, 0]"]
+ 34["Segment
[2558, 2612, 0]"]
+ 35["Segment
[2618, 2638, 0]"]
+ 36[Solid2d]
end
- subgraph path46 [Path]
- 46["Path
[2649, 2812, 0]"]
- 47["Segment
[2649, 2812, 0]"]
- 48[Solid2d]
+ subgraph path37 [Path]
+ 37["Path
[2649, 2812, 0]"]
+ 38["Segment
[2649, 2812, 0]"]
+ 39[Solid2d]
end
- subgraph path67 [Path]
- 67["Path
[3197, 3252, 0]"]
- 68["Segment
[3258, 3312, 0]"]
- 69["Segment
[3318, 3368, 0]"]
- 70["Segment
[3374, 3427, 0]"]
- 71["Segment
[3433, 3453, 0]"]
- 72[Solid2d]
+ subgraph path54 [Path]
+ 54["Path
[3197, 3252, 0]"]
+ 55["Segment
[3258, 3312, 0]"]
+ 56["Segment
[3318, 3368, 0]"]
+ 57["Segment
[3374, 3427, 0]"]
+ 58["Segment
[3433, 3453, 0]"]
+ 59[Solid2d]
end
- subgraph path73 [Path]
- 73["Path
[3464, 3630, 0]"]
- 74["Segment
[3464, 3630, 0]"]
- 75[Solid2d]
+ subgraph path60 [Path]
+ 60["Path
[3464, 3630, 0]"]
+ 61["Segment
[3464, 3630, 0]"]
+ 62[Solid2d]
end
- subgraph path94 [Path]
- 94["Path
[4213, 4254, 0]"]
- 95["Segment
[4260, 4280, 0]"]
- 96["Segment
[4286, 4309, 0]"]
- 97["Segment
[4315, 4322, 0]"]
- 98[Solid2d]
+ subgraph path77 [Path]
+ 77["Path
[4213, 4254, 0]"]
+ 78["Segment
[4260, 4280, 0]"]
+ 79["Segment
[4286, 4309, 0]"]
+ 80["Segment
[4315, 4322, 0]"]
+ 81[Solid2d]
end
- subgraph path112 [Path]
- 112["Path
[4437, 4477, 0]"]
- 113["Segment
[4483, 4503, 0]"]
- 114["Segment
[4509, 4530, 0]"]
- 115["Segment
[4536, 4557, 0]"]
- 116["Segment
[4563, 4570, 0]"]
- 117[Solid2d]
+ subgraph path91 [Path]
+ 91["Path
[4437, 4477, 0]"]
+ 92["Segment
[4483, 4503, 0]"]
+ 93["Segment
[4509, 4530, 0]"]
+ 94["Segment
[4536, 4557, 0]"]
+ 95["Segment
[4563, 4570, 0]"]
+ 96[Solid2d]
end
1["Plane
[1199, 1226, 0]"]
12["Sweep Extrusion
[1800, 1834, 0]"]
@@ -66,90 +66,64 @@ flowchart LR
21["Cap Start"]
22["Cap End"]
23["SweepEdge Opposite"]
- 24["SweepEdge Adjacent"]
+ 24["SweepEdge Opposite"]
25["SweepEdge Opposite"]
- 26["SweepEdge Adjacent"]
+ 26["SweepEdge Opposite"]
27["SweepEdge Opposite"]
- 28["SweepEdge Adjacent"]
+ 28["SweepEdge Opposite"]
29["SweepEdge Opposite"]
- 30["SweepEdge Adjacent"]
- 31["SweepEdge Opposite"]
- 32["SweepEdge Adjacent"]
- 33["SweepEdge Opposite"]
- 34["SweepEdge Adjacent"]
- 35["SweepEdge Opposite"]
- 36["SweepEdge Adjacent"]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
- 39["Plane
[2354, 2377, 0]"]
- 49["Sweep Extrusion
[2822, 2847, 0]"]
- 50[Wall]
- 51[Wall]
- 52[Wall]
- 53[Wall]
- 54["Cap Start"]
- 55["Cap End"]
- 56["SweepEdge Opposite"]
- 57["SweepEdge Adjacent"]
- 58["SweepEdge Opposite"]
- 59["SweepEdge Adjacent"]
- 60["SweepEdge Opposite"]
- 61["SweepEdge Adjacent"]
- 62["SweepEdge Opposite"]
- 63["SweepEdge Adjacent"]
- 64["EdgeCut Fillet
[2853, 2998, 0]"]
- 65["EdgeCut Fillet
[2853, 2998, 0]"]
- 66["Plane
[3168, 3191, 0]"]
- 76["Sweep Extrusion
[3640, 3665, 0]"]
- 77[Wall]
- 78[Wall]
- 79[Wall]
- 80[Wall]
- 81["Cap Start"]
- 82["Cap End"]
- 83["SweepEdge Opposite"]
- 84["SweepEdge Adjacent"]
- 85["SweepEdge Opposite"]
- 86["SweepEdge Adjacent"]
- 87["SweepEdge Opposite"]
- 88["SweepEdge Adjacent"]
+ 30["Plane
[2354, 2377, 0]"]
+ 40["Sweep Extrusion
[2822, 2847, 0]"]
+ 41[Wall]
+ 42[Wall]
+ 43[Wall]
+ 44[Wall]
+ 45["Cap Start"]
+ 46["Cap End"]
+ 47["SweepEdge Opposite"]
+ 48["SweepEdge Opposite"]
+ 49["SweepEdge Opposite"]
+ 50["SweepEdge Adjacent"]
+ 51["EdgeCut Fillet
[2853, 2998, 0]"]
+ 52["EdgeCut Fillet
[2853, 2998, 0]"]
+ 53["Plane
[3168, 3191, 0]"]
+ 63["Sweep Extrusion
[3640, 3665, 0]"]
+ 64[Wall]
+ 65[Wall]
+ 66[Wall]
+ 67[Wall]
+ 68["Cap Start"]
+ 69["Cap End"]
+ 70["SweepEdge Opposite"]
+ 71["SweepEdge Opposite"]
+ 72["SweepEdge Opposite"]
+ 73["SweepEdge Adjacent"]
+ 74["EdgeCut Fillet
[3671, 3816, 0]"]
+ 75["EdgeCut Fillet
[3671, 3816, 0]"]
+ 76["Plane
[4184, 4207, 0]"]
+ 82["Sweep Extrusion
[4328, 4356, 0]"]
+ 83[Wall]
+ 84[Wall]
+ 85[Wall]
+ 86["Cap Start"]
+ 87["Cap End"]
+ 88["SweepEdge Opposite"]
89["SweepEdge Opposite"]
- 90["SweepEdge Adjacent"]
- 91["EdgeCut Fillet
[3671, 3816, 0]"]
- 92["EdgeCut Fillet
[3671, 3816, 0]"]
- 93["Plane
[4184, 4207, 0]"]
- 99["Sweep Extrusion
[4328, 4356, 0]"]
+ 90["Plane
[4408, 4431, 0]"]
+ 97["Sweep Extrusion
[4576, 4604, 0]"]
+ 98[Wall]
+ 99[Wall]
100[Wall]
101[Wall]
- 102[Wall]
- 103["Cap Start"]
- 104["Cap End"]
+ 102["Cap Start"]
+ 103["Cap End"]
+ 104["SweepEdge Opposite"]
105["SweepEdge Opposite"]
- 106["SweepEdge Adjacent"]
- 107["SweepEdge Opposite"]
- 108["SweepEdge Adjacent"]
- 109["SweepEdge Opposite"]
- 110["SweepEdge Adjacent"]
- 111["Plane
[4408, 4431, 0]"]
- 118["Sweep Extrusion
[4576, 4604, 0]"]
- 119[Wall]
- 120[Wall]
- 121[Wall]
- 122[Wall]
- 123["Cap Start"]
- 124["Cap End"]
- 125["SweepEdge Opposite"]
- 126["SweepEdge Adjacent"]
- 127["SweepEdge Opposite"]
- 128["SweepEdge Adjacent"]
- 129["SweepEdge Opposite"]
- 130["SweepEdge Adjacent"]
- 131["SweepEdge Opposite"]
- 132["SweepEdge Adjacent"]
- 133["EdgeCut Fillet
[1840, 2099, 0]"]
- 134["EdgeCut Fillet
[1840, 2099, 0]"]
- 135["EdgeCut Fillet
[1840, 2099, 0]"]
- 136["EdgeCut Fillet
[1840, 2099, 0]"]
+ 106["SweepEdge Opposite"]
+ 107["EdgeCut Fillet
[1840, 2099, 0]"]
+ 108["EdgeCut Fillet
[1840, 2099, 0]"]
+ 109["EdgeCut Fillet
[1840, 2099, 0]"]
+ 110["EdgeCut Fillet
[1840, 2099, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -162,29 +136,28 @@ flowchart LR
2 ---- 12
2 --- 11
3 --- 13
- 3 --- 23
- 3 --- 24
+ 3 x--> 21
4 --- 14
- 4 --- 25
- 4 --- 26
+ 4 --- 23
+ 4 x--> 21
5 --- 15
- 5 --- 27
- 5 --- 28
+ 5 --- 24
+ 5 x--> 21
6 --- 16
- 6 --- 29
- 6 --- 30
+ 6 --- 25
+ 6 x--> 21
7 --- 17
- 7 --- 31
- 7 --- 32
+ 7 --- 26
+ 7 x--> 21
8 --- 18
- 8 --- 33
- 8 --- 34
+ 8 --- 27
+ 8 x--> 21
9 --- 19
- 9 --- 35
- 9 --- 36
+ 9 --- 28
+ 9 x--> 21
10 --- 20
- 10 --- 37
- 10 --- 38
+ 10 --- 29
+ 10 x--> 21
12 --- 13
12 --- 14
12 --- 15
@@ -202,152 +175,154 @@ flowchart LR
12 --- 27
12 --- 28
12 --- 29
- 12 --- 30
- 12 --- 31
- 12 --- 32
- 12 --- 33
- 12 --- 34
- 12 --- 35
- 12 --- 36
- 12 --- 37
- 12 --- 38
- 39 --- 40
- 39 --- 46
+ 23 <--x 14
+ 23 <--x 22
+ 24 <--x 15
+ 24 <--x 22
+ 25 <--x 16
+ 25 <--x 22
+ 26 <--x 17
+ 26 <--x 22
+ 27 <--x 18
+ 27 <--x 22
+ 28 <--x 19
+ 28 <--x 22
+ 29 <--x 20
+ 29 <--x 22
+ 30 --- 31
+ 30 --- 37
+ 31 --- 32
+ 31 --- 33
+ 31 --- 34
+ 31 --- 35
+ 31 ---- 40
+ 31 --- 36
+ 32 --- 44
+ 32 --- 49
+ 32 --- 50
+ 32 x--> 46
+ 33 --- 43
+ 33 --- 48
+ 33 x--> 46
+ 34 --- 42
+ 34 --- 47
+ 34 x--> 46
+ 35 --- 41
+ 35 x--> 46
+ 37 --- 38
+ 37 --- 39
40 --- 41
40 --- 42
40 --- 43
40 --- 44
- 40 ---- 49
40 --- 45
- 41 --- 53
- 41 --- 62
- 41 --- 63
- 42 --- 52
- 42 --- 60
- 42 --- 61
- 43 --- 51
- 43 --- 58
- 43 --- 59
- 44 --- 50
- 44 --- 56
- 44 --- 57
- 46 --- 47
- 46 --- 48
- 49 --- 50
- 49 --- 51
- 49 --- 52
- 49 --- 53
- 49 --- 54
- 49 --- 55
- 49 --- 56
- 49 --- 57
- 49 --- 58
- 49 --- 59
- 49 --- 60
- 49 --- 61
- 49 --- 62
- 49 --- 63
- 63 <--x 64
- 61 <--x 65
- 66 --- 67
- 66 --- 73
- 67 --- 68
- 67 --- 69
- 67 --- 70
- 67 --- 71
- 67 ---- 76
- 67 --- 72
- 68 --- 77
- 68 --- 83
- 68 --- 84
- 69 --- 78
- 69 --- 85
- 69 --- 86
- 70 --- 79
- 70 --- 87
- 70 --- 88
- 71 --- 80
- 71 --- 89
- 71 --- 90
- 73 --- 74
- 73 --- 75
+ 40 --- 46
+ 40 --- 47
+ 40 --- 48
+ 40 --- 49
+ 40 --- 50
+ 47 <--x 42
+ 47 <--x 45
+ 48 <--x 43
+ 48 <--x 45
+ 49 <--x 44
+ 49 <--x 45
+ 50 <--x 51
+ 53 --- 54
+ 53 --- 60
+ 54 --- 55
+ 54 --- 56
+ 54 --- 57
+ 54 --- 58
+ 54 ---- 63
+ 54 --- 59
+ 55 --- 64
+ 55 --- 73
+ 55 x--> 69
+ 56 --- 65
+ 56 --- 70
+ 56 x--> 69
+ 57 --- 66
+ 57 --- 71
+ 57 x--> 69
+ 58 --- 67
+ 58 --- 72
+ 58 x--> 69
+ 60 --- 61
+ 60 --- 62
+ 63 --- 64
+ 63 --- 65
+ 63 --- 66
+ 63 --- 67
+ 63 --- 68
+ 63 --- 69
+ 63 --- 70
+ 63 --- 71
+ 63 --- 72
+ 63 --- 73
+ 70 <--x 65
+ 70 <--x 68
+ 71 <--x 66
+ 71 <--x 68
+ 72 <--x 67
+ 72 <--x 68
+ 73 <--x 74
76 --- 77
- 76 --- 78
- 76 --- 79
- 76 --- 80
- 76 --- 81
- 76 --- 82
- 76 --- 83
- 76 --- 84
- 76 --- 85
- 76 --- 86
- 76 --- 87
- 76 --- 88
- 76 --- 89
- 76 --- 90
- 84 <--x 91
- 86 <--x 92
- 93 --- 94
- 94 --- 95
- 94 --- 96
- 94 --- 97
- 94 ---- 99
- 94 --- 98
- 95 --- 102
- 95 --- 109
- 95 --- 110
- 96 --- 101
- 96 --- 107
- 96 --- 108
+ 77 --- 78
+ 77 --- 79
+ 77 --- 80
+ 77 ---- 82
+ 77 --- 81
+ 78 --- 85
+ 78 --- 89
+ 78 x--> 86
+ 79 --- 84
+ 79 --- 88
+ 79 x--> 86
+ 80 --- 83
+ 80 x--> 86
+ 82 --- 83
+ 82 --- 84
+ 82 --- 85
+ 82 --- 86
+ 82 --- 87
+ 82 --- 88
+ 82 --- 89
+ 88 <--x 84
+ 88 <--x 87
+ 89 <--x 85
+ 89 <--x 87
+ 90 --- 91
+ 91 --- 92
+ 91 --- 93
+ 91 --- 94
+ 91 --- 95
+ 91 ---- 97
+ 91 --- 96
+ 92 --- 98
+ 92 x--> 102
+ 93 --- 99
+ 93 --- 104
+ 93 x--> 102
+ 94 --- 100
+ 94 --- 105
+ 94 x--> 102
+ 95 --- 101
+ 95 --- 106
+ 95 x--> 102
+ 97 --- 98
+ 97 --- 99
97 --- 100
+ 97 --- 101
+ 97 --- 102
+ 97 --- 103
+ 97 --- 104
97 --- 105
97 --- 106
- 99 --- 100
- 99 --- 101
- 99 --- 102
- 99 --- 103
- 99 --- 104
- 99 --- 105
- 99 --- 106
- 99 --- 107
- 99 --- 108
- 99 --- 109
- 99 --- 110
- 111 --- 112
- 112 --- 113
- 112 --- 114
- 112 --- 115
- 112 --- 116
- 112 ---- 118
- 112 --- 117
- 113 --- 119
- 113 --- 125
- 113 --- 126
- 114 --- 120
- 114 --- 127
- 114 --- 128
- 115 --- 121
- 115 --- 129
- 115 --- 130
- 116 --- 122
- 116 --- 131
- 116 --- 132
- 118 --- 119
- 118 --- 120
- 118 --- 121
- 118 --- 122
- 118 --- 123
- 118 --- 124
- 118 --- 125
- 118 --- 126
- 118 --- 127
- 118 --- 128
- 118 --- 129
- 118 --- 130
- 118 --- 131
- 118 --- 132
- 34 <--x 133
- 24 <--x 134
- 26 <--x 135
- 32 <--x 136
+ 104 <--x 99
+ 104 <--x 103
+ 105 <--x 100
+ 105 <--x 103
+ 106 <--x 101
+ 106 <--x 103
```
diff --git a/rust/kcl-lib/tests/kcl_samples/food-service-spatula/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/food-service-spatula/artifact_commands.snap
index 51e1a4fa1..ab71ac735 100644
--- a/rust/kcl-lib/tests/kcl_samples/food-service-spatula/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/food-service-spatula/artifact_commands.snap
@@ -664,20 +664,27 @@ description: Artifact commands food-service-spatula.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -704,20 +711,27 @@ description: Artifact commands food-service-spatula.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -744,20 +758,27 @@ description: Artifact commands food-service-spatula.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -784,20 +805,27 @@ description: Artifact commands food-service-spatula.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -824,20 +852,27 @@ description: Artifact commands food-service-spatula.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -864,20 +899,27 @@ description: Artifact commands food-service-spatula.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -904,20 +946,27 @@ description: Artifact commands food-service-spatula.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -944,20 +993,27 @@ description: Artifact commands food-service-spatula.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -980,6 +1036,409 @@ description: Artifact commands food-service-spatula.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1267,20 +1726,27 @@ description: Artifact commands food-service-spatula.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1307,20 +1773,27 @@ description: Artifact commands food-service-spatula.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1347,20 +1820,27 @@ description: Artifact commands food-service-spatula.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1383,6 +1863,174 @@ description: Artifact commands food-service-spatula.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1722,20 +2370,27 @@ description: Artifact commands food-service-spatula.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1762,20 +2417,27 @@ description: Artifact commands food-service-spatula.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1802,20 +2464,27 @@ description: Artifact commands food-service-spatula.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1838,6 +2507,33 @@ description: Artifact commands food-service-spatula.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1858,6 +2554,174 @@ description: Artifact commands food-service-spatula.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2043,20 +2907,27 @@ description: Artifact commands food-service-spatula.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2079,6 +2950,33 @@ description: Artifact commands food-service-spatula.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2099,6 +2997,80 @@ description: Artifact commands food-service-spatula.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/food-service-spatula/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/food-service-spatula/artifact_graph_flowchart.snap.md
index b22b3f4f9..2aff4b2e2 100644
--- a/rust/kcl-lib/tests/kcl_samples/food-service-spatula/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/food-service-spatula/artifact_graph_flowchart.snap.md
@@ -36,38 +36,38 @@ flowchart LR
28["Segment
[1277, 1284, 0]"]
29[Solid2d]
end
- subgraph path49 [Path]
- 49["Path
[2714, 2770, 0]"]
- 50["Segment
[2776, 2835, 0]"]
- 51["Segment
[2841, 2876, 0]"]
- 52["Segment
[2882, 2915, 0]"]
- 53["Segment
[2921, 2980, 0]"]
- 54["Segment
[2986, 3022, 0]"]
- 55["Segment
[3028, 3052, 0]"]
- 56["Segment
[3058, 3065, 0]"]
- 57[Solid2d]
+ subgraph path44 [Path]
+ 44["Path
[2714, 2770, 0]"]
+ 45["Segment
[2776, 2835, 0]"]
+ 46["Segment
[2841, 2876, 0]"]
+ 47["Segment
[2882, 2915, 0]"]
+ 48["Segment
[2921, 2980, 0]"]
+ 49["Segment
[2986, 3022, 0]"]
+ 50["Segment
[3028, 3052, 0]"]
+ 51["Segment
[3058, 3065, 0]"]
+ 52[Solid2d]
end
- subgraph path83 [Path]
- 83["Path
[3660, 3710, 0]"]
- 84["Segment
[3716, 3766, 0]"]
- 85["Segment
[3772, 3838, 0]"]
- 86["Segment
[3844, 3895, 0]"]
- 87["Segment
[3901, 3966, 0]"]
- 88["Segment
[3972, 4025, 0]"]
- 89["Segment
[4031, 4098, 0]"]
- 90["Segment
[4104, 4178, 0]"]
- 91["Segment
[4184, 4252, 0]"]
- 92["Segment
[4258, 4265, 0]"]
- 93[Solid2d]
+ subgraph path71 [Path]
+ 71["Path
[3660, 3710, 0]"]
+ 72["Segment
[3716, 3766, 0]"]
+ 73["Segment
[3772, 3838, 0]"]
+ 74["Segment
[3844, 3895, 0]"]
+ 75["Segment
[3901, 3966, 0]"]
+ 76["Segment
[3972, 4025, 0]"]
+ 77["Segment
[4031, 4098, 0]"]
+ 78["Segment
[4104, 4178, 0]"]
+ 79["Segment
[4184, 4252, 0]"]
+ 80["Segment
[4258, 4265, 0]"]
+ 81[Solid2d]
end
- subgraph path121 [Path]
- 121["Path
[1001, 1045, 0]"]
- 122["Segment
[1053, 1093, 0]"]
- 123["Segment
[1101, 1147, 0]"]
- 124["Segment
[1155, 1196, 0]"]
- 125["Segment
[1204, 1269, 0]"]
- 126["Segment
[1277, 1284, 0]"]
- 127[Solid2d]
+ subgraph path100 [Path]
+ 100["Path
[1001, 1045, 0]"]
+ 101["Segment
[1053, 1093, 0]"]
+ 102["Segment
[1101, 1147, 0]"]
+ 103["Segment
[1155, 1196, 0]"]
+ 104["Segment
[1204, 1269, 0]"]
+ 105["Segment
[1277, 1284, 0]"]
+ 106[Solid2d]
end
1["Plane
[1377, 1394, 0]"]
30["Sweep Extrusion
[2286, 2336, 0]"]
@@ -79,87 +79,61 @@ flowchart LR
36["Cap Start"]
37["Cap End"]
38["SweepEdge Opposite"]
- 39["SweepEdge Adjacent"]
+ 39["SweepEdge Opposite"]
40["SweepEdge Opposite"]
- 41["SweepEdge Adjacent"]
- 42["SweepEdge Opposite"]
- 43["SweepEdge Adjacent"]
- 44["SweepEdge Opposite"]
- 45["SweepEdge Adjacent"]
- 46["SweepEdge Opposite"]
- 47["SweepEdge Adjacent"]
- 48["Plane
[2611, 2653, 0]"]
- 58["Sweep Extrusion
[3099, 3143, 0]"]
+ 41["SweepEdge Opposite"]
+ 42["SweepEdge Adjacent"]
+ 43["Plane
[2611, 2653, 0]"]
+ 53["Sweep Extrusion
[3099, 3143, 0]"]
+ 54[Wall]
+ 55[Wall]
+ 56[Wall]
+ 57[Wall]
+ 58[Wall]
59[Wall]
60[Wall]
- 61[Wall]
- 62[Wall]
- 63[Wall]
- 64[Wall]
- 65[Wall]
- 66["Cap Start"]
- 67["Cap End"]
+ 61["Cap Start"]
+ 62["Cap End"]
+ 63["SweepEdge Opposite"]
+ 64["SweepEdge Opposite"]
+ 65["SweepEdge Opposite"]
+ 66["SweepEdge Opposite"]
+ 67["SweepEdge Opposite"]
68["SweepEdge Opposite"]
69["SweepEdge Adjacent"]
- 70["SweepEdge Opposite"]
- 71["SweepEdge Adjacent"]
- 72["SweepEdge Opposite"]
- 73["SweepEdge Adjacent"]
- 74["SweepEdge Opposite"]
- 75["SweepEdge Adjacent"]
- 76["SweepEdge Opposite"]
- 77["SweepEdge Adjacent"]
- 78["SweepEdge Opposite"]
- 79["SweepEdge Adjacent"]
- 80["SweepEdge Opposite"]
- 81["SweepEdge Adjacent"]
- 82["Plane
[3586, 3612, 0]"]
- 94["Sweep Extrusion
[4321, 4363, 0]"]
- 95[Wall]
- 96[Wall]
- 97[Wall]
- 98[Wall]
- 99[Wall]
- 100[Wall]
- 101[Wall]
- 102[Wall]
- 103["Cap Start"]
- 104["Cap End"]
- 105["SweepEdge Opposite"]
- 106["SweepEdge Adjacent"]
- 107["SweepEdge Opposite"]
- 108["SweepEdge Adjacent"]
- 109["SweepEdge Opposite"]
- 110["SweepEdge Adjacent"]
- 111["SweepEdge Opposite"]
- 112["SweepEdge Adjacent"]
+ 70["Plane
[3586, 3612, 0]"]
+ 82["Sweep Extrusion
[4321, 4363, 0]"]
+ 83[Wall]
+ 84[Wall]
+ 85[Wall]
+ 86[Wall]
+ 87[Wall]
+ 88[Wall]
+ 89[Wall]
+ 90[Wall]
+ 91["Cap Start"]
+ 92["Cap End"]
+ 93["SweepEdge Opposite"]
+ 94["SweepEdge Opposite"]
+ 95["SweepEdge Opposite"]
+ 96["SweepEdge Opposite"]
+ 97["SweepEdge Opposite"]
+ 98["SweepEdge Opposite"]
+ 99["SweepEdge Opposite"]
+ 107["Sweep Extrusion
[4598, 4648, 0]"]
+ 108[Wall]
+ 109[Wall]
+ 110[Wall]
+ 111[Wall]
+ 112["SweepEdge Opposite"]
113["SweepEdge Opposite"]
- 114["SweepEdge Adjacent"]
- 115["SweepEdge Opposite"]
- 116["SweepEdge Adjacent"]
- 117["SweepEdge Opposite"]
- 118["SweepEdge Adjacent"]
- 119["SweepEdge Opposite"]
- 120["SweepEdge Adjacent"]
- 128["Sweep Extrusion
[4598, 4648, 0]"]
- 129[Wall]
- 130[Wall]
- 131[Wall]
- 132[Wall]
- 133["SweepEdge Opposite"]
- 134["SweepEdge Adjacent"]
- 135["SweepEdge Opposite"]
- 136["SweepEdge Adjacent"]
- 137["SweepEdge Opposite"]
- 138["SweepEdge Adjacent"]
- 139["SweepEdge Opposite"]
- 140["SweepEdge Adjacent"]
- 141["EdgeCut Fillet
[2373, 2514, 0]"]
- 142["EdgeCut Fillet
[2373, 2514, 0]"]
- 143["EdgeCut Fillet
[3186, 3317, 0]"]
- 144["EdgeCut Fillet
[3186, 3317, 0]"]
- 145["StartSketchOnPlane
[2597, 2654, 0]"]
- 146["StartSketchOnFace
[4422, 4461, 0]"]
+ 114["SweepEdge Opposite"]
+ 115["EdgeCut Fillet
[2373, 2514, 0]"]
+ 116["EdgeCut Fillet
[2373, 2514, 0]"]
+ 117["EdgeCut Fillet
[3186, 3317, 0]"]
+ 118["EdgeCut Fillet
[3186, 3317, 0]"]
+ 119["StartSketchOnPlane
[2597, 2654, 0]"]
+ 120["StartSketchOnFace
[4422, 4461, 0]"]
1 --- 2
1 --- 9
1 --- 16
@@ -172,20 +146,20 @@ flowchart LR
2 ---- 30
2 --- 8
3 --- 31
- 3 --- 38
- 3 --- 39
+ 3 x--> 36
4 --- 32
- 4 --- 40
- 4 --- 41
+ 4 --- 38
+ 4 --- 42
+ 4 x--> 36
5 --- 33
- 5 --- 42
- 5 --- 43
+ 5 --- 39
+ 5 x--> 36
6 --- 34
- 6 --- 44
- 6 --- 45
+ 6 --- 40
+ 6 x--> 36
7 --- 35
- 7 --- 46
- 7 --- 47
+ 7 --- 41
+ 7 x--> 36
9 --- 10
9 --- 11
9 --- 12
@@ -216,163 +190,173 @@ flowchart LR
30 --- 40
30 --- 41
30 --- 42
- 30 --- 43
- 30 --- 44
- 30 --- 45
- 30 --- 46
- 30 --- 47
- 48 --- 49
- 49 --- 50
- 49 --- 51
- 49 --- 52
- 49 --- 53
- 49 --- 54
- 49 --- 55
- 49 --- 56
- 49 ---- 58
- 49 --- 57
+ 38 <--x 32
+ 38 <--x 37
+ 39 <--x 33
+ 39 <--x 37
+ 40 <--x 34
+ 40 <--x 37
+ 41 <--x 35
+ 41 <--x 37
+ 43 --- 44
+ 44 --- 45
+ 44 --- 46
+ 44 --- 47
+ 44 --- 48
+ 44 --- 49
+ 44 --- 50
+ 44 --- 51
+ 44 ---- 53
+ 44 --- 52
+ 45 --- 54
+ 45 --- 69
+ 45 x--> 61
+ 46 --- 55
+ 46 --- 63
+ 46 x--> 61
+ 47 --- 56
+ 47 --- 64
+ 47 x--> 61
+ 48 --- 57
+ 48 --- 65
+ 48 x--> 61
+ 49 --- 58
+ 49 --- 66
+ 49 x--> 61
50 --- 59
- 50 --- 68
- 50 --- 69
+ 50 --- 67
+ 50 x--> 61
51 --- 60
- 51 --- 70
- 51 --- 71
- 52 --- 61
- 52 --- 72
- 52 --- 73
+ 51 --- 68
+ 51 x--> 61
+ 53 --- 54
+ 53 --- 55
+ 53 --- 56
+ 53 --- 57
+ 53 --- 58
+ 53 --- 59
+ 53 --- 60
+ 53 --- 61
53 --- 62
- 53 --- 74
- 53 --- 75
- 54 --- 63
- 54 --- 76
- 54 --- 77
- 55 --- 64
- 55 --- 78
- 55 --- 79
- 56 --- 65
- 56 --- 80
- 56 --- 81
- 58 --- 59
- 58 --- 60
- 58 --- 61
- 58 --- 62
- 58 --- 63
- 58 --- 64
- 58 --- 65
- 58 --- 66
- 58 --- 67
- 58 --- 68
- 58 --- 69
- 58 --- 70
- 58 --- 71
- 58 --- 72
- 58 --- 73
- 58 --- 74
- 58 --- 75
- 58 --- 76
- 58 --- 77
- 58 --- 78
- 58 --- 79
- 58 --- 80
- 58 --- 81
+ 53 --- 63
+ 53 --- 64
+ 53 --- 65
+ 53 --- 66
+ 53 --- 67
+ 53 --- 68
+ 53 --- 69
+ 63 <--x 55
+ 63 <--x 62
+ 64 <--x 56
+ 64 <--x 62
+ 65 <--x 57
+ 65 <--x 62
+ 66 <--x 58
+ 66 <--x 62
+ 67 <--x 59
+ 67 <--x 62
+ 68 <--x 60
+ 68 <--x 62
+ 70 --- 71
+ 71 --- 72
+ 71 --- 73
+ 71 --- 74
+ 71 --- 75
+ 71 --- 76
+ 71 --- 77
+ 71 --- 78
+ 71 --- 79
+ 71 --- 80
+ 71 ---- 82
+ 71 --- 81
+ 72 --- 83
+ 72 x--> 92
+ 73 --- 84
+ 73 --- 93
+ 73 x--> 92
+ 74 --- 85
+ 74 --- 94
+ 74 x--> 92
+ 75 --- 86
+ 75 --- 95
+ 75 x--> 92
+ 76 --- 87
+ 76 --- 96
+ 76 x--> 92
+ 77 --- 88
+ 77 --- 97
+ 77 x--> 92
+ 78 --- 89
+ 78 --- 98
+ 78 x--> 92
+ 79 --- 90
+ 79 --- 99
+ 79 x--> 92
82 --- 83
- 83 --- 84
- 83 --- 85
- 83 --- 86
- 83 --- 87
- 83 --- 88
- 83 --- 89
- 83 --- 90
- 83 --- 91
- 83 --- 92
- 83 ---- 94
- 83 --- 93
- 84 --- 95
- 84 --- 105
- 84 --- 106
- 85 --- 96
- 85 --- 107
- 85 --- 108
- 86 --- 97
- 86 --- 109
- 86 --- 110
- 87 --- 98
- 87 --- 111
- 87 --- 112
- 88 --- 99
- 88 --- 113
- 88 --- 114
+ 82 --- 84
+ 82 --- 85
+ 82 --- 86
+ 82 --- 87
+ 82 --- 88
+ 82 --- 89
+ 82 --- 90
+ 82 --- 91
+ 82 --- 92
+ 82 --- 93
+ 82 --- 94
+ 82 --- 95
+ 82 --- 96
+ 82 --- 97
+ 82 --- 98
+ 82 --- 99
89 --- 100
- 89 --- 115
- 89 --- 116
- 90 --- 101
- 90 --- 117
- 90 --- 118
- 91 --- 102
- 91 --- 119
- 91 --- 120
- 94 --- 95
- 94 --- 96
- 94 --- 97
- 94 --- 98
- 94 --- 99
- 94 --- 100
- 94 --- 101
- 94 --- 102
- 94 --- 103
- 94 --- 104
- 94 --- 105
- 94 --- 106
- 94 --- 107
- 94 --- 108
- 94 --- 109
- 94 --- 110
- 94 --- 111
- 94 --- 112
- 94 --- 113
- 94 --- 114
- 94 --- 115
- 94 --- 116
- 94 --- 117
- 94 --- 118
- 94 --- 119
- 94 --- 120
- 101 --- 121
- 121 --- 122
- 121 --- 123
- 121 --- 124
- 121 --- 125
- 121 --- 126
- 121 ---- 128
- 121 --- 127
- 122 --- 129
- 122 --- 133
- 122 --- 134
- 123 --- 130
- 123 --- 135
- 123 --- 136
- 124 --- 131
- 124 --- 137
- 124 --- 138
- 125 --- 132
- 125 --- 139
- 125 --- 140
- 128 --- 129
- 128 --- 130
- 128 --- 131
- 128 --- 132
- 128 --- 133
- 128 --- 134
- 128 --- 135
- 128 --- 136
- 128 --- 137
- 128 --- 138
- 128 --- 139
- 128 --- 140
- 41 <--x 141
- 39 <--x 142
- 69 <--x 143
- 75 <--x 144
- 48 <--x 145
- 101 <--x 146
+ 93 <--x 84
+ 93 <--x 91
+ 94 <--x 85
+ 94 <--x 91
+ 95 <--x 86
+ 95 <--x 91
+ 96 <--x 87
+ 96 <--x 91
+ 97 <--x 88
+ 97 <--x 91
+ 98 <--x 89
+ 98 <--x 91
+ 99 <--x 90
+ 99 <--x 91
+ 100 --- 101
+ 100 --- 102
+ 100 --- 103
+ 100 --- 104
+ 100 --- 105
+ 100 ---- 107
+ 100 --- 106
+ 101 --- 108
+ 101 <--x 89
+ 102 --- 109
+ 102 --- 112
+ 102 <--x 89
+ 103 --- 110
+ 103 --- 113
+ 103 <--x 89
+ 104 --- 111
+ 104 --- 114
+ 104 <--x 89
+ 107 --- 108
+ 107 --- 109
+ 107 --- 110
+ 107 --- 111
+ 107 --- 112
+ 107 --- 113
+ 107 --- 114
+ 112 <--x 109
+ 112 <--x 85
+ 113 <--x 110
+ 113 <--x 85
+ 114 <--x 111
+ 114 <--x 85
+ 42 <--x 115
+ 69 <--x 117
+ 43 <--x 119
+ 89 <--x 120
```
diff --git a/rust/kcl-lib/tests/kcl_samples/french-press/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/french-press/artifact_commands.snap
index a2022223a..317d8876a 100644
--- a/rust/kcl-lib/tests/kcl_samples/french-press/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/french-press/artifact_commands.snap
@@ -239,20 +239,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -275,6 +282,33 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -295,6 +329,80 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -766,20 +874,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -806,20 +921,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -846,20 +968,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -886,20 +1015,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -926,20 +1062,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -966,20 +1109,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1006,20 +1156,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1042,6 +1199,33 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1062,6 +1246,362 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1269,6 +1809,33 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1467,20 +2034,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1503,6 +2077,80 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1574,20 +2222,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1610,6 +2265,80 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1681,20 +2410,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1717,6 +2453,80 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1961,20 +2771,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2001,20 +2818,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2037,6 +2861,33 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2057,6 +2908,127 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2317,20 +3289,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2357,20 +3336,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2397,20 +3383,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2433,6 +3426,174 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2713,6 +3874,33 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2733,6 +3921,33 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2897,45 +4112,7 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -1.27,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -2944,20 +4121,18 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -3031,45 +4206,7 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -1.27,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -3078,20 +4215,18 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -3165,45 +4300,7 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -1.27,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -3212,20 +4309,18 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -3295,6 +4390,33 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3362,6 +4484,315 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -1.27,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -1.27,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -1.27,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3526,45 +4957,7 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -1.27,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -3573,20 +4966,18 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -3656,6 +5047,33 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3723,6 +5141,127 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -1.27,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3895,6 +5434,33 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4179,20 +5745,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4219,20 +5792,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4259,20 +5839,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4295,6 +5882,174 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4664,20 +6419,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4704,20 +6466,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4744,20 +6513,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4784,20 +6560,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4824,20 +6607,27 @@ description: Artifact commands french-press.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4860,6 +6650,33 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4880,6 +6697,268 @@ description: Artifact commands french-press.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/french-press/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/french-press/artifact_graph_flowchart.snap.md
index 83e3c344d..7eccf8306 100644
--- a/rust/kcl-lib/tests/kcl_samples/french-press/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/french-press/artifact_graph_flowchart.snap.md
@@ -9,116 +9,116 @@ flowchart LR
7["Segment
[674, 681, 0]"]
8[Solid2d]
end
- subgraph path18 [Path]
- 18["Path
[971, 1015, 0]"]
- 19["Segment
[1021, 1040, 0]"]
- 20["Segment
[1046, 1080, 0]"]
- 21["Segment
[1086, 1137, 0]"]
- 22["Segment
[1143, 1194, 0]"]
- 23["Segment
[1200, 1251, 0]"]
- 24["Segment
[1257, 1315, 0]"]
- 25["Segment
[1321, 1370, 0]"]
- 26["Segment
[1376, 1416, 0]"]
- 27["Segment
[1422, 1441, 0]"]
- 28["Segment
[1447, 1500, 0]"]
- 29["Segment
[1506, 1555, 0]"]
- 30["Segment
[1561, 1631, 0]"]
- 31["Segment
[1637, 1688, 0]"]
- 32["Segment
[1694, 1764, 0]"]
- 33["Segment
[1770, 1821, 0]"]
- 34["Segment
[1827, 1883, 0]"]
- 35["Segment
[1889, 1896, 0]"]
- 36[Solid2d]
+ subgraph path15 [Path]
+ 15["Path
[971, 1015, 0]"]
+ 16["Segment
[1021, 1040, 0]"]
+ 17["Segment
[1046, 1080, 0]"]
+ 18["Segment
[1086, 1137, 0]"]
+ 19["Segment
[1143, 1194, 0]"]
+ 20["Segment
[1200, 1251, 0]"]
+ 21["Segment
[1257, 1315, 0]"]
+ 22["Segment
[1321, 1370, 0]"]
+ 23["Segment
[1376, 1416, 0]"]
+ 24["Segment
[1422, 1441, 0]"]
+ 25["Segment
[1447, 1500, 0]"]
+ 26["Segment
[1506, 1555, 0]"]
+ 27["Segment
[1561, 1631, 0]"]
+ 28["Segment
[1637, 1688, 0]"]
+ 29["Segment
[1694, 1764, 0]"]
+ 30["Segment
[1770, 1821, 0]"]
+ 31["Segment
[1827, 1883, 0]"]
+ 32["Segment
[1889, 1896, 0]"]
+ 33[Solid2d]
end
- subgraph path89 [Path]
- 89["Path
[2163, 2222, 0]"]
- 90["Segment
[2163, 2222, 0]"]
- 91[Solid2d]
+ subgraph path69 [Path]
+ 69["Path
[2163, 2222, 0]"]
+ 70["Segment
[2163, 2222, 0]"]
+ 71[Solid2d]
end
- subgraph path98 [Path]
- 98["Path
[2328, 2358, 0]"]
- 99["Segment
[2364, 2383, 0]"]
- 100["Segment
[2389, 2439, 0]"]
- 101["Segment
[2445, 2501, 0]"]
- 102["Segment
[2507, 2514, 0]"]
- 103[Solid2d]
+ subgraph path76 [Path]
+ 76["Path
[2328, 2358, 0]"]
+ 77["Segment
[2364, 2383, 0]"]
+ 78["Segment
[2389, 2439, 0]"]
+ 79["Segment
[2445, 2501, 0]"]
+ 80["Segment
[2507, 2514, 0]"]
+ 81[Solid2d]
end
- subgraph path117 [Path]
- 117["Path
[2752, 2783, 0]"]
- 118["Segment
[2789, 2834, 0]"]
- 119["Segment
[2840, 2917, 0]"]
- 120["Segment
[2923, 2962, 0]"]
- 121["Segment
[2968, 3014, 0]"]
- 122["Segment
[3020, 3045, 0]"]
- 123["Segment
[3051, 3107, 0]"]
- 124["Segment
[3113, 3120, 0]"]
- 125[Solid2d]
+ subgraph path91 [Path]
+ 91["Path
[2752, 2783, 0]"]
+ 92["Segment
[2789, 2834, 0]"]
+ 93["Segment
[2840, 2917, 0]"]
+ 94["Segment
[2923, 2962, 0]"]
+ 95["Segment
[2968, 3014, 0]"]
+ 96["Segment
[3020, 3045, 0]"]
+ 97["Segment
[3051, 3107, 0]"]
+ 98["Segment
[3113, 3120, 0]"]
+ 99[Solid2d]
end
- subgraph path140 [Path]
- 140["Path
[3200, 3227, 0]"]
- 141["Segment
[3233, 3253, 0]"]
- 142["Segment
[3259, 3302, 0]"]
- 143["Segment
[3308, 3326, 0]"]
- 144["Segment
[3332, 3352, 0]"]
- 145["Segment
[3358, 3378, 0]"]
- 146["Segment
[3384, 3424, 0]"]
- 147["Segment
[3430, 3486, 0]"]
- 148["Segment
[3492, 3499, 0]"]
- 149[Solid2d]
+ subgraph path108 [Path]
+ 108["Path
[3200, 3227, 0]"]
+ 109["Segment
[3233, 3253, 0]"]
+ 110["Segment
[3259, 3302, 0]"]
+ 111["Segment
[3308, 3326, 0]"]
+ 112["Segment
[3332, 3352, 0]"]
+ 113["Segment
[3358, 3378, 0]"]
+ 114["Segment
[3384, 3424, 0]"]
+ 115["Segment
[3430, 3486, 0]"]
+ 116["Segment
[3492, 3499, 0]"]
+ 117[Solid2d]
+ end
+ subgraph path127 [Path]
+ 127["Path
[3603, 3662, 0]"]
+ 128["Segment
[3603, 3662, 0]"]
+ 129[Solid2d]
+ end
+ subgraph path130 [Path]
+ 130["Path
[3673, 3710, 0]"]
+ 131["Segment
[3673, 3710, 0]"]
+ 132[Solid2d]
+ end
+ subgraph path137 [Path]
+ 137["Path
[3857, 3895, 0]"]
+ 138["Segment
[3857, 3895, 0]"]
+ 139[Solid2d]
+ end
+ subgraph path149 [Path]
+ 149["Path
[4173, 4211, 0]"]
+ 150["Segment
[4173, 4211, 0]"]
+ 151[Solid2d]
+ end
+ subgraph path158 [Path]
+ 158["Path
[4463, 4515, 0]"]
+ 159["Segment
[4463, 4515, 0]"]
+ 160[Solid2d]
end
subgraph path166 [Path]
- 166["Path
[3603, 3662, 0]"]
- 167["Segment
[3603, 3662, 0]"]
- 168[Solid2d]
+ 166["Path
[4760, 4804, 0]"]
+ 167["Segment
[4810, 4850, 0]"]
+ 168["Segment
[4856, 4875, 0]"]
+ 169["Segment
[4881, 4900, 0]"]
+ 170["Segment
[4906, 4925, 0]"]
+ 171["Segment
[4931, 4956, 0]"]
+ 172["Segment
[4962, 5070, 0]"]
+ 173["Segment
[5076, 5132, 0]"]
+ 174["Segment
[5138, 5145, 0]"]
+ 175[Solid2d]
end
- subgraph path169 [Path]
- 169["Path
[3673, 3710, 0]"]
- 170["Segment
[3673, 3710, 0]"]
- 171[Solid2d]
- end
- subgraph path178 [Path]
- 178["Path
[3857, 3895, 0]"]
- 179["Segment
[3857, 3895, 0]"]
- 180[Solid2d]
- end
- subgraph path192 [Path]
- 192["Path
[4173, 4211, 0]"]
- 193["Segment
[4173, 4211, 0]"]
- 194[Solid2d]
- end
- subgraph path203 [Path]
- 203["Path
[4463, 4515, 0]"]
- 204["Segment
[4463, 4515, 0]"]
- 205[Solid2d]
- end
- subgraph path213 [Path]
- 213["Path
[4760, 4804, 0]"]
- 214["Segment
[4810, 4850, 0]"]
- 215["Segment
[4856, 4875, 0]"]
- 216["Segment
[4881, 4900, 0]"]
- 217["Segment
[4906, 4925, 0]"]
- 218["Segment
[4931, 4956, 0]"]
- 219["Segment
[4962, 5070, 0]"]
- 220["Segment
[5076, 5132, 0]"]
- 221["Segment
[5138, 5145, 0]"]
- 222[Solid2d]
- end
- subgraph path239 [Path]
- 239["Path
[5275, 5304, 0]"]
- 240["Segment
[5310, 5331, 0]"]
- 241["Segment
[5337, 5377, 0]"]
- 242["Segment
[5383, 5423, 0]"]
- 243["Segment
[5429, 5470, 0]"]
- 244["Segment
[5476, 5498, 0]"]
- 245["Segment
[5504, 5525, 0]"]
- 246["Segment
[5531, 5556, 0]"]
- 247["Segment
[5562, 5602, 0]"]
- 248["Segment
[5608, 5649, 0]"]
- 249["Segment
[5655, 5696, 0]"]
- 250["Segment
[5702, 5723, 0]"]
- 251["Segment
[5729, 5785, 0]"]
- 252["Segment
[5791, 5798, 0]"]
- 253[Solid2d]
+ subgraph path185 [Path]
+ 185["Path
[5275, 5304, 0]"]
+ 186["Segment
[5310, 5331, 0]"]
+ 187["Segment
[5337, 5377, 0]"]
+ 188["Segment
[5383, 5423, 0]"]
+ 189["Segment
[5429, 5470, 0]"]
+ 190["Segment
[5476, 5498, 0]"]
+ 191["Segment
[5504, 5525, 0]"]
+ 192["Segment
[5531, 5556, 0]"]
+ 193["Segment
[5562, 5602, 0]"]
+ 194["Segment
[5608, 5649, 0]"]
+ 195["Segment
[5655, 5696, 0]"]
+ 196["Segment
[5702, 5723, 0]"]
+ 197["Segment
[5729, 5785, 0]"]
+ 198["Segment
[5791, 5798, 0]"]
+ 199[Solid2d]
end
1["Plane
[242, 259, 0]"]
9["Sweep Revolve
[687, 717, 0]"]
@@ -126,11 +126,11 @@ flowchart LR
11[Wall]
12[Wall]
13[Wall]
- 14["SweepEdge Adjacent"]
- 15["SweepEdge Adjacent"]
- 16["SweepEdge Adjacent"]
- 17["Plane
[942, 965, 0]"]
- 37["Sweep Extrusion
[1902, 1924, 0]"]
+ 14["Plane
[942, 965, 0]"]
+ 34["Sweep Extrusion
[1902, 1924, 0]"]
+ 35[Wall]
+ 36[Wall]
+ 37[Wall]
38[Wall]
39[Wall]
40[Wall]
@@ -144,186 +144,119 @@ flowchart LR
48[Wall]
49[Wall]
50[Wall]
- 51[Wall]
- 52[Wall]
- 53[Wall]
- 54["Cap Start"]
- 55["Cap End"]
+ 51["Cap Start"]
+ 52["Cap End"]
+ 53["SweepEdge Opposite"]
+ 54["SweepEdge Opposite"]
+ 55["SweepEdge Opposite"]
56["SweepEdge Opposite"]
- 57["SweepEdge Adjacent"]
+ 57["SweepEdge Opposite"]
58["SweepEdge Opposite"]
- 59["SweepEdge Adjacent"]
+ 59["SweepEdge Opposite"]
60["SweepEdge Opposite"]
- 61["SweepEdge Adjacent"]
+ 61["SweepEdge Opposite"]
62["SweepEdge Opposite"]
- 63["SweepEdge Adjacent"]
+ 63["SweepEdge Opposite"]
64["SweepEdge Opposite"]
- 65["SweepEdge Adjacent"]
+ 65["SweepEdge Opposite"]
66["SweepEdge Opposite"]
- 67["SweepEdge Adjacent"]
- 68["SweepEdge Opposite"]
- 69["SweepEdge Adjacent"]
- 70["SweepEdge Opposite"]
- 71["SweepEdge Adjacent"]
- 72["SweepEdge Opposite"]
- 73["SweepEdge Adjacent"]
- 74["SweepEdge Opposite"]
- 75["SweepEdge Adjacent"]
- 76["SweepEdge Opposite"]
- 77["SweepEdge Adjacent"]
- 78["SweepEdge Opposite"]
- 79["SweepEdge Adjacent"]
- 80["SweepEdge Opposite"]
- 81["SweepEdge Adjacent"]
- 82["SweepEdge Opposite"]
- 83["SweepEdge Adjacent"]
- 84["SweepEdge Opposite"]
- 85["SweepEdge Adjacent"]
+ 67["SweepEdge Opposite"]
+ 68["Plane
[2129, 2156, 0]"]
+ 72["Sweep Extrusion
[2237, 2271, 0]"]
+ 73[Wall]
+ 74["Cap Start"]
+ 75["Cap End"]
+ 82["Sweep Extrusion
[2663, 2698, 0]"]
+ 83[Wall]
+ 84[Wall]
+ 85[Wall]
86["SweepEdge Opposite"]
- 87["SweepEdge Adjacent"]
- 88["Plane
[2129, 2156, 0]"]
- 92["Sweep Extrusion
[2237, 2271, 0]"]
- 93[Wall]
- 94["Cap Start"]
- 95["Cap End"]
- 96["SweepEdge Opposite"]
- 97["SweepEdge Adjacent"]
- 104["Sweep Extrusion
[2663, 2698, 0]"]
+ 87["SweepEdge Opposite"]
+ 88["Sweep Extrusion
[2663, 2698, 0]"]
+ 89["Sweep Extrusion
[2663, 2698, 0]"]
+ 90["Plane
[2729, 2746, 0]"]
+ 100["Sweep Revolve
[3126, 3143, 0]"]
+ 101[Wall]
+ 102[Wall]
+ 103[Wall]
+ 104[Wall]
105[Wall]
106[Wall]
- 107[Wall]
- 108["SweepEdge Opposite"]
- 109["SweepEdge Adjacent"]
- 110["SweepEdge Opposite"]
- 111["SweepEdge Adjacent"]
- 112["SweepEdge Opposite"]
- 113["SweepEdge Adjacent"]
- 114["Sweep Extrusion
[2663, 2698, 0]"]
- 115["Sweep Extrusion
[2663, 2698, 0]"]
- 116["Plane
[2729, 2746, 0]"]
- 126["Sweep Revolve
[3126, 3143, 0]"]
- 127[Wall]
- 128[Wall]
- 129[Wall]
- 130[Wall]
- 131[Wall]
- 132[Wall]
- 133["SweepEdge Adjacent"]
- 134["SweepEdge Adjacent"]
- 135["SweepEdge Adjacent"]
- 136["SweepEdge Adjacent"]
- 137["SweepEdge Adjacent"]
- 138["SweepEdge Adjacent"]
- 139["Plane
[3177, 3194, 0]"]
- 150["Sweep Revolve
[3505, 3522, 0]"]
- 151[Wall]
- 152[Wall]
+ 107["Plane
[3177, 3194, 0]"]
+ 118["Sweep Revolve
[3505, 3522, 0]"]
+ 119[Wall]
+ 120[Wall]
+ 121[Wall]
+ 122[Wall]
+ 123[Wall]
+ 124[Wall]
+ 125[Wall]
+ 126["Plane
[3566, 3596, 0]"]
+ 133["Sweep Extrusion
[3729, 3763, 0]"]
+ 134[Wall]
+ 135["Cap Start"]
+ 136["Cap End"]
+ 140["Sweep Extrusion
[4044, 4079, 0]"]
+ 141[Wall]
+ 142["Sweep Extrusion
[4044, 4079, 0]"]
+ 143["Sweep Extrusion
[4044, 4079, 0]"]
+ 144["Sweep Extrusion
[4044, 4079, 0]"]
+ 145["Sweep Extrusion
[4044, 4079, 0]"]
+ 146["Sweep Extrusion
[4044, 4079, 0]"]
+ 147["Sweep Extrusion
[4044, 4079, 0]"]
+ 148["Sweep Extrusion
[4044, 4079, 0]"]
+ 152["Sweep Extrusion
[4360, 4395, 0]"]
153[Wall]
- 154[Wall]
- 155[Wall]
- 156[Wall]
- 157[Wall]
- 158["SweepEdge Adjacent"]
- 159["SweepEdge Adjacent"]
- 160["SweepEdge Adjacent"]
- 161["SweepEdge Adjacent"]
- 162["SweepEdge Adjacent"]
- 163["SweepEdge Adjacent"]
- 164["SweepEdge Adjacent"]
- 165["Plane
[3566, 3596, 0]"]
- 172["Sweep Extrusion
[3729, 3763, 0]"]
- 173[Wall]
- 174["Cap Start"]
- 175["Cap End"]
- 176["SweepEdge Opposite"]
- 177["SweepEdge Adjacent"]
- 181["Sweep Extrusion
[4044, 4079, 0]"]
+ 154["Sweep Extrusion
[4360, 4395, 0]"]
+ 155["Sweep Extrusion
[4360, 4395, 0]"]
+ 156["Sweep Extrusion
[4360, 4395, 0]"]
+ 157["Plane
[4440, 4457, 0]"]
+ 161["Sweep Extrusion
[4611, 4652, 0]"]
+ 162[Wall]
+ 163["Cap Start"]
+ 164["Cap End"]
+ 165["Plane
[4737, 4754, 0]"]
+ 176["Sweep Revolve
[5151, 5168, 0]"]
+ 177[Wall]
+ 178[Wall]
+ 179[Wall]
+ 180[Wall]
+ 181[Wall]
182[Wall]
- 183["SweepEdge Opposite"]
- 184["SweepEdge Adjacent"]
- 185["Sweep Extrusion
[4044, 4079, 0]"]
- 186["Sweep Extrusion
[4044, 4079, 0]"]
- 187["Sweep Extrusion
[4044, 4079, 0]"]
- 188["Sweep Extrusion
[4044, 4079, 0]"]
- 189["Sweep Extrusion
[4044, 4079, 0]"]
- 190["Sweep Extrusion
[4044, 4079, 0]"]
- 191["Sweep Extrusion
[4044, 4079, 0]"]
- 195["Sweep Extrusion
[4360, 4395, 0]"]
- 196[Wall]
- 197["SweepEdge Opposite"]
- 198["SweepEdge Adjacent"]
- 199["Sweep Extrusion
[4360, 4395, 0]"]
- 200["Sweep Extrusion
[4360, 4395, 0]"]
- 201["Sweep Extrusion
[4360, 4395, 0]"]
- 202["Plane
[4440, 4457, 0]"]
- 206["Sweep Extrusion
[4611, 4652, 0]"]
+ 183[Wall]
+ 184["Plane
[5223, 5268, 0]"]
+ 200["Sweep Extrusion
[5812, 5857, 0]"]
+ 201[Wall]
+ 202[Wall]
+ 203[Wall]
+ 204[Wall]
+ 205[Wall]
+ 206[Wall]
207[Wall]
- 208["Cap Start"]
- 209["Cap End"]
- 210["SweepEdge Opposite"]
- 211["SweepEdge Adjacent"]
- 212["Plane
[4737, 4754, 0]"]
- 223["Sweep Revolve
[5151, 5168, 0]"]
- 224[Wall]
- 225[Wall]
- 226[Wall]
- 227[Wall]
- 228[Wall]
- 229[Wall]
- 230[Wall]
- 231["SweepEdge Adjacent"]
- 232["SweepEdge Adjacent"]
- 233["SweepEdge Adjacent"]
- 234["SweepEdge Adjacent"]
- 235["SweepEdge Adjacent"]
- 236["SweepEdge Adjacent"]
- 237["SweepEdge Adjacent"]
- 238["Plane
[5223, 5268, 0]"]
- 254["Sweep Extrusion
[5812, 5857, 0]"]
- 255[Wall]
- 256[Wall]
- 257[Wall]
- 258[Wall]
- 259[Wall]
- 260[Wall]
- 261[Wall]
- 262[Wall]
- 263[Wall]
- 264[Wall]
- 265[Wall]
- 266[Wall]
- 267["Cap Start"]
- 268["Cap End"]
- 269["SweepEdge Opposite"]
- 270["SweepEdge Adjacent"]
- 271["SweepEdge Opposite"]
- 272["SweepEdge Adjacent"]
- 273["SweepEdge Opposite"]
- 274["SweepEdge Adjacent"]
- 275["SweepEdge Opposite"]
- 276["SweepEdge Adjacent"]
- 277["SweepEdge Opposite"]
- 278["SweepEdge Adjacent"]
- 279["SweepEdge Opposite"]
- 280["SweepEdge Adjacent"]
- 281["SweepEdge Opposite"]
- 282["SweepEdge Adjacent"]
- 283["SweepEdge Opposite"]
- 284["SweepEdge Adjacent"]
- 285["SweepEdge Opposite"]
- 286["SweepEdge Adjacent"]
- 287["SweepEdge Opposite"]
- 288["SweepEdge Adjacent"]
- 289["SweepEdge Opposite"]
- 290["SweepEdge Adjacent"]
- 291["SweepEdge Opposite"]
- 292["SweepEdge Adjacent"]
- 293["StartSketchOnPlane
[2115, 2157, 0]"]
- 294["StartSketchOnFace
[2285, 2322, 0]"]
- 295["StartSketchOnPlane
[3552, 3597, 0]"]
- 296["StartSketchOnFace
[3814, 3851, 0]"]
- 297["StartSketchOnFace
[4130, 4167, 0]"]
- 298["StartSketchOnPlane
[5209, 5269, 0]"]
+ 208[Wall]
+ 209[Wall]
+ 210[Wall]
+ 211[Wall]
+ 212[Wall]
+ 213["Cap Start"]
+ 214["Cap End"]
+ 215["SweepEdge Opposite"]
+ 216["SweepEdge Opposite"]
+ 217["SweepEdge Opposite"]
+ 218["SweepEdge Opposite"]
+ 219["SweepEdge Opposite"]
+ 220["SweepEdge Opposite"]
+ 221["SweepEdge Opposite"]
+ 222["SweepEdge Opposite"]
+ 223["SweepEdge Opposite"]
+ 224["SweepEdge Opposite"]
+ 225["SweepEdge Opposite"]
+ 226["StartSketchOnPlane
[2115, 2157, 0]"]
+ 227["StartSketchOnFace
[2285, 2322, 0]"]
+ 228["StartSketchOnPlane
[3552, 3597, 0]"]
+ 229["StartSketchOnFace
[3814, 3851, 0]"]
+ 230["StartSketchOnFace
[4130, 4167, 0]"]
+ 231["StartSketchOnPlane
[5209, 5269, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -333,452 +266,405 @@ flowchart LR
2 ---- 9
2 --- 8
3 --- 10
- 3 x--> 14
4 --- 11
- 4 --- 14
5 --- 12
- 5 --- 15
6 --- 13
- 6 --- 16
9 --- 10
9 --- 11
9 --- 12
9 --- 13
- 9 <--x 3
- 9 --- 14
9 <--x 4
9 <--x 5
- 9 --- 15
9 <--x 6
- 9 --- 16
- 17 --- 18
- 18 --- 19
- 18 --- 20
- 18 --- 21
- 18 --- 22
- 18 --- 23
- 18 --- 24
- 18 --- 25
- 18 --- 26
- 18 --- 27
- 18 --- 28
- 18 --- 29
- 18 --- 30
- 18 --- 31
- 18 --- 32
- 18 --- 33
- 18 --- 34
- 18 --- 35
- 18 ---- 37
- 18 --- 36
- 19 --- 53
- 19 --- 86
- 19 --- 87
- 20 --- 52
- 20 --- 84
- 20 --- 85
- 21 --- 51
- 21 --- 82
- 21 --- 83
- 22 --- 50
- 22 --- 80
- 22 --- 81
- 23 --- 49
- 23 --- 78
- 23 --- 79
- 24 --- 48
- 24 --- 76
- 24 --- 77
- 25 --- 47
- 25 --- 74
- 25 --- 75
- 26 --- 46
- 26 --- 72
- 26 --- 73
- 27 --- 45
- 27 --- 70
- 27 --- 71
- 28 --- 44
- 28 --- 68
- 28 --- 69
- 29 --- 43
- 29 --- 66
- 29 --- 67
- 30 --- 42
- 30 --- 64
- 30 --- 65
- 31 --- 41
- 31 --- 62
- 31 --- 63
- 32 --- 40
- 32 --- 60
- 32 --- 61
- 33 --- 39
- 33 --- 58
- 33 --- 59
+ 14 --- 15
+ 15 --- 16
+ 15 --- 17
+ 15 --- 18
+ 15 --- 19
+ 15 --- 20
+ 15 --- 21
+ 15 --- 22
+ 15 --- 23
+ 15 --- 24
+ 15 --- 25
+ 15 --- 26
+ 15 --- 27
+ 15 --- 28
+ 15 --- 29
+ 15 --- 30
+ 15 --- 31
+ 15 --- 32
+ 15 ---- 34
+ 15 --- 33
+ 16 --- 50
+ 16 --- 67
+ 16 x--> 51
+ 17 --- 49
+ 17 --- 66
+ 17 x--> 51
+ 18 --- 48
+ 18 --- 65
+ 18 x--> 51
+ 19 --- 47
+ 19 --- 64
+ 19 x--> 51
+ 20 --- 46
+ 20 --- 63
+ 20 x--> 51
+ 21 --- 45
+ 21 --- 62
+ 21 x--> 51
+ 22 --- 44
+ 22 --- 61
+ 22 x--> 51
+ 23 --- 43
+ 23 --- 60
+ 23 x--> 51
+ 24 --- 42
+ 24 --- 59
+ 24 x--> 51
+ 25 --- 41
+ 25 --- 58
+ 25 x--> 51
+ 26 --- 40
+ 26 --- 57
+ 26 x--> 51
+ 27 --- 39
+ 27 --- 56
+ 27 x--> 51
+ 28 --- 38
+ 28 --- 55
+ 28 x--> 51
+ 29 --- 37
+ 29 --- 54
+ 29 x--> 51
+ 30 --- 36
+ 30 --- 53
+ 30 x--> 51
+ 31 --- 35
+ 31 x--> 51
+ 34 --- 35
+ 34 --- 36
+ 34 --- 37
34 --- 38
+ 34 --- 39
+ 34 --- 40
+ 34 --- 41
+ 34 --- 42
+ 34 --- 43
+ 34 --- 44
+ 34 --- 45
+ 34 --- 46
+ 34 --- 47
+ 34 --- 48
+ 34 --- 49
+ 34 --- 50
+ 34 --- 51
+ 34 --- 52
+ 34 --- 53
+ 34 --- 54
+ 34 --- 55
34 --- 56
34 --- 57
- 37 --- 38
- 37 --- 39
- 37 --- 40
- 37 --- 41
- 37 --- 42
- 37 --- 43
- 37 --- 44
- 37 --- 45
- 37 --- 46
- 37 --- 47
- 37 --- 48
- 37 --- 49
- 37 --- 50
- 37 --- 51
- 37 --- 52
- 37 --- 53
- 37 --- 54
- 37 --- 55
- 37 --- 56
- 37 --- 57
- 37 --- 58
- 37 --- 59
- 37 --- 60
- 37 --- 61
- 37 --- 62
- 37 --- 63
- 37 --- 64
- 37 --- 65
- 37 --- 66
- 37 --- 67
- 37 --- 68
- 37 --- 69
- 37 --- 70
- 37 --- 71
- 37 --- 72
- 37 --- 73
- 37 --- 74
- 37 --- 75
- 37 --- 76
- 37 --- 77
- 37 --- 78
- 37 --- 79
- 37 --- 80
- 37 --- 81
- 37 --- 82
- 37 --- 83
- 37 --- 84
- 37 --- 85
- 37 --- 86
- 37 --- 87
- 88 --- 89
- 89 --- 90
- 89 ---- 92
- 89 --- 91
- 90 --- 93
- 90 --- 96
- 90 --- 97
- 92 --- 93
- 92 --- 94
- 92 --- 95
- 92 --- 96
- 92 --- 97
- 95 --- 98
- 98 --- 99
- 98 --- 100
- 98 --- 101
- 98 --- 102
- 98 ---- 104
- 98 --- 103
- 99 --- 107
- 99 --- 112
- 99 --- 113
+ 34 --- 58
+ 34 --- 59
+ 34 --- 60
+ 34 --- 61
+ 34 --- 62
+ 34 --- 63
+ 34 --- 64
+ 34 --- 65
+ 34 --- 66
+ 34 --- 67
+ 53 <--x 36
+ 53 <--x 52
+ 54 <--x 37
+ 54 <--x 52
+ 55 <--x 38
+ 55 <--x 52
+ 56 <--x 39
+ 56 <--x 52
+ 57 <--x 40
+ 57 <--x 52
+ 58 <--x 41
+ 58 <--x 52
+ 59 <--x 42
+ 59 <--x 52
+ 60 <--x 43
+ 60 <--x 52
+ 61 <--x 44
+ 61 <--x 52
+ 62 <--x 45
+ 62 <--x 52
+ 63 <--x 46
+ 63 <--x 52
+ 64 <--x 47
+ 64 <--x 52
+ 65 <--x 48
+ 65 <--x 52
+ 66 <--x 49
+ 66 <--x 52
+ 67 <--x 50
+ 67 <--x 52
+ 68 --- 69
+ 69 --- 70
+ 69 ---- 72
+ 69 --- 71
+ 70 --- 73
+ 70 x--> 74
+ 72 --- 73
+ 72 --- 74
+ 72 --- 75
+ 75 --- 76
+ 76 --- 77
+ 76 --- 78
+ 76 --- 79
+ 76 --- 80
+ 76 ---- 82
+ 76 --- 81
+ 77 --- 85
+ 77 --- 87
+ 77 <--x 75
+ 78 --- 84
+ 78 --- 86
+ 78 <--x 75
+ 79 --- 83
+ 79 <--x 75
+ 82 --- 83
+ 82 --- 84
+ 82 --- 85
+ 82 --- 86
+ 82 --- 87
+ 86 <--x 84
+ 86 <--x 74
+ 87 <--x 85
+ 87 <--x 74
+ 90 --- 91
+ 91 --- 92
+ 91 --- 93
+ 91 --- 94
+ 91 --- 95
+ 91 --- 96
+ 91 --- 97
+ 91 --- 98
+ 91 ---- 100
+ 91 --- 99
+ 92 --- 101
+ 93 --- 102
+ 94 --- 103
+ 95 --- 104
+ 96 --- 105
+ 97 --- 106
+ 100 --- 101
+ 100 --- 102
+ 100 --- 103
+ 100 --- 104
+ 100 --- 105
100 --- 106
- 100 --- 110
- 100 --- 111
- 101 --- 105
- 101 --- 108
- 101 --- 109
- 104 --- 105
- 104 --- 106
- 104 --- 107
- 104 --- 108
- 104 --- 109
- 104 --- 110
- 104 --- 111
- 104 --- 112
- 104 --- 113
- 116 --- 117
- 117 --- 118
- 117 --- 119
- 117 --- 120
- 117 --- 121
- 117 --- 122
- 117 --- 123
- 117 --- 124
- 117 ---- 126
- 117 --- 125
- 118 --- 127
- 118 --- 133
- 119 --- 128
- 119 --- 134
- 120 --- 129
- 120 --- 135
- 121 --- 130
- 121 --- 136
- 122 --- 131
- 122 --- 137
- 123 --- 132
- 123 --- 138
+ 100 <--x 93
+ 100 <--x 94
+ 100 <--x 95
+ 100 <--x 96
+ 100 <--x 97
+ 107 --- 108
+ 108 --- 109
+ 108 --- 110
+ 108 --- 111
+ 108 --- 112
+ 108 --- 113
+ 108 --- 114
+ 108 --- 115
+ 108 --- 116
+ 108 ---- 118
+ 108 --- 117
+ 109 --- 119
+ 110 --- 120
+ 111 --- 121
+ 112 --- 122
+ 113 --- 123
+ 114 --- 124
+ 115 --- 125
+ 118 --- 119
+ 118 --- 120
+ 118 --- 121
+ 118 --- 122
+ 118 --- 123
+ 118 --- 124
+ 118 --- 125
+ 118 <--x 110
+ 118 <--x 111
+ 118 <--x 112
+ 118 <--x 113
+ 118 <--x 114
+ 118 <--x 115
126 --- 127
- 126 --- 128
- 126 --- 129
126 --- 130
- 126 --- 131
- 126 --- 132
- 126 <--x 118
- 126 --- 133
- 126 <--x 119
- 126 --- 134
- 126 <--x 120
- 126 --- 135
- 126 <--x 121
- 126 --- 136
- 126 <--x 122
- 126 --- 137
- 126 <--x 123
- 126 --- 138
- 139 --- 140
+ 127 --- 128
+ 127 ---- 133
+ 127 --- 129
+ 128 --- 134
+ 128 x--> 135
+ 130 --- 131
+ 130 --- 132
+ 133 --- 134
+ 133 --- 135
+ 133 --- 136
+ 136 --- 137
+ 136 --- 149
+ 137 --- 138
+ 137 ---- 140
+ 137 --- 139
+ 138 --- 141
+ 138 <--x 136
140 --- 141
- 140 --- 142
- 140 --- 143
- 140 --- 144
- 140 --- 145
- 140 --- 146
- 140 --- 147
- 140 --- 148
- 140 ---- 150
- 140 --- 149
- 141 --- 151
- 141 --- 158
- 142 --- 152
- 142 --- 159
- 143 --- 153
- 143 --- 160
- 144 --- 154
- 144 --- 161
- 145 --- 155
- 145 --- 162
- 146 --- 156
- 146 --- 163
- 147 --- 157
- 147 --- 164
- 150 --- 151
- 150 --- 152
+ 149 --- 150
+ 149 ---- 152
+ 149 --- 151
150 --- 153
- 150 --- 154
- 150 --- 155
- 150 --- 156
- 150 --- 157
- 150 <--x 141
- 150 --- 158
- 150 <--x 142
- 150 --- 159
- 150 <--x 143
- 150 --- 160
- 150 <--x 144
- 150 --- 161
- 150 <--x 145
- 150 --- 162
- 150 <--x 146
- 150 --- 163
- 150 <--x 147
- 150 --- 164
+ 150 <--x 136
+ 152 --- 153
+ 157 --- 158
+ 158 --- 159
+ 158 ---- 161
+ 158 --- 160
+ 159 --- 162
+ 159 x--> 163
+ 161 --- 162
+ 161 --- 163
+ 161 --- 164
165 --- 166
- 165 --- 169
166 --- 167
- 166 ---- 172
166 --- 168
- 167 --- 173
- 167 --- 176
+ 166 --- 169
+ 166 --- 170
+ 166 --- 171
+ 166 --- 172
+ 166 --- 173
+ 166 --- 174
+ 166 ---- 176
+ 166 --- 175
167 --- 177
- 169 --- 170
- 169 --- 171
- 172 --- 173
- 172 --- 174
- 172 --- 175
- 172 --- 176
- 172 --- 177
- 175 --- 178
- 175 --- 192
- 178 --- 179
- 178 ---- 181
- 178 --- 180
- 179 --- 182
- 179 --- 183
- 179 --- 184
- 181 --- 182
- 181 --- 183
- 181 --- 184
- 192 --- 193
- 192 ---- 195
- 192 --- 194
- 193 --- 196
- 193 --- 197
- 193 --- 198
- 195 --- 196
- 195 --- 197
- 195 --- 198
- 202 --- 203
- 203 --- 204
- 203 ---- 206
- 203 --- 205
- 204 --- 207
- 204 --- 210
- 204 --- 211
- 206 --- 207
- 206 --- 208
- 206 --- 209
- 206 --- 210
- 206 --- 211
- 212 --- 213
- 213 --- 214
- 213 --- 215
- 213 --- 216
- 213 --- 217
- 213 --- 218
- 213 --- 219
- 213 --- 220
- 213 --- 221
- 213 ---- 223
- 213 --- 222
- 214 --- 224
- 214 --- 231
- 215 --- 225
- 215 --- 232
- 216 --- 226
- 216 --- 233
- 217 --- 227
- 217 --- 234
- 218 --- 228
- 218 --- 235
- 219 --- 229
- 219 --- 236
- 220 --- 230
- 220 --- 237
- 223 --- 224
- 223 --- 225
- 223 --- 226
- 223 --- 227
- 223 --- 228
- 223 --- 229
- 223 --- 230
- 223 <--x 214
- 223 --- 231
- 223 <--x 215
- 223 --- 232
- 223 <--x 216
- 223 --- 233
- 223 <--x 217
- 223 --- 234
- 223 <--x 218
- 223 --- 235
- 223 <--x 219
- 223 --- 236
- 223 <--x 220
- 223 --- 237
- 238 --- 239
- 239 --- 240
- 239 --- 241
- 239 --- 242
- 239 --- 243
- 239 --- 244
- 239 --- 245
- 239 --- 246
- 239 --- 247
- 239 --- 248
- 239 --- 249
- 239 --- 250
- 239 --- 251
- 239 --- 252
- 239 ---- 254
- 239 --- 253
- 240 --- 266
- 240 --- 291
- 240 --- 292
- 241 --- 265
- 241 --- 289
- 241 --- 290
- 242 --- 264
- 242 --- 287
- 242 --- 288
- 243 --- 263
- 243 --- 285
- 243 --- 286
- 244 --- 262
- 244 --- 283
- 244 --- 284
- 245 --- 261
- 245 --- 281
- 245 --- 282
- 246 --- 260
- 246 --- 279
- 246 --- 280
- 247 --- 259
- 247 --- 277
- 247 --- 278
- 248 --- 258
- 248 --- 275
- 248 --- 276
- 249 --- 257
- 249 --- 273
- 249 --- 274
- 250 --- 256
- 250 --- 271
- 250 --- 272
- 251 --- 255
- 251 --- 269
- 251 --- 270
- 254 --- 255
- 254 --- 256
- 254 --- 257
- 254 --- 258
- 254 --- 259
- 254 --- 260
- 254 --- 261
- 254 --- 262
- 254 --- 263
- 254 --- 264
- 254 --- 265
- 254 --- 266
- 254 --- 267
- 254 --- 268
- 254 --- 269
- 254 --- 270
- 254 --- 271
- 254 --- 272
- 254 --- 273
- 254 --- 274
- 254 --- 275
- 254 --- 276
- 254 --- 277
- 254 --- 278
- 254 --- 279
- 254 --- 280
- 254 --- 281
- 254 --- 282
- 254 --- 283
- 254 --- 284
- 254 --- 285
- 254 --- 286
- 254 --- 287
- 254 --- 288
- 254 --- 289
- 254 --- 290
- 254 --- 291
- 254 --- 292
- 88 <--x 293
- 95 <--x 294
- 165 <--x 295
- 175 <--x 296
- 175 <--x 297
- 238 <--x 298
+ 168 --- 178
+ 169 --- 179
+ 170 --- 180
+ 171 --- 181
+ 172 --- 182
+ 173 --- 183
+ 176 --- 177
+ 176 --- 178
+ 176 --- 179
+ 176 --- 180
+ 176 --- 181
+ 176 --- 182
+ 176 --- 183
+ 176 <--x 168
+ 176 <--x 169
+ 176 <--x 170
+ 176 <--x 171
+ 176 <--x 172
+ 176 <--x 173
+ 184 --- 185
+ 185 --- 186
+ 185 --- 187
+ 185 --- 188
+ 185 --- 189
+ 185 --- 190
+ 185 --- 191
+ 185 --- 192
+ 185 --- 193
+ 185 --- 194
+ 185 --- 195
+ 185 --- 196
+ 185 --- 197
+ 185 --- 198
+ 185 ---- 200
+ 185 --- 199
+ 186 --- 212
+ 186 --- 225
+ 186 x--> 214
+ 187 --- 211
+ 187 --- 224
+ 187 x--> 214
+ 188 --- 210
+ 188 --- 223
+ 188 x--> 214
+ 189 --- 209
+ 189 --- 222
+ 189 x--> 214
+ 190 --- 208
+ 190 --- 221
+ 190 x--> 214
+ 191 --- 207
+ 191 --- 220
+ 191 x--> 214
+ 192 --- 206
+ 192 --- 219
+ 192 x--> 214
+ 193 --- 205
+ 193 --- 218
+ 193 x--> 214
+ 194 --- 204
+ 194 --- 217
+ 194 x--> 214
+ 195 --- 203
+ 195 --- 216
+ 195 x--> 214
+ 196 --- 202
+ 196 --- 215
+ 196 x--> 214
+ 197 --- 201
+ 197 x--> 214
+ 200 --- 201
+ 200 --- 202
+ 200 --- 203
+ 200 --- 204
+ 200 --- 205
+ 200 --- 206
+ 200 --- 207
+ 200 --- 208
+ 200 --- 209
+ 200 --- 210
+ 200 --- 211
+ 200 --- 212
+ 200 --- 213
+ 200 --- 214
+ 200 --- 215
+ 200 --- 216
+ 200 --- 217
+ 200 --- 218
+ 200 --- 219
+ 200 --- 220
+ 200 --- 221
+ 200 --- 222
+ 200 --- 223
+ 200 --- 224
+ 200 --- 225
+ 215 <--x 202
+ 215 <--x 213
+ 216 <--x 203
+ 216 <--x 213
+ 217 <--x 204
+ 217 <--x 213
+ 218 <--x 205
+ 218 <--x 213
+ 219 <--x 206
+ 219 <--x 213
+ 220 <--x 207
+ 220 <--x 213
+ 221 <--x 208
+ 221 <--x 213
+ 222 <--x 209
+ 222 <--x 213
+ 223 <--x 210
+ 223 <--x 213
+ 224 <--x 211
+ 224 <--x 213
+ 225 <--x 212
+ 225 <--x 213
+ 68 <--x 226
+ 75 <--x 227
+ 126 <--x 228
+ 136 <--x 229
+ 136 <--x 230
+ 184 <--x 231
```
diff --git a/rust/kcl-lib/tests/kcl_samples/gear-rack/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/gear-rack/artifact_commands.snap
index 005f732fa..5c5e5cfc0 100644
--- a/rust/kcl-lib/tests/kcl_samples/gear-rack/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/gear-rack/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands gear-rack.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands gear-rack.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands gear-rack.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -557,20 +665,27 @@ description: Artifact commands gear-rack.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -597,20 +712,27 @@ description: Artifact commands gear-rack.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -637,20 +759,27 @@ description: Artifact commands gear-rack.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -673,6 +802,33 @@ description: Artifact commands gear-rack.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -693,6 +849,174 @@ description: Artifact commands gear-rack.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2704,20 +3028,27 @@ description: Artifact commands gear-rack.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2740,6 +3071,33 @@ description: Artifact commands gear-rack.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2760,6 +3118,80 @@ description: Artifact commands gear-rack.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2962,20 +3394,27 @@ description: Artifact commands gear-rack.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2998,6 +3437,33 @@ description: Artifact commands gear-rack.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3017,5 +3483,79 @@ description: Artifact commands gear-rack.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/kcl_samples/gear-rack/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/gear-rack/artifact_graph_flowchart.snap.md
index 8b1f38fc2..6c64f422e 100644
--- a/rust/kcl-lib/tests/kcl_samples/gear-rack/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/gear-rack/artifact_graph_flowchart.snap.md
@@ -8,33 +8,33 @@ flowchart LR
6["Segment
[717, 724, 0]"]
7[Solid2d]
end
- subgraph path24 [Path]
- 24["Path
[859, 913, 0]"]
- 25["Segment
[921, 962, 0]"]
- 26["Segment
[970, 1002, 0]"]
- 27["Segment
[1010, 1051, 0]"]
- 28["Segment
[1059, 1084, 0]"]
- 29["Segment
[1092, 1134, 0]"]
- 30["Segment
[1142, 1175, 0]"]
- 31["Segment
[1183, 1225, 0]"]
- 32["Segment
[1233, 1240, 0]"]
- 33[Solid2d]
+ subgraph path19 [Path]
+ 19["Path
[859, 913, 0]"]
+ 20["Segment
[921, 962, 0]"]
+ 21["Segment
[970, 1002, 0]"]
+ 22["Segment
[1010, 1051, 0]"]
+ 23["Segment
[1059, 1084, 0]"]
+ 24["Segment
[1092, 1134, 0]"]
+ 25["Segment
[1142, 1175, 0]"]
+ 26["Segment
[1183, 1225, 0]"]
+ 27["Segment
[1233, 1240, 0]"]
+ 28[Solid2d]
end
- subgraph path62 [Path]
- 62["Path
[1553, 1596, 0]"]
- 63["Segment
[1602, 1635, 0]"]
- 64["Segment
[1641, 1683, 0]"]
- 65["Segment
[1689, 1733, 0]"]
- 66["Segment
[1739, 1746, 0]"]
- 67[Solid2d]
+ subgraph path48 [Path]
+ 48["Path
[1553, 1596, 0]"]
+ 49["Segment
[1602, 1635, 0]"]
+ 50["Segment
[1641, 1683, 0]"]
+ 51["Segment
[1689, 1733, 0]"]
+ 52["Segment
[1739, 1746, 0]"]
+ 53[Solid2d]
end
- subgraph path84 [Path]
- 84["Path
[1881, 1923, 0]"]
- 85["Segment
[1929, 1963, 0]"]
- 86["Segment
[1969, 2012, 0]"]
- 87["Segment
[2018, 2061, 0]"]
- 88["Segment
[2067, 2074, 0]"]
- 89[Solid2d]
+ subgraph path65 [Path]
+ 65["Path
[1881, 1923, 0]"]
+ 66["Segment
[1929, 1963, 0]"]
+ 67["Segment
[1969, 2012, 0]"]
+ 68["Segment
[2018, 2061, 0]"]
+ 69["Segment
[2067, 2074, 0]"]
+ 70[Solid2d]
end
1["Plane
[562, 579, 0]"]
8["Sweep Extrusion
[730, 753, 0]"]
@@ -45,73 +45,49 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 23["Plane
[834, 851, 0]"]
- 34["Sweep Extrusion
[1248, 1271, 0]"]
+ 18["Plane
[834, 851, 0]"]
+ 29["Sweep Extrusion
[1248, 1271, 0]"]
+ 30[Wall]
+ 31[Wall]
+ 32[Wall]
+ 33[Wall]
+ 34[Wall]
35[Wall]
36[Wall]
37[Wall]
- 38[Wall]
- 39[Wall]
- 40[Wall]
- 41[Wall]
- 42[Wall]
- 43["Cap Start"]
- 44["Cap End"]
+ 38["Cap Start"]
+ 39["Cap End"]
+ 40["SweepEdge Opposite"]
+ 41["SweepEdge Opposite"]
+ 42["SweepEdge Opposite"]
+ 43["SweepEdge Opposite"]
+ 44["SweepEdge Opposite"]
45["SweepEdge Opposite"]
- 46["SweepEdge Adjacent"]
- 47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
- 49["SweepEdge Opposite"]
- 50["SweepEdge Adjacent"]
- 51["SweepEdge Opposite"]
- 52["SweepEdge Adjacent"]
- 53["SweepEdge Opposite"]
- 54["SweepEdge Adjacent"]
- 55["SweepEdge Opposite"]
- 56["SweepEdge Adjacent"]
- 57["SweepEdge Opposite"]
- 58["SweepEdge Adjacent"]
- 59["SweepEdge Opposite"]
- 60["SweepEdge Adjacent"]
- 61["Plane
[1530, 1547, 0]"]
- 68["Sweep Extrusion
[1752, 1775, 0]"]
- 69[Wall]
- 70[Wall]
- 71[Wall]
+ 46["SweepEdge Opposite"]
+ 47["Plane
[1530, 1547, 0]"]
+ 54["Sweep Extrusion
[1752, 1775, 0]"]
+ 55[Wall]
+ 56[Wall]
+ 57[Wall]
+ 58[Wall]
+ 59["Cap Start"]
+ 60["Cap End"]
+ 61["SweepEdge Opposite"]
+ 62["SweepEdge Opposite"]
+ 63["SweepEdge Opposite"]
+ 64["Plane
[1858, 1875, 0]"]
+ 71["Sweep Extrusion
[2080, 2103, 0]"]
72[Wall]
- 73["Cap Start"]
- 74["Cap End"]
- 75["SweepEdge Opposite"]
- 76["SweepEdge Adjacent"]
- 77["SweepEdge Opposite"]
- 78["SweepEdge Adjacent"]
+ 73[Wall]
+ 74[Wall]
+ 75[Wall]
+ 76["Cap Start"]
+ 77["Cap End"]
+ 78["SweepEdge Opposite"]
79["SweepEdge Opposite"]
- 80["SweepEdge Adjacent"]
- 81["SweepEdge Opposite"]
- 82["SweepEdge Adjacent"]
- 83["Plane
[1858, 1875, 0]"]
- 90["Sweep Extrusion
[2080, 2103, 0]"]
- 91[Wall]
- 92[Wall]
- 93[Wall]
- 94[Wall]
- 95["Cap Start"]
- 96["Cap End"]
- 97["SweepEdge Opposite"]
- 98["SweepEdge Adjacent"]
- 99["SweepEdge Opposite"]
- 100["SweepEdge Adjacent"]
- 101["SweepEdge Opposite"]
- 102["SweepEdge Adjacent"]
- 103["SweepEdge Opposite"]
- 104["SweepEdge Adjacent"]
+ 80["SweepEdge Opposite"]
1 --- 2
2 --- 3
2 --- 4
@@ -120,17 +96,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 9
- 3 --- 15
- 3 --- 16
+ 3 x--> 13
4 --- 10
- 4 --- 17
- 4 --- 18
+ 4 --- 15
+ 4 x--> 13
5 --- 11
- 5 --- 19
- 5 --- 20
+ 5 --- 16
+ 5 x--> 13
6 --- 12
- 6 --- 21
- 6 --- 22
+ 6 --- 17
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -140,136 +115,141 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 23 --- 24
- 24 --- 25
- 24 --- 26
- 24 --- 27
- 24 --- 28
- 24 --- 29
- 24 --- 30
- 24 --- 31
- 24 --- 32
- 24 ---- 34
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 18 --- 19
+ 19 --- 20
+ 19 --- 21
+ 19 --- 22
+ 19 --- 23
+ 19 --- 24
+ 19 --- 25
+ 19 --- 26
+ 19 --- 27
+ 19 ---- 29
+ 19 --- 28
+ 20 --- 37
+ 20 --- 46
+ 20 x--> 38
+ 21 --- 36
+ 21 --- 45
+ 21 x--> 38
+ 22 --- 35
+ 22 --- 44
+ 22 x--> 38
+ 23 --- 34
+ 23 --- 43
+ 23 x--> 38
24 --- 33
- 25 --- 42
- 25 --- 59
- 25 --- 60
- 26 --- 41
- 26 --- 57
- 26 --- 58
- 27 --- 40
- 27 --- 55
- 27 --- 56
- 28 --- 39
- 28 --- 53
- 28 --- 54
+ 24 --- 42
+ 24 x--> 38
+ 25 --- 32
+ 25 --- 41
+ 25 x--> 38
+ 26 --- 31
+ 26 --- 40
+ 26 x--> 38
+ 27 --- 30
+ 27 x--> 38
+ 29 --- 30
+ 29 --- 31
+ 29 --- 32
+ 29 --- 33
+ 29 --- 34
+ 29 --- 35
+ 29 --- 36
+ 29 --- 37
29 --- 38
- 29 --- 51
- 29 --- 52
- 30 --- 37
- 30 --- 49
- 30 --- 50
- 31 --- 36
- 31 --- 47
- 31 --- 48
- 32 --- 35
- 32 --- 45
- 32 --- 46
- 34 --- 35
- 34 --- 36
- 34 --- 37
- 34 --- 38
- 34 --- 39
- 34 --- 40
- 34 --- 41
- 34 --- 42
- 34 --- 43
- 34 --- 44
- 34 --- 45
- 34 --- 46
- 34 --- 47
- 34 --- 48
- 34 --- 49
- 34 --- 50
- 34 --- 51
- 34 --- 52
- 34 --- 53
- 34 --- 54
- 34 --- 55
- 34 --- 56
- 34 --- 57
- 34 --- 58
- 34 --- 59
- 34 --- 60
- 61 --- 62
- 62 --- 63
- 62 --- 64
- 62 --- 65
- 62 --- 66
- 62 ---- 68
- 62 --- 67
- 63 --- 72
- 63 --- 81
- 63 --- 82
- 64 --- 71
- 64 --- 79
- 64 --- 80
+ 29 --- 39
+ 29 --- 40
+ 29 --- 41
+ 29 --- 42
+ 29 --- 43
+ 29 --- 44
+ 29 --- 45
+ 29 --- 46
+ 40 <--x 31
+ 40 <--x 39
+ 41 <--x 32
+ 41 <--x 39
+ 42 <--x 33
+ 42 <--x 39
+ 43 <--x 34
+ 43 <--x 39
+ 44 <--x 35
+ 44 <--x 39
+ 45 <--x 36
+ 45 <--x 39
+ 46 <--x 37
+ 46 <--x 39
+ 47 --- 48
+ 48 --- 49
+ 48 --- 50
+ 48 --- 51
+ 48 --- 52
+ 48 ---- 54
+ 48 --- 53
+ 49 --- 58
+ 49 --- 63
+ 49 x--> 59
+ 50 --- 57
+ 50 --- 62
+ 50 x--> 59
+ 51 --- 56
+ 51 --- 61
+ 51 x--> 59
+ 52 --- 55
+ 52 x--> 59
+ 54 --- 55
+ 54 --- 56
+ 54 --- 57
+ 54 --- 58
+ 54 --- 59
+ 54 --- 60
+ 54 --- 61
+ 54 --- 62
+ 54 --- 63
+ 61 <--x 56
+ 61 <--x 60
+ 62 <--x 57
+ 62 <--x 60
+ 63 <--x 58
+ 63 <--x 60
+ 64 --- 65
+ 65 --- 66
+ 65 --- 67
+ 65 --- 68
+ 65 --- 69
+ 65 ---- 71
65 --- 70
- 65 --- 77
- 65 --- 78
- 66 --- 69
- 66 --- 75
- 66 --- 76
- 68 --- 69
- 68 --- 70
- 68 --- 71
- 68 --- 72
- 68 --- 73
+ 66 --- 72
+ 66 x--> 76
+ 67 --- 73
+ 67 --- 78
+ 67 x--> 76
68 --- 74
- 68 --- 75
- 68 --- 76
- 68 --- 77
- 68 --- 78
68 --- 79
- 68 --- 80
- 68 --- 81
- 68 --- 82
- 83 --- 84
- 84 --- 85
- 84 --- 86
- 84 --- 87
- 84 --- 88
- 84 ---- 90
- 84 --- 89
- 85 --- 91
- 85 --- 97
- 85 --- 98
- 86 --- 92
- 86 --- 99
- 86 --- 100
- 87 --- 93
- 87 --- 101
- 87 --- 102
- 88 --- 94
- 88 --- 103
- 88 --- 104
- 90 --- 91
- 90 --- 92
- 90 --- 93
- 90 --- 94
- 90 --- 95
- 90 --- 96
- 90 --- 97
- 90 --- 98
- 90 --- 99
- 90 --- 100
- 90 --- 101
- 90 --- 102
- 90 --- 103
- 90 --- 104
+ 68 x--> 76
+ 69 --- 75
+ 69 --- 80
+ 69 x--> 76
+ 71 --- 72
+ 71 --- 73
+ 71 --- 74
+ 71 --- 75
+ 71 --- 76
+ 71 --- 77
+ 71 --- 78
+ 71 --- 79
+ 71 --- 80
+ 78 <--x 73
+ 78 <--x 77
+ 79 <--x 74
+ 79 <--x 77
+ 80 <--x 75
+ 80 <--x 77
```
diff --git a/rust/kcl-lib/tests/kcl_samples/gear/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/gear/artifact_commands.snap
index 02f5c3d94..45173ce36 100644
--- a/rust/kcl-lib/tests/kcl_samples/gear/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/gear/artifact_commands.snap
@@ -201,6 +201,33 @@ description: Artifact commands gear.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4027,20 +4054,27 @@ description: Artifact commands gear.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4063,6 +4097,33 @@ description: Artifact commands gear.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4082,5 +4143,79 @@ description: Artifact commands gear.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap.md
index 09f4c784c..6811e92f6 100644
--- a/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap.md
@@ -5,8 +5,10 @@ flowchart LR
3["Segment
[1425, 1475, 0]"]
4[Solid2d]
end
- subgraph path12 [Path]
- 12["Path
[1952, 1989, 0]"]
+ subgraph path10 [Path]
+ 10["Path
[1952, 1989, 0]"]
+ 11["Segment
[1640, 1678, 0]"]
+ 12["Segment
[1640, 1678, 0]"]
13["Segment
[1640, 1678, 0]"]
14["Segment
[1640, 1678, 0]"]
15["Segment
[1640, 1678, 0]"]
@@ -106,9 +108,9 @@ flowchart LR
109["Segment
[1640, 1678, 0]"]
110["Segment
[1640, 1678, 0]"]
111["Segment
[1640, 1678, 0]"]
- 112["Segment
[1640, 1678, 0]"]
- 113["Segment
[1640, 1678, 0]"]
- 114["Segment
[2055, 2124, 0]"]
+ 112["Segment
[2055, 2124, 0]"]
+ 113["Segment
[1868, 1898, 0]"]
+ 114["Segment
[1868, 1898, 0]"]
115["Segment
[1868, 1898, 0]"]
116["Segment
[1868, 1898, 0]"]
117["Segment
[1868, 1898, 0]"]
@@ -208,295 +210,283 @@ flowchart LR
211["Segment
[1868, 1898, 0]"]
212["Segment
[1868, 1898, 0]"]
213["Segment
[1868, 1898, 0]"]
- 214["Segment
[1868, 1898, 0]"]
- 215["Segment
[1868, 1898, 0]"]
- 216["Segment
[2184, 2191, 0]"]
- 217[Solid2d]
+ 214["Segment
[2184, 2191, 0]"]
+ 215[Solid2d]
end
- subgraph path219 [Path]
- 219["Path
[2672, 2772, 0]"]
- 220["Segment
[2778, 2805, 0]"]
- 221["Segment
[2811, 2839, 0]"]
- 222["Segment
[2845, 2873, 0]"]
- 223["Segment
[2879, 2966, 0]"]
- 224["Segment
[2972, 3048, 0]"]
- 225["Segment
[3054, 3061, 0]"]
- 226[Solid2d]
+ subgraph path217 [Path]
+ 217["Path
[2672, 2772, 0]"]
+ 218["Segment
[2778, 2805, 0]"]
+ 219["Segment
[2811, 2839, 0]"]
+ 220["Segment
[2845, 2873, 0]"]
+ 221["Segment
[2879, 2966, 0]"]
+ 222["Segment
[2972, 3048, 0]"]
+ 223["Segment
[3054, 3061, 0]"]
+ 224[Solid2d]
end
1["Plane
[1402, 1419, 0]"]
5["Sweep Extrusion
[1481, 1509, 0]"]
6[Wall]
7["Cap Start"]
8["Cap End"]
- 9["SweepEdge Opposite"]
- 10["SweepEdge Adjacent"]
- 11["Plane
[1929, 1946, 0]"]
- 218["Sweep Extrusion
[2197, 2225, 0]"]
- 227["Sweep Extrusion
[3067, 3096, 0]"]
+ 9["Plane
[1929, 1946, 0]"]
+ 216["Sweep Extrusion
[2197, 2225, 0]"]
+ 225["Sweep Extrusion
[3067, 3096, 0]"]
+ 226[Wall]
+ 227[Wall]
228[Wall]
229[Wall]
- 230[Wall]
- 231[Wall]
+ 230["SweepEdge Opposite"]
+ 231["SweepEdge Opposite"]
232["SweepEdge Opposite"]
- 233["SweepEdge Adjacent"]
- 234["SweepEdge Opposite"]
- 235["SweepEdge Adjacent"]
- 236["SweepEdge Opposite"]
- 237["SweepEdge Adjacent"]
- 238["SweepEdge Opposite"]
- 239["SweepEdge Adjacent"]
- 240["StartSketchOnFace
[2635, 2666, 0]"]
+ 233["StartSketchOnFace
[2635, 2666, 0]"]
1 --- 2
2 --- 3
2 ---- 5
2 --- 4
3 --- 6
- 3 --- 9
- 3 --- 10
+ 3 x--> 7
5 --- 6
5 --- 7
5 --- 8
- 5 --- 9
- 5 --- 10
- 8 --- 219
- 11 --- 12
- 12 --- 13
- 12 --- 14
- 12 --- 15
- 12 --- 16
- 12 --- 17
- 12 --- 18
- 12 --- 19
- 12 --- 20
- 12 --- 21
- 12 --- 22
- 12 --- 23
- 12 --- 24
- 12 --- 25
- 12 --- 26
- 12 --- 27
- 12 --- 28
- 12 --- 29
- 12 --- 30
- 12 --- 31
- 12 --- 32
- 12 --- 33
- 12 --- 34
- 12 --- 35
- 12 --- 36
- 12 --- 37
- 12 --- 38
- 12 --- 39
- 12 --- 40
- 12 --- 41
- 12 --- 42
- 12 --- 43
- 12 --- 44
- 12 --- 45
- 12 --- 46
- 12 --- 47
- 12 --- 48
- 12 --- 49
- 12 --- 50
- 12 --- 51
- 12 --- 52
- 12 --- 53
- 12 --- 54
- 12 --- 55
- 12 --- 56
- 12 --- 57
- 12 --- 58
- 12 --- 59
- 12 --- 60
- 12 --- 61
- 12 --- 62
- 12 --- 63
- 12 --- 64
- 12 --- 65
- 12 --- 66
- 12 --- 67
- 12 --- 68
- 12 --- 69
- 12 --- 70
- 12 --- 71
- 12 --- 72
- 12 --- 73
- 12 --- 74
- 12 --- 75
- 12 --- 76
- 12 --- 77
- 12 --- 78
- 12 --- 79
- 12 --- 80
- 12 --- 81
- 12 --- 82
- 12 --- 83
- 12 --- 84
- 12 --- 85
- 12 --- 86
- 12 --- 87
- 12 --- 88
- 12 --- 89
- 12 --- 90
- 12 --- 91
- 12 --- 92
- 12 --- 93
- 12 --- 94
- 12 --- 95
- 12 --- 96
- 12 --- 97
- 12 --- 98
- 12 --- 99
- 12 --- 100
- 12 --- 101
- 12 --- 102
- 12 --- 103
- 12 --- 104
- 12 --- 105
- 12 --- 106
- 12 --- 107
- 12 --- 108
- 12 --- 109
- 12 --- 110
- 12 --- 111
- 12 --- 112
- 12 --- 113
- 12 --- 114
- 12 --- 115
- 12 --- 116
- 12 --- 117
- 12 --- 118
- 12 --- 119
- 12 --- 120
- 12 --- 121
- 12 --- 122
- 12 --- 123
- 12 --- 124
- 12 --- 125
- 12 --- 126
- 12 --- 127
- 12 --- 128
- 12 --- 129
- 12 --- 130
- 12 --- 131
- 12 --- 132
- 12 --- 133
- 12 --- 134
- 12 --- 135
- 12 --- 136
- 12 --- 137
- 12 --- 138
- 12 --- 139
- 12 --- 140
- 12 --- 141
- 12 --- 142
- 12 --- 143
- 12 --- 144
- 12 --- 145
- 12 --- 146
- 12 --- 147
- 12 --- 148
- 12 --- 149
- 12 --- 150
- 12 --- 151
- 12 --- 152
- 12 --- 153
- 12 --- 154
- 12 --- 155
- 12 --- 156
- 12 --- 157
- 12 --- 158
- 12 --- 159
- 12 --- 160
- 12 --- 161
- 12 --- 162
- 12 --- 163
- 12 --- 164
- 12 --- 165
- 12 --- 166
- 12 --- 167
- 12 --- 168
- 12 --- 169
- 12 --- 170
- 12 --- 171
- 12 --- 172
- 12 --- 173
- 12 --- 174
- 12 --- 175
- 12 --- 176
- 12 --- 177
- 12 --- 178
- 12 --- 179
- 12 --- 180
- 12 --- 181
- 12 --- 182
- 12 --- 183
- 12 --- 184
- 12 --- 185
- 12 --- 186
- 12 --- 187
- 12 --- 188
- 12 --- 189
- 12 --- 190
- 12 --- 191
- 12 --- 192
- 12 --- 193
- 12 --- 194
- 12 --- 195
- 12 --- 196
- 12 --- 197
- 12 --- 198
- 12 --- 199
- 12 --- 200
- 12 --- 201
- 12 --- 202
- 12 --- 203
- 12 --- 204
- 12 --- 205
- 12 --- 206
- 12 --- 207
- 12 --- 208
- 12 --- 209
- 12 --- 210
- 12 --- 211
- 12 --- 212
- 12 --- 213
- 12 --- 214
- 12 --- 215
- 12 --- 216
- 12 ---- 218
- 12 --- 217
- 219 --- 220
- 219 --- 221
- 219 --- 222
- 219 --- 223
- 219 --- 224
- 219 --- 225
- 219 ---- 227
- 219 --- 226
- 220 --- 231
- 220 --- 238
- 220 --- 239
- 221 --- 230
- 221 --- 236
- 221 --- 237
- 222 --- 229
- 222 --- 234
- 222 --- 235
- 224 --- 228
- 224 --- 232
- 224 --- 233
- 227 --- 228
- 227 --- 229
- 227 --- 230
- 227 --- 231
- 227 --- 232
- 227 --- 233
- 227 --- 234
- 227 --- 235
- 227 --- 236
- 227 --- 237
- 227 --- 238
- 227 --- 239
- 8 <--x 240
+ 8 --- 217
+ 9 --- 10
+ 10 --- 11
+ 10 --- 12
+ 10 --- 13
+ 10 --- 14
+ 10 --- 15
+ 10 --- 16
+ 10 --- 17
+ 10 --- 18
+ 10 --- 19
+ 10 --- 20
+ 10 --- 21
+ 10 --- 22
+ 10 --- 23
+ 10 --- 24
+ 10 --- 25
+ 10 --- 26
+ 10 --- 27
+ 10 --- 28
+ 10 --- 29
+ 10 --- 30
+ 10 --- 31
+ 10 --- 32
+ 10 --- 33
+ 10 --- 34
+ 10 --- 35
+ 10 --- 36
+ 10 --- 37
+ 10 --- 38
+ 10 --- 39
+ 10 --- 40
+ 10 --- 41
+ 10 --- 42
+ 10 --- 43
+ 10 --- 44
+ 10 --- 45
+ 10 --- 46
+ 10 --- 47
+ 10 --- 48
+ 10 --- 49
+ 10 --- 50
+ 10 --- 51
+ 10 --- 52
+ 10 --- 53
+ 10 --- 54
+ 10 --- 55
+ 10 --- 56
+ 10 --- 57
+ 10 --- 58
+ 10 --- 59
+ 10 --- 60
+ 10 --- 61
+ 10 --- 62
+ 10 --- 63
+ 10 --- 64
+ 10 --- 65
+ 10 --- 66
+ 10 --- 67
+ 10 --- 68
+ 10 --- 69
+ 10 --- 70
+ 10 --- 71
+ 10 --- 72
+ 10 --- 73
+ 10 --- 74
+ 10 --- 75
+ 10 --- 76
+ 10 --- 77
+ 10 --- 78
+ 10 --- 79
+ 10 --- 80
+ 10 --- 81
+ 10 --- 82
+ 10 --- 83
+ 10 --- 84
+ 10 --- 85
+ 10 --- 86
+ 10 --- 87
+ 10 --- 88
+ 10 --- 89
+ 10 --- 90
+ 10 --- 91
+ 10 --- 92
+ 10 --- 93
+ 10 --- 94
+ 10 --- 95
+ 10 --- 96
+ 10 --- 97
+ 10 --- 98
+ 10 --- 99
+ 10 --- 100
+ 10 --- 101
+ 10 --- 102
+ 10 --- 103
+ 10 --- 104
+ 10 --- 105
+ 10 --- 106
+ 10 --- 107
+ 10 --- 108
+ 10 --- 109
+ 10 --- 110
+ 10 --- 111
+ 10 --- 112
+ 10 --- 113
+ 10 --- 114
+ 10 --- 115
+ 10 --- 116
+ 10 --- 117
+ 10 --- 118
+ 10 --- 119
+ 10 --- 120
+ 10 --- 121
+ 10 --- 122
+ 10 --- 123
+ 10 --- 124
+ 10 --- 125
+ 10 --- 126
+ 10 --- 127
+ 10 --- 128
+ 10 --- 129
+ 10 --- 130
+ 10 --- 131
+ 10 --- 132
+ 10 --- 133
+ 10 --- 134
+ 10 --- 135
+ 10 --- 136
+ 10 --- 137
+ 10 --- 138
+ 10 --- 139
+ 10 --- 140
+ 10 --- 141
+ 10 --- 142
+ 10 --- 143
+ 10 --- 144
+ 10 --- 145
+ 10 --- 146
+ 10 --- 147
+ 10 --- 148
+ 10 --- 149
+ 10 --- 150
+ 10 --- 151
+ 10 --- 152
+ 10 --- 153
+ 10 --- 154
+ 10 --- 155
+ 10 --- 156
+ 10 --- 157
+ 10 --- 158
+ 10 --- 159
+ 10 --- 160
+ 10 --- 161
+ 10 --- 162
+ 10 --- 163
+ 10 --- 164
+ 10 --- 165
+ 10 --- 166
+ 10 --- 167
+ 10 --- 168
+ 10 --- 169
+ 10 --- 170
+ 10 --- 171
+ 10 --- 172
+ 10 --- 173
+ 10 --- 174
+ 10 --- 175
+ 10 --- 176
+ 10 --- 177
+ 10 --- 178
+ 10 --- 179
+ 10 --- 180
+ 10 --- 181
+ 10 --- 182
+ 10 --- 183
+ 10 --- 184
+ 10 --- 185
+ 10 --- 186
+ 10 --- 187
+ 10 --- 188
+ 10 --- 189
+ 10 --- 190
+ 10 --- 191
+ 10 --- 192
+ 10 --- 193
+ 10 --- 194
+ 10 --- 195
+ 10 --- 196
+ 10 --- 197
+ 10 --- 198
+ 10 --- 199
+ 10 --- 200
+ 10 --- 201
+ 10 --- 202
+ 10 --- 203
+ 10 --- 204
+ 10 --- 205
+ 10 --- 206
+ 10 --- 207
+ 10 --- 208
+ 10 --- 209
+ 10 --- 210
+ 10 --- 211
+ 10 --- 212
+ 10 --- 213
+ 10 --- 214
+ 10 ---- 216
+ 10 --- 215
+ 217 --- 218
+ 217 --- 219
+ 217 --- 220
+ 217 --- 221
+ 217 --- 222
+ 217 --- 223
+ 217 ---- 225
+ 217 --- 224
+ 218 --- 229
+ 218 --- 232
+ 218 <--x 8
+ 219 --- 228
+ 219 --- 231
+ 219 <--x 8
+ 220 --- 227
+ 220 --- 230
+ 220 <--x 8
+ 222 --- 226
+ 222 <--x 8
+ 225 --- 226
+ 225 --- 227
+ 225 --- 228
+ 225 --- 229
+ 225 --- 230
+ 225 --- 231
+ 225 --- 232
+ 230 <--x 227
+ 230 <--x 7
+ 231 <--x 228
+ 231 <--x 7
+ 232 <--x 229
+ 232 <--x 7
+ 8 <--x 233
```
diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/artifact_commands.snap
index cc349cb00..4b0fa5f12 100644
--- a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/artifact_commands.snap
@@ -262,20 +262,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -302,20 +309,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -338,6 +352,127 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -583,20 +718,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -623,20 +765,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -659,6 +808,127 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2898,20 +3168,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2938,20 +3215,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2978,20 +3262,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3018,20 +3309,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3058,20 +3356,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3098,20 +3403,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3138,20 +3450,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3178,20 +3497,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3218,20 +3544,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3258,20 +3591,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3298,20 +3638,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3334,6 +3681,33 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3354,6 +3728,550 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3983,20 +4901,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4023,20 +4948,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4063,20 +4995,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4103,20 +5042,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4143,20 +5089,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4183,20 +5136,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4223,20 +5183,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4263,20 +5230,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4303,20 +5277,27 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4339,6 +5320,33 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4359,6 +5367,456 @@ description: Artifact commands gridfinity-baseplate-magnets.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/artifact_graph_flowchart.snap.md
index a5c9f9b43..167e5f51b 100644
--- a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate-magnets/artifact_graph_flowchart.snap.md
@@ -9,77 +9,77 @@ flowchart LR
7["Segment
[1124, 1131, 0]"]
8[Solid2d]
end
- subgraph path28 [Path]
- 28["Path
[922, 947, 0]"]
- 29["Segment
[955, 977, 0]"]
- 30["Segment
[985, 1029, 0]"]
- 31["Segment
[1037, 1064, 0]"]
- 32["Segment
[1072, 1116, 0]"]
- 33["Segment
[1124, 1131, 0]"]
- 34[Solid2d]
+ subgraph path22 [Path]
+ 22["Path
[922, 947, 0]"]
+ 23["Segment
[955, 977, 0]"]
+ 24["Segment
[985, 1029, 0]"]
+ 25["Segment
[1037, 1064, 0]"]
+ 26["Segment
[1072, 1116, 0]"]
+ 27["Segment
[1124, 1131, 0]"]
+ 28[Solid2d]
end
- subgraph path54 [Path]
- 54["Path
[4583, 4663, 0]"]
- 55["Segment
[4583, 4663, 0]"]
- 56[Solid2d]
+ subgraph path42 [Path]
+ 42["Path
[4583, 4663, 0]"]
+ 43["Segment
[4583, 4663, 0]"]
+ 44[Solid2d]
end
- subgraph path58 [Path]
- 58["Path
[4214, 4239, 0]"]
- 59["Segment
[4247, 4288, 0]"]
- 60["Segment
[4296, 4337, 0]"]
- 61["Segment
[4345, 4398, 0]"]
- 62["Segment
[4406, 4427, 0]"]
- 63[Solid2d]
+ subgraph path46 [Path]
+ 46["Path
[4214, 4239, 0]"]
+ 47["Segment
[4247, 4288, 0]"]
+ 48["Segment
[4296, 4337, 0]"]
+ 49["Segment
[4345, 4398, 0]"]
+ 50["Segment
[4406, 4427, 0]"]
+ 51[Solid2d]
end
- subgraph path65 [Path]
- 65["Path
[2723, 2810, 0]"]
- 66["Segment
[2818, 2897, 0]"]
- 67["Segment
[2905, 2970, 0]"]
- 68["Segment
[2978, 3060, 0]"]
- 69["Segment
[3068, 3114, 0]"]
- 70["Segment
[3122, 3201, 0]"]
- 71["Segment
[3209, 3276, 0]"]
- 72["Segment
[3284, 3363, 0]"]
- 73["Segment
[3371, 3417, 0]"]
- 74["Segment
[3425, 3507, 0]"]
- 75["Segment
[3515, 3583, 0]"]
- 76["Segment
[3591, 3670, 0]"]
- 77["Segment
[3678, 3743, 0]"]
- 78["Segment
[3751, 3833, 0]"]
- 79["Segment
[3841, 3909, 0]"]
- 80["Segment
[3917, 3999, 0]"]
- 81["Segment
[4007, 4056, 0]"]
- 82["Segment
[4064, 4071, 0]"]
- 83[Solid2d]
+ subgraph path53 [Path]
+ 53["Path
[2723, 2810, 0]"]
+ 54["Segment
[2818, 2897, 0]"]
+ 55["Segment
[2905, 2970, 0]"]
+ 56["Segment
[2978, 3060, 0]"]
+ 57["Segment
[3068, 3114, 0]"]
+ 58["Segment
[3122, 3201, 0]"]
+ 59["Segment
[3209, 3276, 0]"]
+ 60["Segment
[3284, 3363, 0]"]
+ 61["Segment
[3371, 3417, 0]"]
+ 62["Segment
[3425, 3507, 0]"]
+ 63["Segment
[3515, 3583, 0]"]
+ 64["Segment
[3591, 3670, 0]"]
+ 65["Segment
[3678, 3743, 0]"]
+ 66["Segment
[3751, 3833, 0]"]
+ 67["Segment
[3841, 3909, 0]"]
+ 68["Segment
[3917, 3999, 0]"]
+ 69["Segment
[4007, 4056, 0]"]
+ 70["Segment
[4064, 4071, 0]"]
+ 71[Solid2d]
end
- subgraph path100 [Path]
- 100["Path
[4214, 4239, 0]"]
- 101["Segment
[4247, 4288, 0]"]
- 102["Segment
[4296, 4337, 0]"]
- 103["Segment
[4345, 4398, 0]"]
- 104["Segment
[4406, 4427, 0]"]
- 105[Solid2d]
+ subgraph path84 [Path]
+ 84["Path
[4214, 4239, 0]"]
+ 85["Segment
[4247, 4288, 0]"]
+ 86["Segment
[4296, 4337, 0]"]
+ 87["Segment
[4345, 4398, 0]"]
+ 88["Segment
[4406, 4427, 0]"]
+ 89[Solid2d]
end
- subgraph path106 [Path]
- 106["Path
[2723, 2810, 0]"]
- 107["Segment
[2818, 2897, 0]"]
- 108["Segment
[2905, 2970, 0]"]
- 109["Segment
[2978, 3060, 0]"]
- 110["Segment
[3068, 3114, 0]"]
- 111["Segment
[3122, 3201, 0]"]
- 112["Segment
[3209, 3276, 0]"]
- 113["Segment
[3284, 3363, 0]"]
- 114["Segment
[3371, 3417, 0]"]
- 115["Segment
[3425, 3507, 0]"]
- 116["Segment
[3515, 3583, 0]"]
- 117["Segment
[3591, 3670, 0]"]
- 118["Segment
[3678, 3743, 0]"]
- 119["Segment
[3751, 3833, 0]"]
- 120["Segment
[3841, 3909, 0]"]
- 121["Segment
[3917, 3999, 0]"]
- 122["Segment
[4007, 4056, 0]"]
- 123["Segment
[4064, 4071, 0]"]
- 124[Solid2d]
+ subgraph path90 [Path]
+ 90["Path
[2723, 2810, 0]"]
+ 91["Segment
[2818, 2897, 0]"]
+ 92["Segment
[2905, 2970, 0]"]
+ 93["Segment
[2978, 3060, 0]"]
+ 94["Segment
[3068, 3114, 0]"]
+ 95["Segment
[3122, 3201, 0]"]
+ 96["Segment
[3209, 3276, 0]"]
+ 97["Segment
[3284, 3363, 0]"]
+ 98["Segment
[3371, 3417, 0]"]
+ 99["Segment
[3425, 3507, 0]"]
+ 100["Segment
[3515, 3583, 0]"]
+ 101["Segment
[3591, 3670, 0]"]
+ 102["Segment
[3678, 3743, 0]"]
+ 103["Segment
[3751, 3833, 0]"]
+ 104["Segment
[3841, 3909, 0]"]
+ 105["Segment
[3917, 3999, 0]"]
+ 106["Segment
[4007, 4056, 0]"]
+ 107["Segment
[4064, 4071, 0]"]
+ 108[Solid2d]
end
1["Plane
[1217, 1255, 0]"]
9["Sweep Extrusion
[1204, 1298, 0]"]
@@ -91,80 +91,60 @@ flowchart LR
15["Cap Start"]
16["Cap End"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
+ 18["SweepEdge Opposite"]
19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 23["SweepEdge Opposite"]
- 24["SweepEdge Adjacent"]
- 25["SweepEdge Opposite"]
- 26["SweepEdge Adjacent"]
- 27["Plane
[1711, 1749, 0]"]
- 35["Sweep Revolve
[1698, 1780, 0]"]
- 36[Wall]
- 37[Wall]
- 38[Wall]
- 39[Wall]
- 40[Wall]
- 41["Cap Start"]
- 42["Cap End"]
- 43["SweepEdge Opposite"]
- 44["SweepEdge Adjacent"]
- 45["SweepEdge Opposite"]
- 46["SweepEdge Adjacent"]
- 47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
- 49["SweepEdge Opposite"]
- 50["SweepEdge Adjacent"]
- 51["SweepEdge Opposite"]
- 52["SweepEdge Adjacent"]
- 53["Plane
[4560, 4577, 0]"]
- 57["Plane
[4186, 4206, 0]"]
- 64["Plane
[2695, 2715, 0]"]
- 84["Sweep Extrusion
[5006, 5048, 0]"]
- 85[Wall]
- 86[Wall]
- 87[Wall]
- 88[Wall]
- 89["Cap Start"]
- 90["Cap End"]
- 91["SweepEdge Opposite"]
- 92["SweepEdge Adjacent"]
- 93["SweepEdge Opposite"]
- 94["SweepEdge Adjacent"]
- 95["SweepEdge Opposite"]
- 96["SweepEdge Adjacent"]
- 97["SweepEdge Opposite"]
- 98["SweepEdge Adjacent"]
- 99["Plane
[5542, 5577, 0]"]
- 125["Sweep Extrusion
[5660, 5711, 0]"]
- 126[Wall]
- 127[Wall]
- 128[Wall]
- 129[Wall]
- 130["Cap Start"]
- 131["Cap End"]
- 132["SweepEdge Opposite"]
- 133["SweepEdge Adjacent"]
- 134["SweepEdge Opposite"]
- 135["SweepEdge Adjacent"]
- 136["SweepEdge Opposite"]
- 137["SweepEdge Adjacent"]
- 138["SweepEdge Opposite"]
- 139["SweepEdge Adjacent"]
- 140["EdgeCut Fillet
[5111, 5450, 0]"]
- 141["EdgeCut Fillet
[5111, 5450, 0]"]
- 142["EdgeCut Fillet
[5111, 5450, 0]"]
- 143["EdgeCut Fillet
[5111, 5450, 0]"]
- 144["EdgeCut Fillet
[5775, 6119, 0]"]
- 145["EdgeCut Fillet
[5775, 6119, 0]"]
- 146["EdgeCut Fillet
[5775, 6119, 0]"]
- 147["EdgeCut Fillet
[5775, 6119, 0]"]
- 148["StartSketchOnPlane
[894, 914, 0]"]
- 149["StartSketchOnPlane
[894, 914, 0]"]
- 150["StartSketchOnPlane
[4186, 4206, 0]"]
- 151["StartSketchOnPlane
[2695, 2715, 0]"]
+ 20["SweepEdge Opposite"]
+ 21["Plane
[1711, 1749, 0]"]
+ 29["Sweep Revolve
[1698, 1780, 0]"]
+ 30[Wall]
+ 31[Wall]
+ 32[Wall]
+ 33[Wall]
+ 34[Wall]
+ 35["Cap Start"]
+ 36["Cap End"]
+ 37["SweepEdge Opposite"]
+ 38["SweepEdge Opposite"]
+ 39["SweepEdge Opposite"]
+ 40["SweepEdge Opposite"]
+ 41["Plane
[4560, 4577, 0]"]
+ 45["Plane
[4186, 4206, 0]"]
+ 52["Plane
[2695, 2715, 0]"]
+ 72["Sweep Extrusion
[5006, 5048, 0]"]
+ 73[Wall]
+ 74[Wall]
+ 75[Wall]
+ 76[Wall]
+ 77["Cap Start"]
+ 78["Cap End"]
+ 79["SweepEdge Opposite"]
+ 80["SweepEdge Opposite"]
+ 81["SweepEdge Opposite"]
+ 82["SweepEdge Adjacent"]
+ 83["Plane
[5542, 5577, 0]"]
+ 109["Sweep Extrusion
[5660, 5711, 0]"]
+ 110[Wall]
+ 111[Wall]
+ 112[Wall]
+ 113[Wall]
+ 114["Cap Start"]
+ 115["Cap End"]
+ 116["SweepEdge Opposite"]
+ 117["SweepEdge Opposite"]
+ 118["SweepEdge Opposite"]
+ 119["SweepEdge Adjacent"]
+ 120["EdgeCut Fillet
[5111, 5450, 0]"]
+ 121["EdgeCut Fillet
[5111, 5450, 0]"]
+ 122["EdgeCut Fillet
[5111, 5450, 0]"]
+ 123["EdgeCut Fillet
[5111, 5450, 0]"]
+ 124["EdgeCut Fillet
[5775, 6119, 0]"]
+ 125["EdgeCut Fillet
[5775, 6119, 0]"]
+ 126["EdgeCut Fillet
[5775, 6119, 0]"]
+ 127["EdgeCut Fillet
[5775, 6119, 0]"]
+ 128["StartSketchOnPlane
[894, 914, 0]"]
+ 129["StartSketchOnPlane
[894, 914, 0]"]
+ 130["StartSketchOnPlane
[4186, 4206, 0]"]
+ 131["StartSketchOnPlane
[2695, 2715, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -174,20 +154,19 @@ flowchart LR
2 ---- 9
2 --- 8
3 --- 14
- 3 --- 25
- 3 --- 26
+ 3 --- 20
+ 3 x--> 15
4 --- 13
- 4 --- 23
- 4 --- 24
+ 4 --- 19
+ 4 x--> 15
5 --- 12
- 5 --- 21
- 5 --- 22
+ 5 --- 18
+ 5 x--> 15
6 --- 11
- 6 --- 19
- 6 --- 20
+ 6 --- 17
+ 6 x--> 15
7 --- 10
- 7 --- 17
- 7 --- 18
+ 7 x--> 15
9 --- 10
9 --- 11
9 --- 12
@@ -199,169 +178,170 @@ flowchart LR
9 --- 18
9 --- 19
9 --- 20
- 9 --- 21
- 9 --- 22
- 9 --- 23
- 9 --- 24
- 9 --- 25
- 9 --- 26
- 27 --- 28
- 28 --- 29
- 28 --- 30
- 28 --- 31
- 28 --- 32
- 28 --- 33
- 28 ---- 35
- 28 --- 34
+ 17 <--x 11
+ 17 <--x 16
+ 18 <--x 12
+ 18 <--x 16
+ 19 <--x 13
+ 19 <--x 16
+ 20 <--x 14
+ 20 <--x 16
+ 21 --- 22
+ 22 --- 23
+ 22 --- 24
+ 22 --- 25
+ 22 --- 26
+ 22 --- 27
+ 22 ---- 29
+ 22 --- 28
+ 23 --- 30
+ 23 x--> 35
+ 24 --- 31
+ 24 --- 37
+ 24 x--> 35
+ 25 --- 32
+ 25 --- 38
+ 25 x--> 35
+ 26 --- 33
+ 26 --- 39
+ 26 x--> 35
+ 27 --- 34
+ 27 --- 40
+ 27 x--> 35
+ 29 --- 30
+ 29 --- 31
+ 29 --- 32
+ 29 --- 33
+ 29 --- 34
+ 29 --- 35
29 --- 36
- 29 --- 43
- 29 --- 44
- 30 --- 37
- 30 --- 45
- 30 --- 46
- 31 --- 38
- 31 --- 47
- 31 --- 48
- 32 --- 39
- 32 --- 49
- 32 --- 50
- 33 --- 40
- 33 --- 51
- 33 --- 52
- 35 --- 36
- 35 --- 37
- 35 --- 38
- 35 --- 39
- 35 --- 40
- 35 --- 41
- 35 --- 42
- 35 --- 43
- 35 --- 44
- 35 --- 45
- 35 --- 46
- 35 --- 47
- 35 --- 48
- 35 --- 49
- 35 --- 50
- 35 --- 51
- 35 --- 52
+ 29 --- 37
+ 29 --- 38
+ 29 --- 39
+ 29 --- 40
+ 37 <--x 31
+ 37 <--x 36
+ 38 <--x 32
+ 38 <--x 36
+ 39 <--x 33
+ 39 <--x 36
+ 40 <--x 34
+ 40 <--x 36
+ 41 --- 42
+ 42 --- 43
+ 42 --- 44
+ 45 --- 46
+ 46 --- 47
+ 46 --- 48
+ 46 --- 49
+ 46 --- 50
+ 46 ---- 72
+ 46 --- 51
+ 47 --- 73
+ 47 --- 82
+ 47 x--> 78
+ 48 --- 74
+ 48 --- 79
+ 48 x--> 78
+ 49 --- 75
+ 49 --- 80
+ 49 x--> 78
+ 50 --- 76
+ 50 --- 81
+ 50 x--> 78
+ 52 --- 53
53 --- 54
- 54 --- 55
- 54 --- 56
- 57 --- 58
- 58 --- 59
- 58 --- 60
- 58 --- 61
- 58 --- 62
- 58 ---- 84
- 58 --- 63
- 59 --- 85
- 59 --- 91
- 59 --- 92
- 60 --- 86
- 60 --- 93
- 60 --- 94
- 61 --- 87
- 61 --- 95
- 61 --- 96
- 62 --- 88
- 62 --- 97
- 62 --- 98
- 64 --- 65
- 65 --- 66
- 65 --- 67
- 65 --- 68
- 65 --- 69
- 65 --- 70
- 65 --- 71
- 65 --- 72
- 65 --- 73
- 65 --- 74
- 65 --- 75
- 65 --- 76
- 65 --- 77
- 65 --- 78
- 65 --- 79
- 65 --- 80
- 65 --- 81
- 65 --- 82
- 65 --- 83
+ 53 --- 55
+ 53 --- 56
+ 53 --- 57
+ 53 --- 58
+ 53 --- 59
+ 53 --- 60
+ 53 --- 61
+ 53 --- 62
+ 53 --- 63
+ 53 --- 64
+ 53 --- 65
+ 53 --- 66
+ 53 --- 67
+ 53 --- 68
+ 53 --- 69
+ 53 --- 70
+ 53 --- 71
+ 72 --- 73
+ 72 --- 74
+ 72 --- 75
+ 72 --- 76
+ 72 --- 77
+ 72 --- 78
+ 72 --- 79
+ 72 --- 80
+ 72 --- 81
+ 72 --- 82
+ 79 <--x 74
+ 79 <--x 77
+ 80 <--x 75
+ 80 <--x 77
+ 81 <--x 76
+ 81 <--x 77
+ 83 --- 84
+ 83 --- 90
84 --- 85
84 --- 86
84 --- 87
84 --- 88
+ 84 ---- 109
84 --- 89
- 84 --- 90
- 84 --- 91
- 84 --- 92
- 84 --- 93
- 84 --- 94
- 84 --- 95
- 84 --- 96
- 84 --- 97
- 84 --- 98
- 99 --- 100
- 99 --- 106
- 100 --- 101
- 100 --- 102
- 100 --- 103
- 100 --- 104
- 100 ---- 125
- 100 --- 105
- 101 --- 126
- 101 --- 132
- 101 --- 133
- 102 --- 127
- 102 --- 134
- 102 --- 135
- 103 --- 128
- 103 --- 136
- 103 --- 137
- 104 --- 129
- 104 --- 138
- 104 --- 139
- 106 --- 107
- 106 --- 108
- 106 --- 109
- 106 --- 110
- 106 --- 111
- 106 --- 112
- 106 --- 113
- 106 --- 114
- 106 --- 115
- 106 --- 116
- 106 --- 117
- 106 --- 118
- 106 --- 119
- 106 --- 120
- 106 --- 121
- 106 --- 122
- 106 --- 123
- 106 --- 124
- 125 --- 126
- 125 --- 127
- 125 --- 128
- 125 --- 129
- 125 --- 130
- 125 --- 131
- 125 --- 132
- 125 --- 133
- 125 --- 134
- 125 --- 135
- 125 --- 136
- 125 --- 137
- 125 --- 138
- 125 --- 139
- 92 <--x 140
- 98 <--x 141
- 96 <--x 142
- 94 <--x 143
- 133 <--x 144
- 139 <--x 145
- 137 <--x 146
- 135 <--x 147
- 1 <--x 148
- 27 <--x 149
- 99 <--x 150
- 99 <--x 151
+ 85 --- 110
+ 85 --- 119
+ 85 x--> 115
+ 86 --- 111
+ 86 --- 116
+ 86 x--> 115
+ 87 --- 112
+ 87 --- 117
+ 87 x--> 115
+ 88 --- 113
+ 88 --- 118
+ 88 x--> 115
+ 90 --- 91
+ 90 --- 92
+ 90 --- 93
+ 90 --- 94
+ 90 --- 95
+ 90 --- 96
+ 90 --- 97
+ 90 --- 98
+ 90 --- 99
+ 90 --- 100
+ 90 --- 101
+ 90 --- 102
+ 90 --- 103
+ 90 --- 104
+ 90 --- 105
+ 90 --- 106
+ 90 --- 107
+ 90 --- 108
+ 109 --- 110
+ 109 --- 111
+ 109 --- 112
+ 109 --- 113
+ 109 --- 114
+ 109 --- 115
+ 109 --- 116
+ 109 --- 117
+ 109 --- 118
+ 109 --- 119
+ 116 <--x 111
+ 116 <--x 114
+ 117 <--x 112
+ 117 <--x 114
+ 118 <--x 113
+ 118 <--x 114
+ 82 <--x 120
+ 119 <--x 124
+ 1 <--x 128
+ 21 <--x 129
+ 83 <--x 130
+ 83 <--x 131
```
diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/artifact_commands.snap
index af5618cd2..1e0d037ed 100644
--- a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/artifact_commands.snap
@@ -262,20 +262,27 @@ description: Artifact commands gridfinity-baseplate.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -302,20 +309,27 @@ description: Artifact commands gridfinity-baseplate.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -338,6 +352,127 @@ description: Artifact commands gridfinity-baseplate.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -583,20 +718,27 @@ description: Artifact commands gridfinity-baseplate.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -623,20 +765,27 @@ description: Artifact commands gridfinity-baseplate.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -659,6 +808,127 @@ description: Artifact commands gridfinity-baseplate.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/artifact_graph_flowchart.snap.md
index d05add2cf..fb01c41b2 100644
--- a/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-baseplate/artifact_graph_flowchart.snap.md
@@ -9,14 +9,14 @@ flowchart LR
7["Segment
[1001, 1008, 0]"]
8[Solid2d]
end
- subgraph path28 [Path]
- 28["Path
[799, 824, 0]"]
- 29["Segment
[832, 854, 0]"]
- 30["Segment
[862, 906, 0]"]
- 31["Segment
[914, 941, 0]"]
- 32["Segment
[949, 993, 0]"]
- 33["Segment
[1001, 1008, 0]"]
- 34[Solid2d]
+ subgraph path22 [Path]
+ 22["Path
[799, 824, 0]"]
+ 23["Segment
[832, 854, 0]"]
+ 24["Segment
[862, 906, 0]"]
+ 25["Segment
[914, 941, 0]"]
+ 26["Segment
[949, 993, 0]"]
+ 27["Segment
[1001, 1008, 0]"]
+ 28[Solid2d]
end
1["Plane
[1094, 1132, 0]"]
9["Sweep Extrusion
[1081, 1175, 0]"]
@@ -28,36 +28,24 @@ flowchart LR
15["Cap Start"]
16["Cap End"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
+ 18["SweepEdge Opposite"]
19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 23["SweepEdge Opposite"]
- 24["SweepEdge Adjacent"]
- 25["SweepEdge Opposite"]
- 26["SweepEdge Adjacent"]
- 27["Plane
[1588, 1626, 0]"]
- 35["Sweep Revolve
[1575, 1657, 0]"]
- 36[Wall]
- 37[Wall]
- 38[Wall]
- 39[Wall]
- 40[Wall]
- 41["Cap Start"]
- 42["Cap End"]
- 43["SweepEdge Opposite"]
- 44["SweepEdge Adjacent"]
- 45["SweepEdge Opposite"]
- 46["SweepEdge Adjacent"]
- 47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
- 49["SweepEdge Opposite"]
- 50["SweepEdge Adjacent"]
- 51["SweepEdge Opposite"]
- 52["SweepEdge Adjacent"]
- 53["StartSketchOnPlane
[771, 791, 0]"]
- 54["StartSketchOnPlane
[771, 791, 0]"]
+ 20["SweepEdge Opposite"]
+ 21["Plane
[1588, 1626, 0]"]
+ 29["Sweep Revolve
[1575, 1657, 0]"]
+ 30[Wall]
+ 31[Wall]
+ 32[Wall]
+ 33[Wall]
+ 34[Wall]
+ 35["Cap Start"]
+ 36["Cap End"]
+ 37["SweepEdge Opposite"]
+ 38["SweepEdge Opposite"]
+ 39["SweepEdge Opposite"]
+ 40["SweepEdge Opposite"]
+ 41["StartSketchOnPlane
[771, 791, 0]"]
+ 42["StartSketchOnPlane
[771, 791, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -67,20 +55,19 @@ flowchart LR
2 ---- 9
2 --- 8
3 --- 14
- 3 --- 25
- 3 --- 26
+ 3 --- 20
+ 3 x--> 15
4 --- 13
- 4 --- 23
- 4 --- 24
+ 4 --- 19
+ 4 x--> 15
5 --- 12
- 5 --- 21
- 5 --- 22
+ 5 --- 18
+ 5 x--> 15
6 --- 11
- 6 --- 19
- 6 --- 20
+ 6 --- 17
+ 6 x--> 15
7 --- 10
- 7 --- 17
- 7 --- 18
+ 7 x--> 15
9 --- 10
9 --- 11
9 --- 12
@@ -92,52 +79,55 @@ flowchart LR
9 --- 18
9 --- 19
9 --- 20
- 9 --- 21
- 9 --- 22
- 9 --- 23
- 9 --- 24
- 9 --- 25
- 9 --- 26
- 27 --- 28
- 28 --- 29
- 28 --- 30
- 28 --- 31
- 28 --- 32
- 28 --- 33
- 28 ---- 35
- 28 --- 34
+ 17 <--x 11
+ 17 <--x 16
+ 18 <--x 12
+ 18 <--x 16
+ 19 <--x 13
+ 19 <--x 16
+ 20 <--x 14
+ 20 <--x 16
+ 21 --- 22
+ 22 --- 23
+ 22 --- 24
+ 22 --- 25
+ 22 --- 26
+ 22 --- 27
+ 22 ---- 29
+ 22 --- 28
+ 23 --- 30
+ 23 x--> 35
+ 24 --- 31
+ 24 --- 37
+ 24 x--> 35
+ 25 --- 32
+ 25 --- 38
+ 25 x--> 35
+ 26 --- 33
+ 26 --- 39
+ 26 x--> 35
+ 27 --- 34
+ 27 --- 40
+ 27 x--> 35
+ 29 --- 30
+ 29 --- 31
+ 29 --- 32
+ 29 --- 33
+ 29 --- 34
+ 29 --- 35
29 --- 36
- 29 --- 43
- 29 --- 44
- 30 --- 37
- 30 --- 45
- 30 --- 46
- 31 --- 38
- 31 --- 47
- 31 --- 48
- 32 --- 39
- 32 --- 49
- 32 --- 50
- 33 --- 40
- 33 --- 51
- 33 --- 52
- 35 --- 36
- 35 --- 37
- 35 --- 38
- 35 --- 39
- 35 --- 40
- 35 --- 41
- 35 --- 42
- 35 --- 43
- 35 --- 44
- 35 --- 45
- 35 --- 46
- 35 --- 47
- 35 --- 48
- 35 --- 49
- 35 --- 50
- 35 --- 51
- 35 --- 52
- 1 <--x 53
- 27 <--x 54
+ 29 --- 37
+ 29 --- 38
+ 29 --- 39
+ 29 --- 40
+ 37 <--x 31
+ 37 <--x 36
+ 38 <--x 32
+ 38 <--x 36
+ 39 <--x 33
+ 39 <--x 36
+ 40 <--x 34
+ 40 <--x 36
+ 1 <--x 41
+ 21 <--x 42
```
diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/artifact_commands.snap
index 7f1549879..05ab00347 100644
--- a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/artifact_commands.snap
@@ -279,20 +279,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -319,20 +326,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -355,6 +369,127 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -617,20 +752,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -657,20 +799,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -693,6 +842,127 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -916,20 +1186,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -952,6 +1229,33 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -972,6 +1276,80 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1224,45 +1602,7 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -2.4,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -1271,20 +1611,18 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -1354,6 +1692,33 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1421,6 +1786,127 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -2.4,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3239,20 +3725,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3275,6 +3768,33 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3295,6 +3815,80 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3674,20 +4268,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3714,20 +4315,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3754,20 +4362,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3790,6 +4405,33 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3810,6 +4452,174 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4088,20 +4898,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4128,20 +4945,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4168,20 +4992,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4204,6 +5035,33 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4224,6 +5082,174 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4535,20 +5561,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4575,20 +5608,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4615,20 +5655,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4651,6 +5698,33 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4671,6 +5745,174 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4940,20 +6182,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4980,20 +6229,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5020,20 +6276,27 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5056,6 +6319,33 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5076,6 +6366,174 @@ description: Artifact commands gridfinity-bins-stacking-lip.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/artifact_graph_flowchart.snap.md
index e8556c391..60b448e8d 100644
--- a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins-stacking-lip/artifact_graph_flowchart.snap.md
@@ -10,84 +10,84 @@ flowchart LR
8["Segment
[1448, 1455, 0]"]
9[Solid2d]
end
- subgraph path29 [Path]
- 29["Path
[1187, 1233, 0]"]
- 30["Segment
[1241, 1263, 0]"]
- 31["Segment
[1271, 1301, 0]"]
- 32["Segment
[1309, 1353, 0]"]
- 33["Segment
[1361, 1388, 0]"]
- 34["Segment
[1396, 1440, 0]"]
- 35["Segment
[1448, 1455, 0]"]
- 36[Solid2d]
+ subgraph path23 [Path]
+ 23["Path
[1187, 1233, 0]"]
+ 24["Segment
[1241, 1263, 0]"]
+ 25["Segment
[1271, 1301, 0]"]
+ 26["Segment
[1309, 1353, 0]"]
+ 27["Segment
[1361, 1388, 0]"]
+ 28["Segment
[1396, 1440, 0]"]
+ 29["Segment
[1448, 1455, 0]"]
+ 30[Solid2d]
end
- subgraph path56 [Path]
- 56["Path
[2496, 2584, 0]"]
- 57["Segment
[2590, 2654, 0]"]
- 58["Segment
[2660, 2724, 0]"]
- 59["Segment
[2730, 2783, 0]"]
- 60["Segment
[2789, 2810, 0]"]
- 61[Solid2d]
+ subgraph path44 [Path]
+ 44["Path
[2496, 2584, 0]"]
+ 45["Segment
[2590, 2654, 0]"]
+ 46["Segment
[2660, 2724, 0]"]
+ 47["Segment
[2730, 2783, 0]"]
+ 48["Segment
[2789, 2810, 0]"]
+ 49[Solid2d]
end
- subgraph path81 [Path]
- 81["Path
[3141, 3307, 0]"]
- 82["Segment
[3141, 3307, 0]"]
- 83[Solid2d]
+ subgraph path65 [Path]
+ 65["Path
[3141, 3307, 0]"]
+ 66["Segment
[3141, 3307, 0]"]
+ 67[Solid2d]
end
- subgraph path93 [Path]
- 93["Path
[4591, 4616, 0]"]
- 94["Segment
[4622, 4694, 0]"]
- 95["Segment
[4700, 4773, 0]"]
- 96["Segment
[4779, 4832, 0]"]
- 97["Segment
[4838, 4859, 0]"]
- 98[Solid2d]
+ subgraph path75 [Path]
+ 75["Path
[4591, 4616, 0]"]
+ 76["Segment
[4622, 4694, 0]"]
+ 77["Segment
[4700, 4773, 0]"]
+ 78["Segment
[4779, 4832, 0]"]
+ 79["Segment
[4838, 4859, 0]"]
+ 80[Solid2d]
end
- subgraph path119 [Path]
- 119["Path
[5326, 5351, 0]"]
- 120["Segment
[5411, 5454, 0]"]
- 121["Segment
[5462, 5582, 0]"]
- 122["Segment
[5645, 5694, 0]"]
- 123["Segment
[5702, 5727, 0]"]
- 124["Segment
[5735, 5778, 0]"]
- 125["Segment
[5786, 5811, 0]"]
- 126["Segment
[5819, 5863, 0]"]
- 127["Segment
[5871, 5878, 0]"]
- 128[Solid2d]
+ subgraph path97 [Path]
+ 97["Path
[5326, 5351, 0]"]
+ 98["Segment
[5411, 5454, 0]"]
+ 99["Segment
[5462, 5582, 0]"]
+ 100["Segment
[5645, 5694, 0]"]
+ 101["Segment
[5702, 5727, 0]"]
+ 102["Segment
[5735, 5778, 0]"]
+ 103["Segment
[5786, 5811, 0]"]
+ 104["Segment
[5819, 5863, 0]"]
+ 105["Segment
[5871, 5878, 0]"]
+ 106[Solid2d]
end
- subgraph path157 [Path]
- 157["Path
[5326, 5351, 0]"]
- 158["Segment
[5411, 5454, 0]"]
- 159["Segment
[5462, 5582, 0]"]
- 160["Segment
[5645, 5694, 0]"]
- 161["Segment
[5702, 5727, 0]"]
- 162["Segment
[5735, 5778, 0]"]
- 163["Segment
[5786, 5811, 0]"]
- 164["Segment
[5819, 5863, 0]"]
- 165["Segment
[5871, 5878, 0]"]
- 166[Solid2d]
+ subgraph path126 [Path]
+ 126["Path
[5326, 5351, 0]"]
+ 127["Segment
[5411, 5454, 0]"]
+ 128["Segment
[5462, 5582, 0]"]
+ 129["Segment
[5645, 5694, 0]"]
+ 130["Segment
[5702, 5727, 0]"]
+ 131["Segment
[5735, 5778, 0]"]
+ 132["Segment
[5786, 5811, 0]"]
+ 133["Segment
[5819, 5863, 0]"]
+ 134["Segment
[5871, 5878, 0]"]
+ 135[Solid2d]
end
- subgraph path195 [Path]
- 195["Path
[5326, 5351, 0]"]
- 196["Segment
[5411, 5454, 0]"]
- 197["Segment
[5462, 5582, 0]"]
- 198["Segment
[5645, 5694, 0]"]
- 199["Segment
[5702, 5727, 0]"]
- 200["Segment
[5735, 5778, 0]"]
- 201["Segment
[5786, 5811, 0]"]
- 202["Segment
[5819, 5863, 0]"]
- 203["Segment
[5871, 5878, 0]"]
- 204[Solid2d]
+ subgraph path155 [Path]
+ 155["Path
[5326, 5351, 0]"]
+ 156["Segment
[5411, 5454, 0]"]
+ 157["Segment
[5462, 5582, 0]"]
+ 158["Segment
[5645, 5694, 0]"]
+ 159["Segment
[5702, 5727, 0]"]
+ 160["Segment
[5735, 5778, 0]"]
+ 161["Segment
[5786, 5811, 0]"]
+ 162["Segment
[5819, 5863, 0]"]
+ 163["Segment
[5871, 5878, 0]"]
+ 164[Solid2d]
end
- subgraph path233 [Path]
- 233["Path
[5326, 5351, 0]"]
- 234["Segment
[5411, 5454, 0]"]
- 235["Segment
[5462, 5582, 0]"]
- 236["Segment
[5645, 5694, 0]"]
- 237["Segment
[5702, 5727, 0]"]
- 238["Segment
[5735, 5778, 0]"]
- 239["Segment
[5786, 5811, 0]"]
- 240["Segment
[5819, 5863, 0]"]
- 241["Segment
[5871, 5878, 0]"]
- 242[Solid2d]
+ subgraph path184 [Path]
+ 184["Path
[5326, 5351, 0]"]
+ 185["Segment
[5411, 5454, 0]"]
+ 186["Segment
[5462, 5582, 0]"]
+ 187["Segment
[5645, 5694, 0]"]
+ 188["Segment
[5702, 5727, 0]"]
+ 189["Segment
[5735, 5778, 0]"]
+ 190["Segment
[5786, 5811, 0]"]
+ 191["Segment
[5819, 5863, 0]"]
+ 192["Segment
[5871, 5878, 0]"]
+ 193[Solid2d]
end
1["Plane
[1541, 1588, 0]"]
10["Sweep Extrusion
[1528, 1631, 0]"]
@@ -99,198 +99,140 @@ flowchart LR
16["Cap Start"]
17["Cap End"]
18["SweepEdge Opposite"]
- 19["SweepEdge Adjacent"]
+ 19["SweepEdge Opposite"]
20["SweepEdge Opposite"]
- 21["SweepEdge Adjacent"]
- 22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
- 24["SweepEdge Opposite"]
- 25["SweepEdge Adjacent"]
- 26["SweepEdge Opposite"]
- 27["SweepEdge Adjacent"]
- 28["Plane
[2120, 2167, 0]"]
- 37["Sweep Revolve
[2107, 2198, 0]"]
- 38[Wall]
- 39[Wall]
- 40[Wall]
- 41[Wall]
- 42[Wall]
- 43["Cap Start"]
- 44["Cap End"]
- 45["SweepEdge Opposite"]
- 46["SweepEdge Adjacent"]
- 47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
- 49["SweepEdge Opposite"]
- 50["SweepEdge Adjacent"]
- 51["SweepEdge Opposite"]
- 52["SweepEdge Adjacent"]
- 53["SweepEdge Opposite"]
- 54["SweepEdge Adjacent"]
- 55["Plane
[2473, 2490, 0]"]
- 62["Sweep Extrusion
[2816, 2840, 0]"]
- 63[Wall]
- 64[Wall]
- 65[Wall]
- 66[Wall]
- 67["Cap Start"]
- 68["Cap End"]
- 69["SweepEdge Opposite"]
- 70["SweepEdge Adjacent"]
- 71["SweepEdge Opposite"]
- 72["SweepEdge Adjacent"]
- 73["SweepEdge Opposite"]
- 74["SweepEdge Adjacent"]
- 75["SweepEdge Opposite"]
- 76["SweepEdge Adjacent"]
- 77["EdgeCut Fillet
[2846, 3076, 0]"]
- 78["EdgeCut Fillet
[2846, 3076, 0]"]
- 79["EdgeCut Fillet
[2846, 3076, 0]"]
- 80["EdgeCut Fillet
[2846, 3076, 0]"]
- 84["Sweep Extrusion
[3529, 3556, 0]"]
+ 21["SweepEdge Opposite"]
+ 22["Plane
[2120, 2167, 0]"]
+ 31["Sweep Revolve
[2107, 2198, 0]"]
+ 32[Wall]
+ 33[Wall]
+ 34[Wall]
+ 35[Wall]
+ 36[Wall]
+ 37["Cap Start"]
+ 38["Cap End"]
+ 39["SweepEdge Opposite"]
+ 40["SweepEdge Opposite"]
+ 41["SweepEdge Opposite"]
+ 42["SweepEdge Opposite"]
+ 43["Plane
[2473, 2490, 0]"]
+ 50["Sweep Extrusion
[2816, 2840, 0]"]
+ 51[Wall]
+ 52[Wall]
+ 53[Wall]
+ 54[Wall]
+ 55["Cap Start"]
+ 56["Cap End"]
+ 57["SweepEdge Opposite"]
+ 58["SweepEdge Opposite"]
+ 59["SweepEdge Opposite"]
+ 60["SweepEdge Adjacent"]
+ 61["EdgeCut Fillet
[2846, 3076, 0]"]
+ 62["EdgeCut Fillet
[2846, 3076, 0]"]
+ 63["EdgeCut Fillet
[2846, 3076, 0]"]
+ 64["EdgeCut Fillet
[2846, 3076, 0]"]
+ 68["Sweep Extrusion
[3529, 3556, 0]"]
+ 69[Wall]
+ 70["Cap Start"]
+ 71["Sweep Extrusion
[3529, 3556, 0]"]
+ 72["Sweep Extrusion
[3529, 3556, 0]"]
+ 73["Sweep Extrusion
[3529, 3556, 0]"]
+ 74["Plane
[4552, 4584, 0]"]
+ 81["Sweep Extrusion
[4865, 4909, 0]"]
+ 82[Wall]
+ 83[Wall]
+ 84[Wall]
85[Wall]
86["Cap Start"]
- 87["SweepEdge Opposite"]
- 88["SweepEdge Adjacent"]
- 89["Sweep Extrusion
[3529, 3556, 0]"]
- 90["Sweep Extrusion
[3529, 3556, 0]"]
- 91["Sweep Extrusion
[3529, 3556, 0]"]
- 92["Plane
[4552, 4584, 0]"]
- 99["Sweep Extrusion
[4865, 4909, 0]"]
- 100[Wall]
- 101[Wall]
- 102[Wall]
- 103[Wall]
- 104["Cap Start"]
- 105["Cap End"]
- 106["SweepEdge Opposite"]
- 107["SweepEdge Adjacent"]
- 108["SweepEdge Opposite"]
- 109["SweepEdge Adjacent"]
- 110["SweepEdge Opposite"]
- 111["SweepEdge Adjacent"]
- 112["SweepEdge Opposite"]
- 113["SweepEdge Adjacent"]
- 114["EdgeCut Fillet
[4915, 5148, 0]"]
- 115["EdgeCut Fillet
[4915, 5148, 0]"]
- 116["EdgeCut Fillet
[4915, 5148, 0]"]
- 117["EdgeCut Fillet
[4915, 5148, 0]"]
- 118["Plane
[5298, 5318, 0]"]
- 129["Sweep Extrusion
[6516, 6628, 0]"]
- 130[Wall]
- 131[Wall]
- 132[Wall]
- 133[Wall]
- 134[Wall]
- 135[Wall]
- 136[Wall]
+ 87["Cap End"]
+ 88["SweepEdge Opposite"]
+ 89["SweepEdge Opposite"]
+ 90["SweepEdge Opposite"]
+ 91["SweepEdge Adjacent"]
+ 92["EdgeCut Fillet
[4915, 5148, 0]"]
+ 93["EdgeCut Fillet
[4915, 5148, 0]"]
+ 94["EdgeCut Fillet
[4915, 5148, 0]"]
+ 95["EdgeCut Fillet
[4915, 5148, 0]"]
+ 96["Plane
[5298, 5318, 0]"]
+ 107["Sweep Extrusion
[6516, 6628, 0]"]
+ 108[Wall]
+ 109[Wall]
+ 110[Wall]
+ 111[Wall]
+ 112[Wall]
+ 113[Wall]
+ 114[Wall]
+ 115[Wall]
+ 116["Cap Start"]
+ 117["Cap End"]
+ 118["SweepEdge Opposite"]
+ 119["SweepEdge Opposite"]
+ 120["SweepEdge Opposite"]
+ 121["SweepEdge Opposite"]
+ 122["SweepEdge Opposite"]
+ 123["SweepEdge Opposite"]
+ 124["SweepEdge Opposite"]
+ 125["Plane
[5298, 5318, 0]"]
+ 136["Sweep Extrusion
[6694, 6808, 0]"]
137[Wall]
- 138["Cap Start"]
- 139["Cap End"]
- 140["SweepEdge Opposite"]
- 141["SweepEdge Adjacent"]
- 142["SweepEdge Opposite"]
- 143["SweepEdge Adjacent"]
- 144["SweepEdge Opposite"]
- 145["SweepEdge Adjacent"]
- 146["SweepEdge Opposite"]
- 147["SweepEdge Adjacent"]
+ 138[Wall]
+ 139[Wall]
+ 140[Wall]
+ 141[Wall]
+ 142[Wall]
+ 143[Wall]
+ 144[Wall]
+ 145["Cap Start"]
+ 146["Cap End"]
+ 147["SweepEdge Opposite"]
148["SweepEdge Opposite"]
- 149["SweepEdge Adjacent"]
+ 149["SweepEdge Opposite"]
150["SweepEdge Opposite"]
- 151["SweepEdge Adjacent"]
+ 151["SweepEdge Opposite"]
152["SweepEdge Opposite"]
- 153["SweepEdge Adjacent"]
- 154["SweepEdge Opposite"]
- 155["SweepEdge Adjacent"]
- 156["Plane
[5298, 5318, 0]"]
- 167["Sweep Extrusion
[6694, 6808, 0]"]
+ 153["SweepEdge Opposite"]
+ 154["Plane
[5298, 5318, 0]"]
+ 165["Sweep Revolve
[7634, 7689, 0]"]
+ 166[Wall]
+ 167[Wall]
168[Wall]
169[Wall]
170[Wall]
171[Wall]
172[Wall]
173[Wall]
- 174[Wall]
- 175[Wall]
- 176["Cap Start"]
- 177["Cap End"]
+ 174["Cap Start"]
+ 175["Cap End"]
+ 176["SweepEdge Opposite"]
+ 177["SweepEdge Opposite"]
178["SweepEdge Opposite"]
- 179["SweepEdge Adjacent"]
+ 179["SweepEdge Opposite"]
180["SweepEdge Opposite"]
- 181["SweepEdge Adjacent"]
+ 181["SweepEdge Opposite"]
182["SweepEdge Opposite"]
- 183["SweepEdge Adjacent"]
- 184["SweepEdge Opposite"]
- 185["SweepEdge Adjacent"]
- 186["SweepEdge Opposite"]
- 187["SweepEdge Adjacent"]
- 188["SweepEdge Opposite"]
- 189["SweepEdge Adjacent"]
- 190["SweepEdge Opposite"]
- 191["SweepEdge Adjacent"]
- 192["SweepEdge Opposite"]
- 193["SweepEdge Adjacent"]
- 194["Plane
[5298, 5318, 0]"]
- 205["Sweep Revolve
[7634, 7689, 0]"]
- 206[Wall]
- 207[Wall]
- 208[Wall]
- 209[Wall]
- 210[Wall]
- 211[Wall]
- 212[Wall]
- 213[Wall]
- 214["Cap Start"]
- 215["Cap End"]
- 216["SweepEdge Opposite"]
- 217["SweepEdge Adjacent"]
- 218["SweepEdge Opposite"]
- 219["SweepEdge Adjacent"]
- 220["SweepEdge Opposite"]
- 221["SweepEdge Adjacent"]
- 222["SweepEdge Opposite"]
- 223["SweepEdge Adjacent"]
- 224["SweepEdge Opposite"]
- 225["SweepEdge Adjacent"]
- 226["SweepEdge Opposite"]
- 227["SweepEdge Adjacent"]
- 228["SweepEdge Opposite"]
- 229["SweepEdge Adjacent"]
- 230["SweepEdge Opposite"]
- 231["SweepEdge Adjacent"]
- 232["Plane
[5298, 5318, 0]"]
- 243["Sweep Revolve
[7751, 7805, 0]"]
- 244[Wall]
- 245[Wall]
- 246[Wall]
- 247[Wall]
- 248[Wall]
- 249[Wall]
- 250[Wall]
- 251[Wall]
- 252["Cap Start"]
- 253["Cap End"]
- 254["SweepEdge Opposite"]
- 255["SweepEdge Adjacent"]
- 256["SweepEdge Opposite"]
- 257["SweepEdge Adjacent"]
- 258["SweepEdge Opposite"]
- 259["SweepEdge Adjacent"]
- 260["SweepEdge Opposite"]
- 261["SweepEdge Adjacent"]
- 262["SweepEdge Opposite"]
- 263["SweepEdge Adjacent"]
- 264["SweepEdge Opposite"]
- 265["SweepEdge Adjacent"]
- 266["SweepEdge Opposite"]
- 267["SweepEdge Adjacent"]
- 268["SweepEdge Opposite"]
- 269["SweepEdge Adjacent"]
- 270["StartSketchOnPlane
[1159, 1179, 0]"]
- 271["StartSketchOnPlane
[1159, 1179, 0]"]
- 272["StartSketchOnFace
[3093, 3135, 0]"]
- 273["StartSketchOnPlane
[4538, 4585, 0]"]
+ 183["Plane
[5298, 5318, 0]"]
+ 194["Sweep Revolve
[7751, 7805, 0]"]
+ 195[Wall]
+ 196[Wall]
+ 197[Wall]
+ 198[Wall]
+ 199[Wall]
+ 200[Wall]
+ 201[Wall]
+ 202[Wall]
+ 203["Cap Start"]
+ 204["Cap End"]
+ 205["SweepEdge Opposite"]
+ 206["SweepEdge Opposite"]
+ 207["SweepEdge Opposite"]
+ 208["SweepEdge Opposite"]
+ 209["SweepEdge Opposite"]
+ 210["SweepEdge Opposite"]
+ 211["SweepEdge Opposite"]
+ 212["StartSketchOnPlane
[1159, 1179, 0]"]
+ 213["StartSketchOnPlane
[1159, 1179, 0]"]
+ 214["StartSketchOnFace
[3093, 3135, 0]"]
+ 215["StartSketchOnPlane
[4538, 4585, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -301,20 +243,19 @@ flowchart LR
2 ---- 10
2 --- 9
3 --- 11
- 3 --- 18
- 3 --- 19
+ 3 x--> 16
4 --- 12
- 4 --- 20
- 4 --- 21
+ 4 --- 18
+ 4 x--> 16
5 --- 13
- 5 --- 22
- 5 --- 23
+ 5 --- 19
+ 5 x--> 16
6 --- 14
- 6 --- 24
- 6 --- 25
+ 6 --- 20
+ 6 x--> 16
7 --- 15
- 7 --- 26
- 7 --- 27
+ 7 --- 21
+ 7 x--> 16
10 --- 11
10 --- 12
10 --- 13
@@ -326,384 +267,398 @@ flowchart LR
10 --- 19
10 --- 20
10 --- 21
- 10 --- 22
- 10 --- 23
- 10 --- 24
- 10 --- 25
- 10 --- 26
- 10 --- 27
- 28 --- 29
- 29 --- 30
- 29 --- 31
- 29 --- 32
- 29 --- 33
- 29 --- 34
- 29 --- 35
- 29 ---- 37
- 29 --- 36
- 30 --- 38
- 30 --- 45
- 30 --- 46
+ 18 <--x 12
+ 18 <--x 17
+ 19 <--x 13
+ 19 <--x 17
+ 20 <--x 14
+ 20 <--x 17
+ 21 <--x 15
+ 21 <--x 17
+ 22 --- 23
+ 23 --- 24
+ 23 --- 25
+ 23 --- 26
+ 23 --- 27
+ 23 --- 28
+ 23 --- 29
+ 23 ---- 31
+ 23 --- 30
+ 24 --- 32
+ 24 x--> 37
+ 25 --- 33
+ 25 --- 39
+ 25 x--> 37
+ 26 --- 34
+ 26 --- 40
+ 26 x--> 37
+ 27 --- 35
+ 27 --- 41
+ 27 x--> 37
+ 28 --- 36
+ 28 --- 42
+ 28 x--> 37
+ 31 --- 32
+ 31 --- 33
+ 31 --- 34
+ 31 --- 35
+ 31 --- 36
+ 31 --- 37
+ 31 --- 38
31 --- 39
- 31 --- 47
- 31 --- 48
- 32 --- 40
- 32 --- 49
- 32 --- 50
- 33 --- 41
- 33 --- 51
- 33 --- 52
- 34 --- 42
- 34 --- 53
- 34 --- 54
- 37 --- 38
- 37 --- 39
- 37 --- 40
- 37 --- 41
- 37 --- 42
- 37 --- 43
- 37 --- 44
- 37 --- 45
- 37 --- 46
- 37 --- 47
- 37 --- 48
- 37 --- 49
- 37 --- 50
- 37 --- 51
- 37 --- 52
- 37 --- 53
- 37 --- 54
- 55 --- 56
- 56 --- 57
- 56 --- 58
- 56 --- 59
- 56 --- 60
- 56 ---- 62
- 56 --- 61
- 57 --- 63
- 57 --- 69
- 57 --- 70
- 58 --- 64
- 58 --- 71
- 58 --- 72
- 59 --- 65
- 59 --- 73
- 59 --- 74
- 60 --- 66
- 60 --- 75
- 60 --- 76
- 62 --- 63
- 62 --- 64
- 62 --- 65
- 62 --- 66
- 62 --- 67
- 62 --- 68
- 62 --- 69
- 62 --- 70
- 62 --- 71
- 62 --- 72
- 62 --- 73
- 62 --- 74
- 62 --- 75
- 62 --- 76
- 67 --- 81
- 70 <--x 77
- 76 <--x 78
- 74 <--x 79
- 72 <--x 80
+ 31 --- 40
+ 31 --- 41
+ 31 --- 42
+ 39 <--x 33
+ 39 <--x 38
+ 40 <--x 34
+ 40 <--x 38
+ 41 <--x 35
+ 41 <--x 38
+ 42 <--x 36
+ 42 <--x 38
+ 43 --- 44
+ 44 --- 45
+ 44 --- 46
+ 44 --- 47
+ 44 --- 48
+ 44 ---- 50
+ 44 --- 49
+ 45 --- 51
+ 45 --- 60
+ 45 x--> 55
+ 46 --- 52
+ 46 --- 57
+ 46 x--> 55
+ 47 --- 53
+ 47 --- 58
+ 47 x--> 55
+ 48 --- 54
+ 48 --- 59
+ 48 x--> 55
+ 50 --- 51
+ 50 --- 52
+ 50 --- 53
+ 50 --- 54
+ 50 --- 55
+ 50 --- 56
+ 50 --- 57
+ 50 --- 58
+ 50 --- 59
+ 50 --- 60
+ 55 --- 65
+ 57 <--x 52
+ 57 <--x 56
+ 58 <--x 53
+ 58 <--x 56
+ 59 <--x 54
+ 59 <--x 56
+ 60 <--x 61
+ 65 --- 66
+ 65 ---- 68
+ 65 --- 67
+ 66 --- 69
+ 66 <--x 55
+ 68 --- 69
+ 68 --- 70
+ 74 --- 75
+ 75 --- 76
+ 75 --- 77
+ 75 --- 78
+ 75 --- 79
+ 75 ---- 81
+ 75 --- 80
+ 76 --- 82
+ 76 --- 91
+ 76 x--> 86
+ 77 --- 83
+ 77 --- 88
+ 77 x--> 86
+ 78 --- 84
+ 78 --- 89
+ 78 x--> 86
+ 79 --- 85
+ 79 --- 90
+ 79 x--> 86
81 --- 82
- 81 ---- 84
81 --- 83
- 82 --- 85
- 82 --- 87
- 82 --- 88
- 84 --- 85
- 84 --- 86
- 84 --- 87
- 84 --- 88
- 92 --- 93
- 93 --- 94
- 93 --- 95
- 93 --- 96
- 93 --- 97
- 93 ---- 99
- 93 --- 98
- 94 --- 100
- 94 --- 106
- 94 --- 107
- 95 --- 101
- 95 --- 108
- 95 --- 109
- 96 --- 102
- 96 --- 110
- 96 --- 111
+ 81 --- 84
+ 81 --- 85
+ 81 --- 86
+ 81 --- 87
+ 81 --- 88
+ 81 --- 89
+ 81 --- 90
+ 81 --- 91
+ 88 <--x 83
+ 88 <--x 87
+ 89 <--x 84
+ 89 <--x 87
+ 90 <--x 85
+ 90 <--x 87
+ 91 <--x 92
+ 96 --- 97
+ 97 --- 98
+ 97 --- 99
+ 97 --- 100
+ 97 --- 101
+ 97 --- 102
97 --- 103
- 97 --- 112
- 97 --- 113
- 99 --- 100
- 99 --- 101
- 99 --- 102
- 99 --- 103
- 99 --- 104
- 99 --- 105
- 99 --- 106
- 99 --- 107
- 99 --- 108
- 99 --- 109
- 99 --- 110
- 99 --- 111
- 99 --- 112
- 99 --- 113
- 107 <--x 114
- 113 <--x 115
- 111 <--x 116
- 109 <--x 117
- 118 --- 119
- 119 --- 120
- 119 --- 121
- 119 --- 122
- 119 --- 123
- 119 --- 124
- 119 --- 125
- 119 --- 126
- 119 --- 127
- 119 ---- 129
- 119 --- 128
- 120 --- 137
- 120 --- 154
- 120 --- 155
- 121 --- 136
- 121 --- 152
- 121 --- 153
- 122 --- 135
- 122 --- 150
- 122 --- 151
- 123 --- 134
- 123 --- 148
- 123 --- 149
- 124 --- 133
- 124 --- 146
- 124 --- 147
- 125 --- 132
- 125 --- 144
- 125 --- 145
+ 97 --- 104
+ 97 --- 105
+ 97 ---- 107
+ 97 --- 106
+ 98 --- 115
+ 98 --- 124
+ 98 x--> 116
+ 99 --- 114
+ 99 --- 123
+ 99 x--> 116
+ 100 --- 113
+ 100 --- 122
+ 100 x--> 116
+ 101 --- 112
+ 101 --- 121
+ 101 x--> 116
+ 102 --- 111
+ 102 --- 120
+ 102 x--> 116
+ 103 --- 110
+ 103 --- 119
+ 103 x--> 116
+ 104 --- 109
+ 104 --- 118
+ 104 x--> 116
+ 105 --- 108
+ 105 x--> 116
+ 107 --- 108
+ 107 --- 109
+ 107 --- 110
+ 107 --- 111
+ 107 --- 112
+ 107 --- 113
+ 107 --- 114
+ 107 --- 115
+ 107 --- 116
+ 107 --- 117
+ 107 --- 118
+ 107 --- 119
+ 107 --- 120
+ 107 --- 121
+ 107 --- 122
+ 107 --- 123
+ 107 --- 124
+ 118 <--x 109
+ 118 <--x 117
+ 119 <--x 110
+ 119 <--x 117
+ 120 <--x 111
+ 120 <--x 117
+ 121 <--x 112
+ 121 <--x 117
+ 122 <--x 113
+ 122 <--x 117
+ 123 <--x 114
+ 123 <--x 117
+ 124 <--x 115
+ 124 <--x 117
+ 125 --- 126
+ 126 --- 127
+ 126 --- 128
+ 126 --- 129
+ 126 --- 130
126 --- 131
- 126 --- 142
- 126 --- 143
- 127 --- 130
- 127 --- 140
- 127 --- 141
- 129 --- 130
- 129 --- 131
- 129 --- 132
- 129 --- 133
- 129 --- 134
- 129 --- 135
- 129 --- 136
- 129 --- 137
- 129 --- 138
- 129 --- 139
- 129 --- 140
- 129 --- 141
+ 126 --- 132
+ 126 --- 133
+ 126 --- 134
+ 126 ---- 136
+ 126 --- 135
+ 127 --- 144
+ 127 --- 153
+ 127 x--> 145
+ 128 --- 143
+ 128 --- 152
+ 128 x--> 145
129 --- 142
- 129 --- 143
- 129 --- 144
- 129 --- 145
- 129 --- 146
- 129 --- 147
- 129 --- 148
- 129 --- 149
- 129 --- 150
129 --- 151
- 129 --- 152
- 129 --- 153
- 129 --- 154
- 129 --- 155
- 156 --- 157
- 157 --- 158
- 157 --- 159
- 157 --- 160
- 157 --- 161
- 157 --- 162
- 157 --- 163
- 157 --- 164
- 157 --- 165
- 157 ---- 167
- 157 --- 166
- 158 --- 175
- 158 --- 192
- 158 --- 193
- 159 --- 174
- 159 --- 190
- 159 --- 191
- 160 --- 173
- 160 --- 188
- 160 --- 189
- 161 --- 172
- 161 --- 186
- 161 --- 187
- 162 --- 171
- 162 --- 184
- 162 --- 185
- 163 --- 170
+ 129 x--> 145
+ 130 --- 141
+ 130 --- 150
+ 130 x--> 145
+ 131 --- 140
+ 131 --- 149
+ 131 x--> 145
+ 132 --- 139
+ 132 --- 148
+ 132 x--> 145
+ 133 --- 138
+ 133 --- 147
+ 133 x--> 145
+ 134 --- 137
+ 134 x--> 145
+ 136 --- 137
+ 136 --- 138
+ 136 --- 139
+ 136 --- 140
+ 136 --- 141
+ 136 --- 142
+ 136 --- 143
+ 136 --- 144
+ 136 --- 145
+ 136 --- 146
+ 136 --- 147
+ 136 --- 148
+ 136 --- 149
+ 136 --- 150
+ 136 --- 151
+ 136 --- 152
+ 136 --- 153
+ 147 <--x 138
+ 147 <--x 146
+ 148 <--x 139
+ 148 <--x 146
+ 149 <--x 140
+ 149 <--x 146
+ 150 <--x 141
+ 150 <--x 146
+ 151 <--x 142
+ 151 <--x 146
+ 152 <--x 143
+ 152 <--x 146
+ 153 <--x 144
+ 153 <--x 146
+ 154 --- 155
+ 155 --- 156
+ 155 --- 157
+ 155 --- 158
+ 155 --- 159
+ 155 --- 160
+ 155 --- 161
+ 155 --- 162
+ 155 --- 163
+ 155 ---- 165
+ 155 --- 164
+ 156 --- 166
+ 156 x--> 174
+ 157 --- 167
+ 157 --- 176
+ 157 x--> 174
+ 158 --- 168
+ 158 --- 177
+ 158 x--> 174
+ 159 --- 169
+ 159 --- 178
+ 159 x--> 174
+ 160 --- 170
+ 160 --- 179
+ 160 x--> 174
+ 161 --- 171
+ 161 --- 180
+ 161 x--> 174
+ 162 --- 172
+ 162 --- 181
+ 162 x--> 174
+ 163 --- 173
163 --- 182
- 163 --- 183
- 164 --- 169
- 164 --- 180
- 164 --- 181
+ 163 x--> 174
+ 165 --- 166
+ 165 --- 167
165 --- 168
+ 165 --- 169
+ 165 --- 170
+ 165 --- 171
+ 165 --- 172
+ 165 --- 173
+ 165 --- 174
+ 165 --- 175
+ 165 --- 176
+ 165 --- 177
165 --- 178
165 --- 179
- 167 --- 168
- 167 --- 169
- 167 --- 170
- 167 --- 171
- 167 --- 172
- 167 --- 173
- 167 --- 174
- 167 --- 175
- 167 --- 176
- 167 --- 177
- 167 --- 178
- 167 --- 179
- 167 --- 180
- 167 --- 181
- 167 --- 182
- 167 --- 183
- 167 --- 184
- 167 --- 185
- 167 --- 186
- 167 --- 187
- 167 --- 188
- 167 --- 189
- 167 --- 190
- 167 --- 191
- 167 --- 192
- 167 --- 193
+ 165 --- 180
+ 165 --- 181
+ 165 --- 182
+ 176 <--x 167
+ 176 <--x 175
+ 177 <--x 168
+ 177 <--x 175
+ 178 <--x 169
+ 178 <--x 175
+ 179 <--x 170
+ 179 <--x 175
+ 180 <--x 171
+ 180 <--x 175
+ 181 <--x 172
+ 181 <--x 175
+ 182 <--x 173
+ 182 <--x 175
+ 183 --- 184
+ 184 --- 185
+ 184 --- 186
+ 184 --- 187
+ 184 --- 188
+ 184 --- 189
+ 184 --- 190
+ 184 --- 191
+ 184 --- 192
+ 184 ---- 194
+ 184 --- 193
+ 185 --- 195
+ 185 x--> 203
+ 186 --- 196
+ 186 --- 205
+ 186 x--> 203
+ 187 --- 197
+ 187 --- 206
+ 187 x--> 203
+ 188 --- 198
+ 188 --- 207
+ 188 x--> 203
+ 189 --- 199
+ 189 --- 208
+ 189 x--> 203
+ 190 --- 200
+ 190 --- 209
+ 190 x--> 203
+ 191 --- 201
+ 191 --- 210
+ 191 x--> 203
+ 192 --- 202
+ 192 --- 211
+ 192 x--> 203
194 --- 195
- 195 --- 196
- 195 --- 197
- 195 --- 198
- 195 --- 199
- 195 --- 200
- 195 --- 201
- 195 --- 202
- 195 --- 203
- 195 ---- 205
- 195 --- 204
- 196 --- 206
- 196 --- 216
- 196 --- 217
- 197 --- 207
- 197 --- 218
- 197 --- 219
- 198 --- 208
- 198 --- 220
- 198 --- 221
- 199 --- 209
- 199 --- 222
- 199 --- 223
- 200 --- 210
- 200 --- 224
- 200 --- 225
- 201 --- 211
- 201 --- 226
- 201 --- 227
- 202 --- 212
- 202 --- 228
- 202 --- 229
- 203 --- 213
- 203 --- 230
- 203 --- 231
- 205 --- 206
- 205 --- 207
- 205 --- 208
- 205 --- 209
- 205 --- 210
- 205 --- 211
- 205 --- 212
- 205 --- 213
- 205 --- 214
- 205 --- 215
- 205 --- 216
- 205 --- 217
- 205 --- 218
- 205 --- 219
- 205 --- 220
- 205 --- 221
- 205 --- 222
- 205 --- 223
- 205 --- 224
- 205 --- 225
- 205 --- 226
- 205 --- 227
- 205 --- 228
- 205 --- 229
- 205 --- 230
- 205 --- 231
- 232 --- 233
- 233 --- 234
- 233 --- 235
- 233 --- 236
- 233 --- 237
- 233 --- 238
- 233 --- 239
- 233 --- 240
- 233 --- 241
- 233 ---- 243
- 233 --- 242
- 234 --- 244
- 234 --- 254
- 234 --- 255
- 235 --- 245
- 235 --- 256
- 235 --- 257
- 236 --- 246
- 236 --- 258
- 236 --- 259
- 237 --- 247
- 237 --- 260
- 237 --- 261
- 238 --- 248
- 238 --- 262
- 238 --- 263
- 239 --- 249
- 239 --- 264
- 239 --- 265
- 240 --- 250
- 240 --- 266
- 240 --- 267
- 241 --- 251
- 241 --- 268
- 241 --- 269
- 243 --- 244
- 243 --- 245
- 243 --- 246
- 243 --- 247
- 243 --- 248
- 243 --- 249
- 243 --- 250
- 243 --- 251
- 243 --- 252
- 243 --- 253
- 243 --- 254
- 243 --- 255
- 243 --- 256
- 243 --- 257
- 243 --- 258
- 243 --- 259
- 243 --- 260
- 243 --- 261
- 243 --- 262
- 243 --- 263
- 243 --- 264
- 243 --- 265
- 243 --- 266
- 243 --- 267
- 243 --- 268
- 243 --- 269
- 1 <--x 270
- 28 <--x 271
- 67 <--x 272
- 92 <--x 273
+ 194 --- 196
+ 194 --- 197
+ 194 --- 198
+ 194 --- 199
+ 194 --- 200
+ 194 --- 201
+ 194 --- 202
+ 194 --- 203
+ 194 --- 204
+ 194 --- 205
+ 194 --- 206
+ 194 --- 207
+ 194 --- 208
+ 194 --- 209
+ 194 --- 210
+ 194 --- 211
+ 205 <--x 196
+ 205 <--x 204
+ 206 <--x 197
+ 206 <--x 204
+ 207 <--x 198
+ 207 <--x 204
+ 208 <--x 199
+ 208 <--x 204
+ 209 <--x 200
+ 209 <--x 204
+ 210 <--x 201
+ 210 <--x 204
+ 211 <--x 202
+ 211 <--x 204
+ 1 <--x 212
+ 22 <--x 213
+ 55 <--x 214
+ 74 <--x 215
```
diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/artifact_commands.snap
index f7b8f6462..e2b7ef630 100644
--- a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/artifact_commands.snap
@@ -279,20 +279,27 @@ description: Artifact commands gridfinity-bins.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -319,20 +326,27 @@ description: Artifact commands gridfinity-bins.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -355,6 +369,127 @@ description: Artifact commands gridfinity-bins.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -617,20 +752,27 @@ description: Artifact commands gridfinity-bins.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -657,20 +799,27 @@ description: Artifact commands gridfinity-bins.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -693,6 +842,127 @@ description: Artifact commands gridfinity-bins.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -916,20 +1186,27 @@ description: Artifact commands gridfinity-bins.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -952,6 +1229,33 @@ description: Artifact commands gridfinity-bins.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -972,6 +1276,80 @@ description: Artifact commands gridfinity-bins.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1224,45 +1602,7 @@ description: Artifact commands gridfinity-bins.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -2.4,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -1271,20 +1611,18 @@ description: Artifact commands gridfinity-bins.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -1354,6 +1692,33 @@ description: Artifact commands gridfinity-bins.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1421,6 +1786,127 @@ description: Artifact commands gridfinity-bins.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -2.4,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3239,20 +3725,27 @@ description: Artifact commands gridfinity-bins.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3275,6 +3768,33 @@ description: Artifact commands gridfinity-bins.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3295,6 +3815,80 @@ description: Artifact commands gridfinity-bins.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/artifact_graph_flowchart.snap.md
index e8bf58427..d9a780167 100644
--- a/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/gridfinity-bins/artifact_graph_flowchart.snap.md
@@ -10,36 +10,36 @@ flowchart LR
8["Segment
[1189, 1196, 0]"]
9[Solid2d]
end
- subgraph path29 [Path]
- 29["Path
[928, 974, 0]"]
- 30["Segment
[982, 1004, 0]"]
- 31["Segment
[1012, 1042, 0]"]
- 32["Segment
[1050, 1094, 0]"]
- 33["Segment
[1102, 1129, 0]"]
- 34["Segment
[1137, 1181, 0]"]
- 35["Segment
[1189, 1196, 0]"]
- 36[Solid2d]
+ subgraph path23 [Path]
+ 23["Path
[928, 974, 0]"]
+ 24["Segment
[982, 1004, 0]"]
+ 25["Segment
[1012, 1042, 0]"]
+ 26["Segment
[1050, 1094, 0]"]
+ 27["Segment
[1102, 1129, 0]"]
+ 28["Segment
[1137, 1181, 0]"]
+ 29["Segment
[1189, 1196, 0]"]
+ 30[Solid2d]
end
- subgraph path56 [Path]
- 56["Path
[2237, 2325, 0]"]
- 57["Segment
[2331, 2395, 0]"]
- 58["Segment
[2401, 2465, 0]"]
- 59["Segment
[2471, 2524, 0]"]
- 60["Segment
[2530, 2551, 0]"]
- 61[Solid2d]
+ subgraph path44 [Path]
+ 44["Path
[2237, 2325, 0]"]
+ 45["Segment
[2331, 2395, 0]"]
+ 46["Segment
[2401, 2465, 0]"]
+ 47["Segment
[2471, 2524, 0]"]
+ 48["Segment
[2530, 2551, 0]"]
+ 49[Solid2d]
end
- subgraph path81 [Path]
- 81["Path
[2882, 3048, 0]"]
- 82["Segment
[2882, 3048, 0]"]
- 83[Solid2d]
+ subgraph path65 [Path]
+ 65["Path
[2882, 3048, 0]"]
+ 66["Segment
[2882, 3048, 0]"]
+ 67[Solid2d]
end
- subgraph path93 [Path]
- 93["Path
[4361, 4386, 0]"]
- 94["Segment
[4392, 4464, 0]"]
- 95["Segment
[4470, 4543, 0]"]
- 96["Segment
[4549, 4602, 0]"]
- 97["Segment
[4608, 4629, 0]"]
- 98[Solid2d]
+ subgraph path75 [Path]
+ 75["Path
[4361, 4386, 0]"]
+ 76["Segment
[4392, 4464, 0]"]
+ 77["Segment
[4470, 4543, 0]"]
+ 78["Segment
[4549, 4602, 0]"]
+ 79["Segment
[4608, 4629, 0]"]
+ 80[Solid2d]
end
1["Plane
[1282, 1329, 0]"]
10["Sweep Extrusion
[1269, 1372, 0]"]
@@ -51,86 +51,64 @@ flowchart LR
16["Cap Start"]
17["Cap End"]
18["SweepEdge Opposite"]
- 19["SweepEdge Adjacent"]
+ 19["SweepEdge Opposite"]
20["SweepEdge Opposite"]
- 21["SweepEdge Adjacent"]
- 22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
- 24["SweepEdge Opposite"]
- 25["SweepEdge Adjacent"]
- 26["SweepEdge Opposite"]
- 27["SweepEdge Adjacent"]
- 28["Plane
[1861, 1908, 0]"]
- 37["Sweep Revolve
[1848, 1939, 0]"]
- 38[Wall]
- 39[Wall]
- 40[Wall]
- 41[Wall]
- 42[Wall]
- 43["Cap Start"]
- 44["Cap End"]
- 45["SweepEdge Opposite"]
- 46["SweepEdge Adjacent"]
- 47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
- 49["SweepEdge Opposite"]
- 50["SweepEdge Adjacent"]
- 51["SweepEdge Opposite"]
- 52["SweepEdge Adjacent"]
- 53["SweepEdge Opposite"]
- 54["SweepEdge Adjacent"]
- 55["Plane
[2214, 2231, 0]"]
- 62["Sweep Extrusion
[2557, 2581, 0]"]
- 63[Wall]
- 64[Wall]
- 65[Wall]
- 66[Wall]
- 67["Cap Start"]
- 68["Cap End"]
- 69["SweepEdge Opposite"]
- 70["SweepEdge Adjacent"]
- 71["SweepEdge Opposite"]
- 72["SweepEdge Adjacent"]
- 73["SweepEdge Opposite"]
- 74["SweepEdge Adjacent"]
- 75["SweepEdge Opposite"]
- 76["SweepEdge Adjacent"]
- 77["EdgeCut Fillet
[2587, 2817, 0]"]
- 78["EdgeCut Fillet
[2587, 2817, 0]"]
- 79["EdgeCut Fillet
[2587, 2817, 0]"]
- 80["EdgeCut Fillet
[2587, 2817, 0]"]
- 84["Sweep Extrusion
[3270, 3297, 0]"]
+ 21["SweepEdge Opposite"]
+ 22["Plane
[1861, 1908, 0]"]
+ 31["Sweep Revolve
[1848, 1939, 0]"]
+ 32[Wall]
+ 33[Wall]
+ 34[Wall]
+ 35[Wall]
+ 36[Wall]
+ 37["Cap Start"]
+ 38["Cap End"]
+ 39["SweepEdge Opposite"]
+ 40["SweepEdge Opposite"]
+ 41["SweepEdge Opposite"]
+ 42["SweepEdge Opposite"]
+ 43["Plane
[2214, 2231, 0]"]
+ 50["Sweep Extrusion
[2557, 2581, 0]"]
+ 51[Wall]
+ 52[Wall]
+ 53[Wall]
+ 54[Wall]
+ 55["Cap Start"]
+ 56["Cap End"]
+ 57["SweepEdge Opposite"]
+ 58["SweepEdge Opposite"]
+ 59["SweepEdge Opposite"]
+ 60["SweepEdge Adjacent"]
+ 61["EdgeCut Fillet
[2587, 2817, 0]"]
+ 62["EdgeCut Fillet
[2587, 2817, 0]"]
+ 63["EdgeCut Fillet
[2587, 2817, 0]"]
+ 64["EdgeCut Fillet
[2587, 2817, 0]"]
+ 68["Sweep Extrusion
[3270, 3297, 0]"]
+ 69[Wall]
+ 70["Cap Start"]
+ 71["Sweep Extrusion
[3270, 3297, 0]"]
+ 72["Sweep Extrusion
[3270, 3297, 0]"]
+ 73["Sweep Extrusion
[3270, 3297, 0]"]
+ 74["Plane
[4322, 4354, 0]"]
+ 81["Sweep Extrusion
[4635, 4679, 0]"]
+ 82[Wall]
+ 83[Wall]
+ 84[Wall]
85[Wall]
86["Cap Start"]
- 87["SweepEdge Opposite"]
- 88["SweepEdge Adjacent"]
- 89["Sweep Extrusion
[3270, 3297, 0]"]
- 90["Sweep Extrusion
[3270, 3297, 0]"]
- 91["Sweep Extrusion
[3270, 3297, 0]"]
- 92["Plane
[4322, 4354, 0]"]
- 99["Sweep Extrusion
[4635, 4679, 0]"]
- 100[Wall]
- 101[Wall]
- 102[Wall]
- 103[Wall]
- 104["Cap Start"]
- 105["Cap End"]
- 106["SweepEdge Opposite"]
- 107["SweepEdge Adjacent"]
- 108["SweepEdge Opposite"]
- 109["SweepEdge Adjacent"]
- 110["SweepEdge Opposite"]
- 111["SweepEdge Adjacent"]
- 112["SweepEdge Opposite"]
- 113["SweepEdge Adjacent"]
- 114["EdgeCut Fillet
[4685, 4918, 0]"]
- 115["EdgeCut Fillet
[4685, 4918, 0]"]
- 116["EdgeCut Fillet
[4685, 4918, 0]"]
- 117["EdgeCut Fillet
[4685, 4918, 0]"]
- 118["StartSketchOnPlane
[900, 920, 0]"]
- 119["StartSketchOnPlane
[900, 920, 0]"]
- 120["StartSketchOnFace
[2834, 2876, 0]"]
- 121["StartSketchOnPlane
[4308, 4355, 0]"]
+ 87["Cap End"]
+ 88["SweepEdge Opposite"]
+ 89["SweepEdge Opposite"]
+ 90["SweepEdge Opposite"]
+ 91["SweepEdge Adjacent"]
+ 92["EdgeCut Fillet
[4685, 4918, 0]"]
+ 93["EdgeCut Fillet
[4685, 4918, 0]"]
+ 94["EdgeCut Fillet
[4685, 4918, 0]"]
+ 95["EdgeCut Fillet
[4685, 4918, 0]"]
+ 96["StartSketchOnPlane
[900, 920, 0]"]
+ 97["StartSketchOnPlane
[900, 920, 0]"]
+ 98["StartSketchOnFace
[2834, 2876, 0]"]
+ 99["StartSketchOnPlane
[4308, 4355, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -141,20 +119,19 @@ flowchart LR
2 ---- 10
2 --- 9
3 --- 11
- 3 --- 18
- 3 --- 19
+ 3 x--> 16
4 --- 12
- 4 --- 20
- 4 --- 21
+ 4 --- 18
+ 4 x--> 16
5 --- 13
- 5 --- 22
- 5 --- 23
+ 5 --- 19
+ 5 x--> 16
6 --- 14
- 6 --- 24
- 6 --- 25
+ 6 --- 20
+ 6 x--> 16
7 --- 15
- 7 --- 26
- 7 --- 27
+ 7 --- 21
+ 7 x--> 16
10 --- 11
10 --- 12
10 --- 13
@@ -166,140 +143,138 @@ flowchart LR
10 --- 19
10 --- 20
10 --- 21
- 10 --- 22
- 10 --- 23
- 10 --- 24
- 10 --- 25
- 10 --- 26
- 10 --- 27
- 28 --- 29
- 29 --- 30
- 29 --- 31
- 29 --- 32
- 29 --- 33
- 29 --- 34
- 29 --- 35
- 29 ---- 37
- 29 --- 36
- 30 --- 38
- 30 --- 45
- 30 --- 46
+ 18 <--x 12
+ 18 <--x 17
+ 19 <--x 13
+ 19 <--x 17
+ 20 <--x 14
+ 20 <--x 17
+ 21 <--x 15
+ 21 <--x 17
+ 22 --- 23
+ 23 --- 24
+ 23 --- 25
+ 23 --- 26
+ 23 --- 27
+ 23 --- 28
+ 23 --- 29
+ 23 ---- 31
+ 23 --- 30
+ 24 --- 32
+ 24 x--> 37
+ 25 --- 33
+ 25 --- 39
+ 25 x--> 37
+ 26 --- 34
+ 26 --- 40
+ 26 x--> 37
+ 27 --- 35
+ 27 --- 41
+ 27 x--> 37
+ 28 --- 36
+ 28 --- 42
+ 28 x--> 37
+ 31 --- 32
+ 31 --- 33
+ 31 --- 34
+ 31 --- 35
+ 31 --- 36
+ 31 --- 37
+ 31 --- 38
31 --- 39
- 31 --- 47
- 31 --- 48
- 32 --- 40
- 32 --- 49
- 32 --- 50
- 33 --- 41
- 33 --- 51
- 33 --- 52
- 34 --- 42
- 34 --- 53
- 34 --- 54
- 37 --- 38
- 37 --- 39
- 37 --- 40
- 37 --- 41
- 37 --- 42
- 37 --- 43
- 37 --- 44
- 37 --- 45
- 37 --- 46
- 37 --- 47
- 37 --- 48
- 37 --- 49
- 37 --- 50
- 37 --- 51
- 37 --- 52
- 37 --- 53
- 37 --- 54
- 55 --- 56
- 56 --- 57
- 56 --- 58
- 56 --- 59
- 56 --- 60
- 56 ---- 62
- 56 --- 61
- 57 --- 63
- 57 --- 69
- 57 --- 70
- 58 --- 64
- 58 --- 71
- 58 --- 72
- 59 --- 65
- 59 --- 73
- 59 --- 74
- 60 --- 66
- 60 --- 75
- 60 --- 76
- 62 --- 63
- 62 --- 64
- 62 --- 65
- 62 --- 66
- 62 --- 67
- 62 --- 68
- 62 --- 69
- 62 --- 70
- 62 --- 71
- 62 --- 72
- 62 --- 73
- 62 --- 74
- 62 --- 75
- 62 --- 76
- 67 --- 81
- 70 <--x 77
- 76 <--x 78
- 74 <--x 79
- 72 <--x 80
+ 31 --- 40
+ 31 --- 41
+ 31 --- 42
+ 39 <--x 33
+ 39 <--x 38
+ 40 <--x 34
+ 40 <--x 38
+ 41 <--x 35
+ 41 <--x 38
+ 42 <--x 36
+ 42 <--x 38
+ 43 --- 44
+ 44 --- 45
+ 44 --- 46
+ 44 --- 47
+ 44 --- 48
+ 44 ---- 50
+ 44 --- 49
+ 45 --- 51
+ 45 --- 60
+ 45 x--> 55
+ 46 --- 52
+ 46 --- 57
+ 46 x--> 55
+ 47 --- 53
+ 47 --- 58
+ 47 x--> 55
+ 48 --- 54
+ 48 --- 59
+ 48 x--> 55
+ 50 --- 51
+ 50 --- 52
+ 50 --- 53
+ 50 --- 54
+ 50 --- 55
+ 50 --- 56
+ 50 --- 57
+ 50 --- 58
+ 50 --- 59
+ 50 --- 60
+ 55 --- 65
+ 57 <--x 52
+ 57 <--x 56
+ 58 <--x 53
+ 58 <--x 56
+ 59 <--x 54
+ 59 <--x 56
+ 60 <--x 61
+ 65 --- 66
+ 65 ---- 68
+ 65 --- 67
+ 66 --- 69
+ 66 <--x 55
+ 68 --- 69
+ 68 --- 70
+ 74 --- 75
+ 75 --- 76
+ 75 --- 77
+ 75 --- 78
+ 75 --- 79
+ 75 ---- 81
+ 75 --- 80
+ 76 --- 82
+ 76 --- 91
+ 76 x--> 86
+ 77 --- 83
+ 77 --- 88
+ 77 x--> 86
+ 78 --- 84
+ 78 --- 89
+ 78 x--> 86
+ 79 --- 85
+ 79 --- 90
+ 79 x--> 86
81 --- 82
- 81 ---- 84
81 --- 83
- 82 --- 85
- 82 --- 87
- 82 --- 88
- 84 --- 85
- 84 --- 86
- 84 --- 87
- 84 --- 88
- 92 --- 93
- 93 --- 94
- 93 --- 95
- 93 --- 96
- 93 --- 97
- 93 ---- 99
- 93 --- 98
- 94 --- 100
- 94 --- 106
- 94 --- 107
- 95 --- 101
- 95 --- 108
- 95 --- 109
- 96 --- 102
- 96 --- 110
- 96 --- 111
- 97 --- 103
- 97 --- 112
- 97 --- 113
- 99 --- 100
- 99 --- 101
- 99 --- 102
- 99 --- 103
- 99 --- 104
- 99 --- 105
- 99 --- 106
- 99 --- 107
- 99 --- 108
- 99 --- 109
- 99 --- 110
- 99 --- 111
- 99 --- 112
- 99 --- 113
- 107 <--x 114
- 113 <--x 115
- 111 <--x 116
- 109 <--x 117
- 1 <--x 118
- 28 <--x 119
- 67 <--x 120
- 92 <--x 121
+ 81 --- 84
+ 81 --- 85
+ 81 --- 86
+ 81 --- 87
+ 81 --- 88
+ 81 --- 89
+ 81 --- 90
+ 81 --- 91
+ 88 <--x 83
+ 88 <--x 87
+ 89 <--x 84
+ 89 <--x 87
+ 90 <--x 85
+ 90 <--x 87
+ 91 <--x 92
+ 1 <--x 96
+ 22 <--x 97
+ 55 <--x 98
+ 74 <--x 99
```
diff --git a/rust/kcl-lib/tests/kcl_samples/hex-nut/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/hex-nut/artifact_commands.snap
index 7295118d8..2755ddf5f 100644
--- a/rust/kcl-lib/tests/kcl_samples/hex-nut/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/hex-nut/artifact_commands.snap
@@ -359,20 +359,27 @@ description: Artifact commands hex-nut.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -399,20 +406,27 @@ description: Artifact commands hex-nut.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -439,20 +453,27 @@ description: Artifact commands hex-nut.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -474,5 +495,173 @@ description: Artifact commands hex-nut.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/kcl_samples/hex-nut/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/hex-nut/artifact_graph_flowchart.snap.md
index b43042c82..a3fdeb98c 100644
--- a/rust/kcl-lib/tests/kcl_samples/hex-nut/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/hex-nut/artifact_graph_flowchart.snap.md
@@ -26,17 +26,10 @@ flowchart LR
20["Cap Start"]
21["Cap End"]
22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
+ 23["SweepEdge Opposite"]
24["SweepEdge Opposite"]
- 25["SweepEdge Adjacent"]
+ 25["SweepEdge Opposite"]
26["SweepEdge Opposite"]
- 27["SweepEdge Adjacent"]
- 28["SweepEdge Opposite"]
- 29["SweepEdge Adjacent"]
- 30["SweepEdge Opposite"]
- 31["SweepEdge Adjacent"]
- 32["SweepEdge Opposite"]
- 33["SweepEdge Adjacent"]
1 --- 2
1 --- 10
2 --- 3
@@ -48,23 +41,22 @@ flowchart LR
2 ---- 13
2 --- 9
3 --- 19
- 3 --- 32
- 3 --- 33
+ 3 --- 26
+ 3 x--> 20
4 --- 18
- 4 --- 30
- 4 --- 31
+ 4 --- 25
+ 4 x--> 20
5 --- 17
- 5 --- 28
- 5 --- 29
+ 5 --- 24
+ 5 x--> 20
6 --- 16
- 6 --- 26
- 6 --- 27
+ 6 --- 23
+ 6 x--> 20
7 --- 15
- 7 --- 24
- 7 --- 25
+ 7 --- 22
+ 7 x--> 20
8 --- 14
- 8 --- 22
- 8 --- 23
+ 8 x--> 20
10 --- 11
10 --- 12
13 --- 14
@@ -80,11 +72,14 @@ flowchart LR
13 --- 24
13 --- 25
13 --- 26
- 13 --- 27
- 13 --- 28
- 13 --- 29
- 13 --- 30
- 13 --- 31
- 13 --- 32
- 13 --- 33
+ 22 <--x 15
+ 22 <--x 21
+ 23 <--x 16
+ 23 <--x 21
+ 24 <--x 17
+ 24 <--x 21
+ 25 <--x 18
+ 25 <--x 21
+ 26 <--x 19
+ 26 <--x 21
```
diff --git a/rust/kcl-lib/tests/kcl_samples/i-beam/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/i-beam/artifact_commands.snap
index 9e743dcfa..a37a6b432 100644
--- a/rust/kcl-lib/tests/kcl_samples/i-beam/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/i-beam/artifact_commands.snap
@@ -312,20 +312,27 @@ description: Artifact commands i-beam.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -352,20 +359,27 @@ description: Artifact commands i-beam.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -392,20 +406,27 @@ description: Artifact commands i-beam.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -432,20 +453,27 @@ description: Artifact commands i-beam.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -472,20 +500,27 @@ description: Artifact commands i-beam.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -512,20 +547,27 @@ description: Artifact commands i-beam.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -552,20 +594,27 @@ description: Artifact commands i-beam.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -592,20 +641,27 @@ description: Artifact commands i-beam.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -627,5 +683,408 @@ description: Artifact commands i-beam.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/kcl_samples/keyboard/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/keyboard/artifact_commands.snap
index f330e9141..a7f46a941 100644
--- a/rust/kcl-lib/tests/kcl_samples/keyboard/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/keyboard/artifact_commands.snap
@@ -248,20 +248,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -284,6 +291,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -304,6 +338,80 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -748,45 +856,7 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 3.8099999999999996,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -795,20 +865,18 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -878,6 +946,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -945,6 +1040,127 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 3.8099999999999996,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1237,20 +1453,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1277,20 +1500,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1317,20 +1547,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1353,6 +1590,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1373,6 +1637,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1692,20 +2124,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1732,20 +2171,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1772,20 +2218,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1808,6 +2261,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1828,6 +2308,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2206,20 +2854,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2246,20 +2901,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2286,20 +2948,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2322,6 +2991,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2342,6 +3038,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2661,20 +3525,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2701,20 +3572,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2741,20 +3619,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2777,6 +3662,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2797,6 +3709,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3116,20 +4196,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3156,20 +4243,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3196,20 +4290,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3232,6 +4333,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3252,6 +4380,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3571,20 +4867,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3611,20 +4914,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3651,20 +4961,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3687,6 +5004,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3707,6 +5051,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4026,20 +5538,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4066,20 +5585,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4106,20 +5632,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4142,6 +5675,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4162,6 +5722,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4481,20 +6209,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4521,20 +6256,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4561,20 +6303,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4597,6 +6346,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4617,6 +6393,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4936,20 +6880,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4976,20 +6927,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5016,20 +6974,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5052,6 +7017,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5072,6 +7064,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5653,20 +7813,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5693,20 +7860,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5733,20 +7907,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5769,6 +7950,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5789,6 +7997,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6108,20 +8484,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6148,20 +8531,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6188,20 +8578,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6224,6 +8621,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6244,6 +8668,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6563,20 +9155,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6603,20 +9202,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6643,20 +9249,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6679,6 +9292,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6699,6 +9339,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7309,20 +10117,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7349,20 +10164,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7389,20 +10211,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7425,6 +10254,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7445,6 +10301,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7764,20 +10788,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7804,20 +10835,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7844,20 +10882,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7880,6 +10925,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7900,6 +10972,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8219,20 +11459,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -8259,20 +11506,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -8299,20 +11553,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -8335,6 +11596,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8355,6 +11643,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8994,20 +12450,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9034,20 +12497,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9074,20 +12544,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9110,6 +12587,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -9130,6 +12634,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -9449,20 +13121,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9489,20 +13168,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9529,20 +13215,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9565,6 +13258,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -9585,6 +13305,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -10253,20 +14141,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10293,20 +14188,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10333,20 +14235,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10369,6 +14278,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -10389,6 +14325,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -10708,20 +14812,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10748,20 +14859,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10788,20 +14906,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10824,6 +14949,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -10844,6 +14996,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -11163,20 +15483,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -11203,20 +15530,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -11243,20 +15577,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -11279,6 +15620,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -11299,6 +15667,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -11938,20 +16474,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -11978,20 +16521,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -12018,20 +16568,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -12054,6 +16611,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -12074,6 +16658,174 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -12507,20 +17259,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -12547,20 +17306,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -12587,20 +17353,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -12627,20 +17400,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -12667,20 +17447,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -12707,20 +17494,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -12747,20 +17541,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -12783,6 +17584,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -12803,6 +17631,362 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -13038,20 +18222,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -13074,6 +18265,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -13094,6 +18312,80 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -13329,20 +18621,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -13365,6 +18664,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -13385,6 +18711,80 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -13620,20 +19020,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -13656,6 +19063,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -13676,6 +19110,80 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -13911,20 +19419,27 @@ description: Artifact commands keyboard.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -13947,6 +19462,33 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -13967,6 +19509,80 @@ description: Artifact commands keyboard.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/keyboard/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/keyboard/artifact_graph_flowchart.snap.md
index a00857e7a..a670ce0b5 100644
--- a/rust/kcl-lib/tests/kcl_samples/keyboard/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/keyboard/artifact_graph_flowchart.snap.md
@@ -9,350 +9,350 @@ flowchart LR
7["Segment
[838, 845, 0]"]
8[Solid2d]
end
- subgraph path28 [Path]
- 28["Path
[1203, 1257, 0]"]
- 29["Segment
[1203, 1257, 0]"]
- 30[Solid2d]
+ subgraph path23 [Path]
+ 23["Path
[1203, 1257, 0]"]
+ 24["Segment
[1203, 1257, 0]"]
+ 25[Solid2d]
end
- subgraph path31 [Path]
- 31["Path
[1271, 1324, 0]"]
- 32["Segment
[1271, 1324, 0]"]
- 33[Solid2d]
+ subgraph path26 [Path]
+ 26["Path
[1271, 1324, 0]"]
+ 27["Segment
[1271, 1324, 0]"]
+ 28[Solid2d]
end
- subgraph path34 [Path]
- 34["Path
[1338, 1398, 0]"]
- 35["Segment
[1338, 1398, 0]"]
- 36[Solid2d]
+ subgraph path29 [Path]
+ 29["Path
[1338, 1398, 0]"]
+ 30["Segment
[1338, 1398, 0]"]
+ 31[Solid2d]
end
- subgraph path37 [Path]
- 37["Path
[1412, 1471, 0]"]
- 38["Segment
[1412, 1471, 0]"]
- 39[Solid2d]
+ subgraph path32 [Path]
+ 32["Path
[1412, 1471, 0]"]
+ 33["Segment
[1412, 1471, 0]"]
+ 34[Solid2d]
end
- subgraph path61 [Path]
- 61["Path
[1993, 2055, 0]"]
- 62["Segment
[2063, 2114, 0]"]
- 63["Segment
[2122, 2196, 0]"]
- 64["Segment
[2204, 2243, 0]"]
- 65["Segment
[2251, 2358, 0]"]
- 66["Segment
[2366, 2405, 0]"]
- 67["Segment
[2413, 2530, 0]"]
- 68["Segment
[2538, 2577, 0]"]
- 69["Segment
[2585, 2670, 0]"]
- 70["Segment
[2678, 2685, 0]"]
- 71[Solid2d]
+ subgraph path48 [Path]
+ 48["Path
[1993, 2055, 0]"]
+ 49["Segment
[2063, 2114, 0]"]
+ 50["Segment
[2122, 2196, 0]"]
+ 51["Segment
[2204, 2243, 0]"]
+ 52["Segment
[2251, 2358, 0]"]
+ 53["Segment
[2366, 2405, 0]"]
+ 54["Segment
[2413, 2530, 0]"]
+ 55["Segment
[2538, 2577, 0]"]
+ 56["Segment
[2585, 2670, 0]"]
+ 57["Segment
[2678, 2685, 0]"]
+ 58[Solid2d]
end
- subgraph path100 [Path]
- 100["Path
[1993, 2055, 0]"]
- 101["Segment
[2063, 2114, 0]"]
- 102["Segment
[2122, 2196, 0]"]
- 103["Segment
[2204, 2243, 0]"]
- 104["Segment
[2251, 2358, 0]"]
- 105["Segment
[2366, 2405, 0]"]
- 106["Segment
[2413, 2530, 0]"]
- 107["Segment
[2538, 2577, 0]"]
- 108["Segment
[2585, 2670, 0]"]
- 109["Segment
[2678, 2685, 0]"]
- 110[Solid2d]
+ subgraph path78 [Path]
+ 78["Path
[1993, 2055, 0]"]
+ 79["Segment
[2063, 2114, 0]"]
+ 80["Segment
[2122, 2196, 0]"]
+ 81["Segment
[2204, 2243, 0]"]
+ 82["Segment
[2251, 2358, 0]"]
+ 83["Segment
[2366, 2405, 0]"]
+ 84["Segment
[2413, 2530, 0]"]
+ 85["Segment
[2538, 2577, 0]"]
+ 86["Segment
[2585, 2670, 0]"]
+ 87["Segment
[2678, 2685, 0]"]
+ 88[Solid2d]
end
- subgraph path139 [Path]
- 139["Path
[1993, 2055, 0]"]
- 140["Segment
[2063, 2114, 0]"]
- 141["Segment
[2122, 2196, 0]"]
- 142["Segment
[2204, 2243, 0]"]
- 143["Segment
[2251, 2358, 0]"]
- 144["Segment
[2366, 2405, 0]"]
- 145["Segment
[2413, 2530, 0]"]
- 146["Segment
[2538, 2577, 0]"]
- 147["Segment
[2585, 2670, 0]"]
- 148["Segment
[2678, 2685, 0]"]
- 149[Solid2d]
+ subgraph path108 [Path]
+ 108["Path
[1993, 2055, 0]"]
+ 109["Segment
[2063, 2114, 0]"]
+ 110["Segment
[2122, 2196, 0]"]
+ 111["Segment
[2204, 2243, 0]"]
+ 112["Segment
[2251, 2358, 0]"]
+ 113["Segment
[2366, 2405, 0]"]
+ 114["Segment
[2413, 2530, 0]"]
+ 115["Segment
[2538, 2577, 0]"]
+ 116["Segment
[2585, 2670, 0]"]
+ 117["Segment
[2678, 2685, 0]"]
+ 118[Solid2d]
end
- subgraph path178 [Path]
- 178["Path
[1993, 2055, 0]"]
- 179["Segment
[2063, 2114, 0]"]
- 180["Segment
[2122, 2196, 0]"]
- 181["Segment
[2204, 2243, 0]"]
- 182["Segment
[2251, 2358, 0]"]
- 183["Segment
[2366, 2405, 0]"]
- 184["Segment
[2413, 2530, 0]"]
- 185["Segment
[2538, 2577, 0]"]
- 186["Segment
[2585, 2670, 0]"]
- 187["Segment
[2678, 2685, 0]"]
- 188[Solid2d]
+ subgraph path138 [Path]
+ 138["Path
[1993, 2055, 0]"]
+ 139["Segment
[2063, 2114, 0]"]
+ 140["Segment
[2122, 2196, 0]"]
+ 141["Segment
[2204, 2243, 0]"]
+ 142["Segment
[2251, 2358, 0]"]
+ 143["Segment
[2366, 2405, 0]"]
+ 144["Segment
[2413, 2530, 0]"]
+ 145["Segment
[2538, 2577, 0]"]
+ 146["Segment
[2585, 2670, 0]"]
+ 147["Segment
[2678, 2685, 0]"]
+ 148[Solid2d]
end
- subgraph path217 [Path]
- 217["Path
[1993, 2055, 0]"]
- 218["Segment
[2063, 2114, 0]"]
- 219["Segment
[2122, 2196, 0]"]
- 220["Segment
[2204, 2243, 0]"]
- 221["Segment
[2251, 2358, 0]"]
- 222["Segment
[2366, 2405, 0]"]
- 223["Segment
[2413, 2530, 0]"]
- 224["Segment
[2538, 2577, 0]"]
- 225["Segment
[2585, 2670, 0]"]
- 226["Segment
[2678, 2685, 0]"]
- 227[Solid2d]
+ subgraph path168 [Path]
+ 168["Path
[1993, 2055, 0]"]
+ 169["Segment
[2063, 2114, 0]"]
+ 170["Segment
[2122, 2196, 0]"]
+ 171["Segment
[2204, 2243, 0]"]
+ 172["Segment
[2251, 2358, 0]"]
+ 173["Segment
[2366, 2405, 0]"]
+ 174["Segment
[2413, 2530, 0]"]
+ 175["Segment
[2538, 2577, 0]"]
+ 176["Segment
[2585, 2670, 0]"]
+ 177["Segment
[2678, 2685, 0]"]
+ 178[Solid2d]
end
- subgraph path256 [Path]
- 256["Path
[1993, 2055, 0]"]
- 257["Segment
[2063, 2114, 0]"]
- 258["Segment
[2122, 2196, 0]"]
- 259["Segment
[2204, 2243, 0]"]
- 260["Segment
[2251, 2358, 0]"]
- 261["Segment
[2366, 2405, 0]"]
- 262["Segment
[2413, 2530, 0]"]
- 263["Segment
[2538, 2577, 0]"]
- 264["Segment
[2585, 2670, 0]"]
- 265["Segment
[2678, 2685, 0]"]
- 266[Solid2d]
+ subgraph path198 [Path]
+ 198["Path
[1993, 2055, 0]"]
+ 199["Segment
[2063, 2114, 0]"]
+ 200["Segment
[2122, 2196, 0]"]
+ 201["Segment
[2204, 2243, 0]"]
+ 202["Segment
[2251, 2358, 0]"]
+ 203["Segment
[2366, 2405, 0]"]
+ 204["Segment
[2413, 2530, 0]"]
+ 205["Segment
[2538, 2577, 0]"]
+ 206["Segment
[2585, 2670, 0]"]
+ 207["Segment
[2678, 2685, 0]"]
+ 208[Solid2d]
end
- subgraph path295 [Path]
- 295["Path
[1993, 2055, 0]"]
- 296["Segment
[2063, 2114, 0]"]
- 297["Segment
[2122, 2196, 0]"]
- 298["Segment
[2204, 2243, 0]"]
- 299["Segment
[2251, 2358, 0]"]
- 300["Segment
[2366, 2405, 0]"]
- 301["Segment
[2413, 2530, 0]"]
- 302["Segment
[2538, 2577, 0]"]
- 303["Segment
[2585, 2670, 0]"]
- 304["Segment
[2678, 2685, 0]"]
- 305[Solid2d]
+ subgraph path228 [Path]
+ 228["Path
[1993, 2055, 0]"]
+ 229["Segment
[2063, 2114, 0]"]
+ 230["Segment
[2122, 2196, 0]"]
+ 231["Segment
[2204, 2243, 0]"]
+ 232["Segment
[2251, 2358, 0]"]
+ 233["Segment
[2366, 2405, 0]"]
+ 234["Segment
[2413, 2530, 0]"]
+ 235["Segment
[2538, 2577, 0]"]
+ 236["Segment
[2585, 2670, 0]"]
+ 237["Segment
[2678, 2685, 0]"]
+ 238[Solid2d]
end
- subgraph path334 [Path]
- 334["Path
[1993, 2055, 0]"]
- 335["Segment
[2063, 2114, 0]"]
- 336["Segment
[2122, 2196, 0]"]
- 337["Segment
[2204, 2243, 0]"]
- 338["Segment
[2251, 2358, 0]"]
- 339["Segment
[2366, 2405, 0]"]
- 340["Segment
[2413, 2530, 0]"]
- 341["Segment
[2538, 2577, 0]"]
- 342["Segment
[2585, 2670, 0]"]
- 343["Segment
[2678, 2685, 0]"]
- 344[Solid2d]
+ subgraph path258 [Path]
+ 258["Path
[1993, 2055, 0]"]
+ 259["Segment
[2063, 2114, 0]"]
+ 260["Segment
[2122, 2196, 0]"]
+ 261["Segment
[2204, 2243, 0]"]
+ 262["Segment
[2251, 2358, 0]"]
+ 263["Segment
[2366, 2405, 0]"]
+ 264["Segment
[2413, 2530, 0]"]
+ 265["Segment
[2538, 2577, 0]"]
+ 266["Segment
[2585, 2670, 0]"]
+ 267["Segment
[2678, 2685, 0]"]
+ 268[Solid2d]
end
- subgraph path373 [Path]
- 373["Path
[1993, 2055, 0]"]
- 374["Segment
[2063, 2114, 0]"]
- 375["Segment
[2122, 2196, 0]"]
- 376["Segment
[2204, 2243, 0]"]
- 377["Segment
[2251, 2358, 0]"]
- 378["Segment
[2366, 2405, 0]"]
- 379["Segment
[2413, 2530, 0]"]
- 380["Segment
[2538, 2577, 0]"]
- 381["Segment
[2585, 2670, 0]"]
- 382["Segment
[2678, 2685, 0]"]
- 383[Solid2d]
+ subgraph path288 [Path]
+ 288["Path
[1993, 2055, 0]"]
+ 289["Segment
[2063, 2114, 0]"]
+ 290["Segment
[2122, 2196, 0]"]
+ 291["Segment
[2204, 2243, 0]"]
+ 292["Segment
[2251, 2358, 0]"]
+ 293["Segment
[2366, 2405, 0]"]
+ 294["Segment
[2413, 2530, 0]"]
+ 295["Segment
[2538, 2577, 0]"]
+ 296["Segment
[2585, 2670, 0]"]
+ 297["Segment
[2678, 2685, 0]"]
+ 298[Solid2d]
end
- subgraph path412 [Path]
- 412["Path
[1993, 2055, 0]"]
- 413["Segment
[2063, 2114, 0]"]
- 414["Segment
[2122, 2196, 0]"]
- 415["Segment
[2204, 2243, 0]"]
- 416["Segment
[2251, 2358, 0]"]
- 417["Segment
[2366, 2405, 0]"]
- 418["Segment
[2413, 2530, 0]"]
- 419["Segment
[2538, 2577, 0]"]
- 420["Segment
[2585, 2670, 0]"]
- 421["Segment
[2678, 2685, 0]"]
- 422[Solid2d]
+ subgraph path318 [Path]
+ 318["Path
[1993, 2055, 0]"]
+ 319["Segment
[2063, 2114, 0]"]
+ 320["Segment
[2122, 2196, 0]"]
+ 321["Segment
[2204, 2243, 0]"]
+ 322["Segment
[2251, 2358, 0]"]
+ 323["Segment
[2366, 2405, 0]"]
+ 324["Segment
[2413, 2530, 0]"]
+ 325["Segment
[2538, 2577, 0]"]
+ 326["Segment
[2585, 2670, 0]"]
+ 327["Segment
[2678, 2685, 0]"]
+ 328[Solid2d]
end
- subgraph path451 [Path]
- 451["Path
[1993, 2055, 0]"]
- 452["Segment
[2063, 2114, 0]"]
- 453["Segment
[2122, 2196, 0]"]
- 454["Segment
[2204, 2243, 0]"]
- 455["Segment
[2251, 2358, 0]"]
- 456["Segment
[2366, 2405, 0]"]
- 457["Segment
[2413, 2530, 0]"]
- 458["Segment
[2538, 2577, 0]"]
- 459["Segment
[2585, 2670, 0]"]
- 460["Segment
[2678, 2685, 0]"]
- 461[Solid2d]
+ subgraph path348 [Path]
+ 348["Path
[1993, 2055, 0]"]
+ 349["Segment
[2063, 2114, 0]"]
+ 350["Segment
[2122, 2196, 0]"]
+ 351["Segment
[2204, 2243, 0]"]
+ 352["Segment
[2251, 2358, 0]"]
+ 353["Segment
[2366, 2405, 0]"]
+ 354["Segment
[2413, 2530, 0]"]
+ 355["Segment
[2538, 2577, 0]"]
+ 356["Segment
[2585, 2670, 0]"]
+ 357["Segment
[2678, 2685, 0]"]
+ 358[Solid2d]
end
- subgraph path490 [Path]
- 490["Path
[1993, 2055, 0]"]
- 491["Segment
[2063, 2114, 0]"]
- 492["Segment
[2122, 2196, 0]"]
- 493["Segment
[2204, 2243, 0]"]
- 494["Segment
[2251, 2358, 0]"]
- 495["Segment
[2366, 2405, 0]"]
- 496["Segment
[2413, 2530, 0]"]
- 497["Segment
[2538, 2577, 0]"]
- 498["Segment
[2585, 2670, 0]"]
- 499["Segment
[2678, 2685, 0]"]
- 500[Solid2d]
+ subgraph path378 [Path]
+ 378["Path
[1993, 2055, 0]"]
+ 379["Segment
[2063, 2114, 0]"]
+ 380["Segment
[2122, 2196, 0]"]
+ 381["Segment
[2204, 2243, 0]"]
+ 382["Segment
[2251, 2358, 0]"]
+ 383["Segment
[2366, 2405, 0]"]
+ 384["Segment
[2413, 2530, 0]"]
+ 385["Segment
[2538, 2577, 0]"]
+ 386["Segment
[2585, 2670, 0]"]
+ 387["Segment
[2678, 2685, 0]"]
+ 388[Solid2d]
end
- subgraph path529 [Path]
- 529["Path
[1993, 2055, 0]"]
- 530["Segment
[2063, 2114, 0]"]
- 531["Segment
[2122, 2196, 0]"]
- 532["Segment
[2204, 2243, 0]"]
- 533["Segment
[2251, 2358, 0]"]
- 534["Segment
[2366, 2405, 0]"]
- 535["Segment
[2413, 2530, 0]"]
- 536["Segment
[2538, 2577, 0]"]
- 537["Segment
[2585, 2670, 0]"]
- 538["Segment
[2678, 2685, 0]"]
- 539[Solid2d]
+ subgraph path408 [Path]
+ 408["Path
[1993, 2055, 0]"]
+ 409["Segment
[2063, 2114, 0]"]
+ 410["Segment
[2122, 2196, 0]"]
+ 411["Segment
[2204, 2243, 0]"]
+ 412["Segment
[2251, 2358, 0]"]
+ 413["Segment
[2366, 2405, 0]"]
+ 414["Segment
[2413, 2530, 0]"]
+ 415["Segment
[2538, 2577, 0]"]
+ 416["Segment
[2585, 2670, 0]"]
+ 417["Segment
[2678, 2685, 0]"]
+ 418[Solid2d]
end
- subgraph path568 [Path]
- 568["Path
[1993, 2055, 0]"]
- 569["Segment
[2063, 2114, 0]"]
- 570["Segment
[2122, 2196, 0]"]
- 571["Segment
[2204, 2243, 0]"]
- 572["Segment
[2251, 2358, 0]"]
- 573["Segment
[2366, 2405, 0]"]
- 574["Segment
[2413, 2530, 0]"]
- 575["Segment
[2538, 2577, 0]"]
- 576["Segment
[2585, 2670, 0]"]
- 577["Segment
[2678, 2685, 0]"]
- 578[Solid2d]
+ subgraph path438 [Path]
+ 438["Path
[1993, 2055, 0]"]
+ 439["Segment
[2063, 2114, 0]"]
+ 440["Segment
[2122, 2196, 0]"]
+ 441["Segment
[2204, 2243, 0]"]
+ 442["Segment
[2251, 2358, 0]"]
+ 443["Segment
[2366, 2405, 0]"]
+ 444["Segment
[2413, 2530, 0]"]
+ 445["Segment
[2538, 2577, 0]"]
+ 446["Segment
[2585, 2670, 0]"]
+ 447["Segment
[2678, 2685, 0]"]
+ 448[Solid2d]
end
- subgraph path607 [Path]
- 607["Path
[1993, 2055, 0]"]
- 608["Segment
[2063, 2114, 0]"]
- 609["Segment
[2122, 2196, 0]"]
- 610["Segment
[2204, 2243, 0]"]
- 611["Segment
[2251, 2358, 0]"]
- 612["Segment
[2366, 2405, 0]"]
- 613["Segment
[2413, 2530, 0]"]
- 614["Segment
[2538, 2577, 0]"]
- 615["Segment
[2585, 2670, 0]"]
- 616["Segment
[2678, 2685, 0]"]
- 617[Solid2d]
+ subgraph path468 [Path]
+ 468["Path
[1993, 2055, 0]"]
+ 469["Segment
[2063, 2114, 0]"]
+ 470["Segment
[2122, 2196, 0]"]
+ 471["Segment
[2204, 2243, 0]"]
+ 472["Segment
[2251, 2358, 0]"]
+ 473["Segment
[2366, 2405, 0]"]
+ 474["Segment
[2413, 2530, 0]"]
+ 475["Segment
[2538, 2577, 0]"]
+ 476["Segment
[2585, 2670, 0]"]
+ 477["Segment
[2678, 2685, 0]"]
+ 478[Solid2d]
end
- subgraph path646 [Path]
- 646["Path
[1993, 2055, 0]"]
- 647["Segment
[2063, 2114, 0]"]
- 648["Segment
[2122, 2196, 0]"]
- 649["Segment
[2204, 2243, 0]"]
- 650["Segment
[2251, 2358, 0]"]
- 651["Segment
[2366, 2405, 0]"]
- 652["Segment
[2413, 2530, 0]"]
- 653["Segment
[2538, 2577, 0]"]
- 654["Segment
[2585, 2670, 0]"]
- 655["Segment
[2678, 2685, 0]"]
- 656[Solid2d]
+ subgraph path498 [Path]
+ 498["Path
[1993, 2055, 0]"]
+ 499["Segment
[2063, 2114, 0]"]
+ 500["Segment
[2122, 2196, 0]"]
+ 501["Segment
[2204, 2243, 0]"]
+ 502["Segment
[2251, 2358, 0]"]
+ 503["Segment
[2366, 2405, 0]"]
+ 504["Segment
[2413, 2530, 0]"]
+ 505["Segment
[2538, 2577, 0]"]
+ 506["Segment
[2585, 2670, 0]"]
+ 507["Segment
[2678, 2685, 0]"]
+ 508[Solid2d]
end
- subgraph path685 [Path]
- 685["Path
[1993, 2055, 0]"]
- 686["Segment
[2063, 2114, 0]"]
- 687["Segment
[2122, 2196, 0]"]
- 688["Segment
[2204, 2243, 0]"]
- 689["Segment
[2251, 2358, 0]"]
- 690["Segment
[2366, 2405, 0]"]
- 691["Segment
[2413, 2530, 0]"]
- 692["Segment
[2538, 2577, 0]"]
- 693["Segment
[2585, 2670, 0]"]
- 694["Segment
[2678, 2685, 0]"]
+ subgraph path528 [Path]
+ 528["Path
[1993, 2055, 0]"]
+ 529["Segment
[2063, 2114, 0]"]
+ 530["Segment
[2122, 2196, 0]"]
+ 531["Segment
[2204, 2243, 0]"]
+ 532["Segment
[2251, 2358, 0]"]
+ 533["Segment
[2366, 2405, 0]"]
+ 534["Segment
[2413, 2530, 0]"]
+ 535["Segment
[2538, 2577, 0]"]
+ 536["Segment
[2585, 2670, 0]"]
+ 537["Segment
[2678, 2685, 0]"]
+ 538[Solid2d]
+ end
+ subgraph path558 [Path]
+ 558["Path
[1993, 2055, 0]"]
+ 559["Segment
[2063, 2114, 0]"]
+ 560["Segment
[2122, 2196, 0]"]
+ 561["Segment
[2204, 2243, 0]"]
+ 562["Segment
[2251, 2358, 0]"]
+ 563["Segment
[2366, 2405, 0]"]
+ 564["Segment
[2413, 2530, 0]"]
+ 565["Segment
[2538, 2577, 0]"]
+ 566["Segment
[2585, 2670, 0]"]
+ 567["Segment
[2678, 2685, 0]"]
+ 568[Solid2d]
+ end
+ subgraph path588 [Path]
+ 588["Path
[1993, 2055, 0]"]
+ 589["Segment
[2063, 2114, 0]"]
+ 590["Segment
[2122, 2196, 0]"]
+ 591["Segment
[2204, 2243, 0]"]
+ 592["Segment
[2251, 2358, 0]"]
+ 593["Segment
[2366, 2405, 0]"]
+ 594["Segment
[2413, 2530, 0]"]
+ 595["Segment
[2538, 2577, 0]"]
+ 596["Segment
[2585, 2670, 0]"]
+ 597["Segment
[2678, 2685, 0]"]
+ 598[Solid2d]
+ end
+ subgraph path618 [Path]
+ 618["Path
[1993, 2055, 0]"]
+ 619["Segment
[2063, 2114, 0]"]
+ 620["Segment
[2122, 2196, 0]"]
+ 621["Segment
[2204, 2243, 0]"]
+ 622["Segment
[2251, 2358, 0]"]
+ 623["Segment
[2366, 2405, 0]"]
+ 624["Segment
[2413, 2530, 0]"]
+ 625["Segment
[2538, 2577, 0]"]
+ 626["Segment
[2585, 2670, 0]"]
+ 627["Segment
[2678, 2685, 0]"]
+ 628[Solid2d]
+ end
+ subgraph path648 [Path]
+ 648["Path
[1993, 2055, 0]"]
+ 649["Segment
[2063, 2114, 0]"]
+ 650["Segment
[2122, 2196, 0]"]
+ 651["Segment
[2204, 2243, 0]"]
+ 652["Segment
[2251, 2358, 0]"]
+ 653["Segment
[2366, 2405, 0]"]
+ 654["Segment
[2413, 2530, 0]"]
+ 655["Segment
[2538, 2577, 0]"]
+ 656["Segment
[2585, 2670, 0]"]
+ 657["Segment
[2678, 2685, 0]"]
+ 658[Solid2d]
+ end
+ subgraph path678 [Path]
+ 678["Path
[4917, 5004, 0]"]
+ 679["Segment
[5012, 5041, 0]"]
+ 680["Segment
[5049, 5077, 0]"]
+ 681["Segment
[5085, 5163, 0]"]
+ 682["Segment
[5171, 5218, 0]"]
+ 683["Segment
[5226, 5254, 0]"]
+ 684["Segment
[5262, 5291, 0]"]
+ 685["Segment
[5299, 5328, 0]"]
+ 686["Segment
[5336, 5402, 0]"]
+ 687["Segment
[5410, 5438, 0]"]
+ 688["Segment
[5446, 5475, 0]"]
+ 689["Segment
[5483, 5545, 0]"]
+ 690["Segment
[5553, 5581, 0]"]
+ 691["Segment
[5589, 5623, 0]"]
+ 692["Segment
[5631, 5661, 0]"]
+ 693["Segment
[5669, 5737, 0]"]
+ 694["Segment
[5745, 5752, 0]"]
695[Solid2d]
end
- subgraph path724 [Path]
- 724["Path
[1993, 2055, 0]"]
- 725["Segment
[2063, 2114, 0]"]
- 726["Segment
[2122, 2196, 0]"]
- 727["Segment
[2204, 2243, 0]"]
- 728["Segment
[2251, 2358, 0]"]
- 729["Segment
[2366, 2405, 0]"]
- 730["Segment
[2413, 2530, 0]"]
- 731["Segment
[2538, 2577, 0]"]
- 732["Segment
[2585, 2670, 0]"]
- 733["Segment
[2678, 2685, 0]"]
- 734[Solid2d]
+ subgraph path731 [Path]
+ 731["Path
[5952, 6050, 0]"]
+ 732["Segment
[6058, 6136, 0]"]
+ 733["Segment
[6144, 6191, 0]"]
+ 734["Segment
[6199, 6279, 0]"]
+ 735["Segment
[6287, 6294, 0]"]
+ 736[Solid2d]
end
- subgraph path763 [Path]
- 763["Path
[1993, 2055, 0]"]
- 764["Segment
[2063, 2114, 0]"]
- 765["Segment
[2122, 2196, 0]"]
- 766["Segment
[2204, 2243, 0]"]
- 767["Segment
[2251, 2358, 0]"]
- 768["Segment
[2366, 2405, 0]"]
- 769["Segment
[2413, 2530, 0]"]
- 770["Segment
[2538, 2577, 0]"]
- 771["Segment
[2585, 2670, 0]"]
- 772["Segment
[2678, 2685, 0]"]
- 773[Solid2d]
+ subgraph path748 [Path]
+ 748["Path
[6402, 6499, 0]"]
+ 749["Segment
[6507, 6585, 0]"]
+ 750["Segment
[6593, 6641, 0]"]
+ 751["Segment
[6649, 6729, 0]"]
+ 752["Segment
[6737, 6744, 0]"]
+ 753[Solid2d]
end
- subgraph path802 [Path]
- 802["Path
[1993, 2055, 0]"]
- 803["Segment
[2063, 2114, 0]"]
- 804["Segment
[2122, 2196, 0]"]
- 805["Segment
[2204, 2243, 0]"]
- 806["Segment
[2251, 2358, 0]"]
- 807["Segment
[2366, 2405, 0]"]
- 808["Segment
[2413, 2530, 0]"]
- 809["Segment
[2538, 2577, 0]"]
- 810["Segment
[2585, 2670, 0]"]
- 811["Segment
[2678, 2685, 0]"]
- 812[Solid2d]
+ subgraph path765 [Path]
+ 765["Path
[5952, 6050, 0]"]
+ 766["Segment
[6058, 6136, 0]"]
+ 767["Segment
[6144, 6191, 0]"]
+ 768["Segment
[6199, 6279, 0]"]
+ 769["Segment
[6287, 6294, 0]"]
+ 770[Solid2d]
end
- subgraph path841 [Path]
- 841["Path
[1993, 2055, 0]"]
- 842["Segment
[2063, 2114, 0]"]
- 843["Segment
[2122, 2196, 0]"]
- 844["Segment
[2204, 2243, 0]"]
- 845["Segment
[2251, 2358, 0]"]
- 846["Segment
[2366, 2405, 0]"]
- 847["Segment
[2413, 2530, 0]"]
- 848["Segment
[2538, 2577, 0]"]
- 849["Segment
[2585, 2670, 0]"]
- 850["Segment
[2678, 2685, 0]"]
- 851[Solid2d]
- end
- subgraph path880 [Path]
- 880["Path
[4917, 5004, 0]"]
- 881["Segment
[5012, 5041, 0]"]
- 882["Segment
[5049, 5077, 0]"]
- 883["Segment
[5085, 5163, 0]"]
- 884["Segment
[5171, 5218, 0]"]
- 885["Segment
[5226, 5254, 0]"]
- 886["Segment
[5262, 5291, 0]"]
- 887["Segment
[5299, 5328, 0]"]
- 888["Segment
[5336, 5402, 0]"]
- 889["Segment
[5410, 5438, 0]"]
- 890["Segment
[5446, 5475, 0]"]
- 891["Segment
[5483, 5545, 0]"]
- 892["Segment
[5553, 5581, 0]"]
- 893["Segment
[5589, 5623, 0]"]
- 894["Segment
[5631, 5661, 0]"]
- 895["Segment
[5669, 5737, 0]"]
- 896["Segment
[5745, 5752, 0]"]
- 897[Solid2d]
- end
- subgraph path950 [Path]
- 950["Path
[5952, 6050, 0]"]
- 951["Segment
[6058, 6136, 0]"]
- 952["Segment
[6144, 6191, 0]"]
- 953["Segment
[6199, 6279, 0]"]
- 954["Segment
[6287, 6294, 0]"]
- 955[Solid2d]
- end
- subgraph path972 [Path]
- 972["Path
[6402, 6499, 0]"]
- 973["Segment
[6507, 6585, 0]"]
- 974["Segment
[6593, 6641, 0]"]
- 975["Segment
[6649, 6729, 0]"]
- 976["Segment
[6737, 6744, 0]"]
- 977[Solid2d]
- end
- subgraph path994 [Path]
- 994["Path
[5952, 6050, 0]"]
- 995["Segment
[6058, 6136, 0]"]
- 996["Segment
[6144, 6191, 0]"]
- 997["Segment
[6199, 6279, 0]"]
- 998["Segment
[6287, 6294, 0]"]
- 999[Solid2d]
- end
- subgraph path1016 [Path]
- 1016["Path
[6402, 6499, 0]"]
- 1017["Segment
[6507, 6585, 0]"]
- 1018["Segment
[6593, 6641, 0]"]
- 1019["Segment
[6649, 6729, 0]"]
- 1020["Segment
[6737, 6744, 0]"]
- 1021[Solid2d]
+ subgraph path782 [Path]
+ 782["Path
[6402, 6499, 0]"]
+ 783["Segment
[6507, 6585, 0]"]
+ 784["Segment
[6593, 6641, 0]"]
+ 785["Segment
[6649, 6729, 0]"]
+ 786["Segment
[6737, 6744, 0]"]
+ 787[Solid2d]
end
1["Plane
[532, 549, 0]"]
9["Sweep Extrusion
[851, 873, 0]"]
@@ -363,95 +363,84 @@ flowchart LR
14["Cap Start"]
15["Cap End"]
16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
+ 17["SweepEdge Opposite"]
18["SweepEdge Opposite"]
- 19["SweepEdge Adjacent"]
- 20["SweepEdge Opposite"]
- 21["SweepEdge Adjacent"]
- 22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
- 24["EdgeCut Fillet
[914, 1071, 0]"]
- 25["EdgeCut Fillet
[914, 1071, 0]"]
- 26["EdgeCut Fillet
[914, 1071, 0]"]
- 27["EdgeCut Fillet
[914, 1071, 0]"]
- 40["Sweep Extrusion
[1472, 1570, 0]"]
- 41[Wall]
- 42["Cap End"]
- 43["SweepEdge Opposite"]
- 44["SweepEdge Adjacent"]
- 45["Sweep Extrusion
[1472, 1570, 0]"]
- 46[Wall]
- 47["Cap End"]
- 48["SweepEdge Opposite"]
- 49["SweepEdge Adjacent"]
- 50["Sweep Extrusion
[1472, 1570, 0]"]
- 51[Wall]
- 52["Cap End"]
- 53["SweepEdge Opposite"]
- 54["SweepEdge Adjacent"]
- 55["Sweep Extrusion
[1472, 1570, 0]"]
- 56[Wall]
- 57["Cap End"]
- 58["SweepEdge Opposite"]
- 59["SweepEdge Adjacent"]
- 60["Plane
[1954, 1977, 0]"]
- 72["Sweep Extrusion
[2693, 2719, 0]"]
- 73[Wall]
- 74[Wall]
- 75[Wall]
- 76[Wall]
- 77[Wall]
- 78[Wall]
- 79[Wall]
- 80[Wall]
- 81["Cap Start"]
- 82["Cap End"]
- 83["SweepEdge Opposite"]
- 84["SweepEdge Adjacent"]
- 85["SweepEdge Opposite"]
- 86["SweepEdge Adjacent"]
- 87["SweepEdge Opposite"]
- 88["SweepEdge Adjacent"]
- 89["SweepEdge Opposite"]
- 90["SweepEdge Adjacent"]
- 91["SweepEdge Opposite"]
- 92["SweepEdge Adjacent"]
- 93["SweepEdge Opposite"]
- 94["SweepEdge Adjacent"]
- 95["SweepEdge Opposite"]
- 96["SweepEdge Adjacent"]
- 97["SweepEdge Opposite"]
- 98["SweepEdge Adjacent"]
- 99["Plane
[1954, 1977, 0]"]
- 111["Sweep Extrusion
[2693, 2719, 0]"]
- 112[Wall]
- 113[Wall]
- 114[Wall]
- 115[Wall]
- 116[Wall]
- 117[Wall]
- 118[Wall]
- 119[Wall]
- 120["Cap Start"]
- 121["Cap End"]
- 122["SweepEdge Opposite"]
- 123["SweepEdge Adjacent"]
- 124["SweepEdge Opposite"]
- 125["SweepEdge Adjacent"]
- 126["SweepEdge Opposite"]
- 127["SweepEdge Adjacent"]
- 128["SweepEdge Opposite"]
- 129["SweepEdge Adjacent"]
+ 19["EdgeCut Fillet
[914, 1071, 0]"]
+ 20["EdgeCut Fillet
[914, 1071, 0]"]
+ 21["EdgeCut Fillet
[914, 1071, 0]"]
+ 22["EdgeCut Fillet
[914, 1071, 0]"]
+ 35["Sweep Extrusion
[1472, 1570, 0]"]
+ 36[Wall]
+ 37["Cap End"]
+ 38["Sweep Extrusion
[1472, 1570, 0]"]
+ 39[Wall]
+ 40["Cap End"]
+ 41["Sweep Extrusion
[1472, 1570, 0]"]
+ 42[Wall]
+ 43["Cap End"]
+ 44["Sweep Extrusion
[1472, 1570, 0]"]
+ 45[Wall]
+ 46["Cap End"]
+ 47["Plane
[1954, 1977, 0]"]
+ 59["Sweep Extrusion
[2693, 2719, 0]"]
+ 60[Wall]
+ 61[Wall]
+ 62[Wall]
+ 63[Wall]
+ 64[Wall]
+ 65[Wall]
+ 66[Wall]
+ 67[Wall]
+ 68["Cap Start"]
+ 69["Cap End"]
+ 70["SweepEdge Opposite"]
+ 71["SweepEdge Opposite"]
+ 72["SweepEdge Opposite"]
+ 73["SweepEdge Opposite"]
+ 74["SweepEdge Opposite"]
+ 75["SweepEdge Opposite"]
+ 76["SweepEdge Opposite"]
+ 77["Plane
[1954, 1977, 0]"]
+ 89["Sweep Extrusion
[2693, 2719, 0]"]
+ 90[Wall]
+ 91[Wall]
+ 92[Wall]
+ 93[Wall]
+ 94[Wall]
+ 95[Wall]
+ 96[Wall]
+ 97[Wall]
+ 98["Cap Start"]
+ 99["Cap End"]
+ 100["SweepEdge Opposite"]
+ 101["SweepEdge Opposite"]
+ 102["SweepEdge Opposite"]
+ 103["SweepEdge Opposite"]
+ 104["SweepEdge Opposite"]
+ 105["SweepEdge Opposite"]
+ 106["SweepEdge Opposite"]
+ 107["Plane
[1954, 1977, 0]"]
+ 119["Sweep Extrusion
[2693, 2719, 0]"]
+ 120[Wall]
+ 121[Wall]
+ 122[Wall]
+ 123[Wall]
+ 124[Wall]
+ 125[Wall]
+ 126[Wall]
+ 127[Wall]
+ 128["Cap Start"]
+ 129["Cap End"]
130["SweepEdge Opposite"]
- 131["SweepEdge Adjacent"]
+ 131["SweepEdge Opposite"]
132["SweepEdge Opposite"]
- 133["SweepEdge Adjacent"]
+ 133["SweepEdge Opposite"]
134["SweepEdge Opposite"]
- 135["SweepEdge Adjacent"]
+ 135["SweepEdge Opposite"]
136["SweepEdge Opposite"]
- 137["SweepEdge Adjacent"]
- 138["Plane
[1954, 1977, 0]"]
- 150["Sweep Extrusion
[2693, 2719, 0]"]
+ 137["Plane
[1954, 1977, 0]"]
+ 149["Sweep Extrusion
[2693, 2719, 0]"]
+ 150[Wall]
151[Wall]
152[Wall]
153[Wall]
@@ -459,279 +448,246 @@ flowchart LR
155[Wall]
156[Wall]
157[Wall]
- 158[Wall]
- 159["Cap Start"]
- 160["Cap End"]
+ 158["Cap Start"]
+ 159["Cap End"]
+ 160["SweepEdge Opposite"]
161["SweepEdge Opposite"]
- 162["SweepEdge Adjacent"]
+ 162["SweepEdge Opposite"]
163["SweepEdge Opposite"]
- 164["SweepEdge Adjacent"]
+ 164["SweepEdge Opposite"]
165["SweepEdge Opposite"]
- 166["SweepEdge Adjacent"]
- 167["SweepEdge Opposite"]
- 168["SweepEdge Adjacent"]
- 169["SweepEdge Opposite"]
- 170["SweepEdge Adjacent"]
- 171["SweepEdge Opposite"]
- 172["SweepEdge Adjacent"]
- 173["SweepEdge Opposite"]
- 174["SweepEdge Adjacent"]
- 175["SweepEdge Opposite"]
- 176["SweepEdge Adjacent"]
- 177["Plane
[1954, 1977, 0]"]
- 189["Sweep Extrusion
[2693, 2719, 0]"]
- 190[Wall]
- 191[Wall]
- 192[Wall]
- 193[Wall]
- 194[Wall]
- 195[Wall]
- 196[Wall]
- 197[Wall]
- 198["Cap Start"]
- 199["Cap End"]
- 200["SweepEdge Opposite"]
- 201["SweepEdge Adjacent"]
- 202["SweepEdge Opposite"]
- 203["SweepEdge Adjacent"]
- 204["SweepEdge Opposite"]
- 205["SweepEdge Adjacent"]
- 206["SweepEdge Opposite"]
- 207["SweepEdge Adjacent"]
- 208["SweepEdge Opposite"]
- 209["SweepEdge Adjacent"]
- 210["SweepEdge Opposite"]
- 211["SweepEdge Adjacent"]
- 212["SweepEdge Opposite"]
- 213["SweepEdge Adjacent"]
- 214["SweepEdge Opposite"]
- 215["SweepEdge Adjacent"]
- 216["Plane
[1954, 1977, 0]"]
- 228["Sweep Extrusion
[2693, 2719, 0]"]
- 229[Wall]
- 230[Wall]
- 231[Wall]
- 232[Wall]
- 233[Wall]
- 234[Wall]
- 235[Wall]
- 236[Wall]
- 237["Cap Start"]
- 238["Cap End"]
- 239["SweepEdge Opposite"]
- 240["SweepEdge Adjacent"]
- 241["SweepEdge Opposite"]
- 242["SweepEdge Adjacent"]
- 243["SweepEdge Opposite"]
- 244["SweepEdge Adjacent"]
- 245["SweepEdge Opposite"]
- 246["SweepEdge Adjacent"]
- 247["SweepEdge Opposite"]
- 248["SweepEdge Adjacent"]
- 249["SweepEdge Opposite"]
- 250["SweepEdge Adjacent"]
+ 166["SweepEdge Opposite"]
+ 167["Plane
[1954, 1977, 0]"]
+ 179["Sweep Extrusion
[2693, 2719, 0]"]
+ 180[Wall]
+ 181[Wall]
+ 182[Wall]
+ 183[Wall]
+ 184[Wall]
+ 185[Wall]
+ 186[Wall]
+ 187[Wall]
+ 188["Cap Start"]
+ 189["Cap End"]
+ 190["SweepEdge Opposite"]
+ 191["SweepEdge Opposite"]
+ 192["SweepEdge Opposite"]
+ 193["SweepEdge Opposite"]
+ 194["SweepEdge Opposite"]
+ 195["SweepEdge Opposite"]
+ 196["SweepEdge Opposite"]
+ 197["Plane
[1954, 1977, 0]"]
+ 209["Sweep Extrusion
[2693, 2719, 0]"]
+ 210[Wall]
+ 211[Wall]
+ 212[Wall]
+ 213[Wall]
+ 214[Wall]
+ 215[Wall]
+ 216[Wall]
+ 217[Wall]
+ 218["Cap Start"]
+ 219["Cap End"]
+ 220["SweepEdge Opposite"]
+ 221["SweepEdge Opposite"]
+ 222["SweepEdge Opposite"]
+ 223["SweepEdge Opposite"]
+ 224["SweepEdge Opposite"]
+ 225["SweepEdge Opposite"]
+ 226["SweepEdge Opposite"]
+ 227["Plane
[1954, 1977, 0]"]
+ 239["Sweep Extrusion
[2693, 2719, 0]"]
+ 240[Wall]
+ 241[Wall]
+ 242[Wall]
+ 243[Wall]
+ 244[Wall]
+ 245[Wall]
+ 246[Wall]
+ 247[Wall]
+ 248["Cap Start"]
+ 249["Cap End"]
+ 250["SweepEdge Opposite"]
251["SweepEdge Opposite"]
- 252["SweepEdge Adjacent"]
+ 252["SweepEdge Opposite"]
253["SweepEdge Opposite"]
- 254["SweepEdge Adjacent"]
- 255["Plane
[1954, 1977, 0]"]
- 267["Sweep Extrusion
[2693, 2719, 0]"]
- 268[Wall]
- 269[Wall]
+ 254["SweepEdge Opposite"]
+ 255["SweepEdge Opposite"]
+ 256["SweepEdge Opposite"]
+ 257["Plane
[1954, 1977, 0]"]
+ 269["Sweep Extrusion
[2693, 2719, 0]"]
270[Wall]
271[Wall]
272[Wall]
273[Wall]
274[Wall]
275[Wall]
- 276["Cap Start"]
- 277["Cap End"]
- 278["SweepEdge Opposite"]
- 279["SweepEdge Adjacent"]
+ 276[Wall]
+ 277[Wall]
+ 278["Cap Start"]
+ 279["Cap End"]
280["SweepEdge Opposite"]
- 281["SweepEdge Adjacent"]
+ 281["SweepEdge Opposite"]
282["SweepEdge Opposite"]
- 283["SweepEdge Adjacent"]
+ 283["SweepEdge Opposite"]
284["SweepEdge Opposite"]
- 285["SweepEdge Adjacent"]
+ 285["SweepEdge Opposite"]
286["SweepEdge Opposite"]
- 287["SweepEdge Adjacent"]
- 288["SweepEdge Opposite"]
- 289["SweepEdge Adjacent"]
- 290["SweepEdge Opposite"]
- 291["SweepEdge Adjacent"]
- 292["SweepEdge Opposite"]
- 293["SweepEdge Adjacent"]
- 294["Plane
[1954, 1977, 0]"]
- 306["Sweep Extrusion
[2693, 2719, 0]"]
+ 287["Plane
[1954, 1977, 0]"]
+ 299["Sweep Extrusion
[2693, 2719, 0]"]
+ 300[Wall]
+ 301[Wall]
+ 302[Wall]
+ 303[Wall]
+ 304[Wall]
+ 305[Wall]
+ 306[Wall]
307[Wall]
- 308[Wall]
- 309[Wall]
- 310[Wall]
- 311[Wall]
- 312[Wall]
- 313[Wall]
- 314[Wall]
- 315["Cap Start"]
- 316["Cap End"]
- 317["SweepEdge Opposite"]
- 318["SweepEdge Adjacent"]
- 319["SweepEdge Opposite"]
- 320["SweepEdge Adjacent"]
- 321["SweepEdge Opposite"]
- 322["SweepEdge Adjacent"]
- 323["SweepEdge Opposite"]
- 324["SweepEdge Adjacent"]
- 325["SweepEdge Opposite"]
- 326["SweepEdge Adjacent"]
- 327["SweepEdge Opposite"]
- 328["SweepEdge Adjacent"]
- 329["SweepEdge Opposite"]
- 330["SweepEdge Adjacent"]
- 331["SweepEdge Opposite"]
- 332["SweepEdge Adjacent"]
- 333["Plane
[1954, 1977, 0]"]
- 345["Sweep Extrusion
[2693, 2719, 0]"]
- 346[Wall]
- 347[Wall]
- 348[Wall]
- 349[Wall]
- 350[Wall]
- 351[Wall]
- 352[Wall]
- 353[Wall]
- 354["Cap Start"]
- 355["Cap End"]
- 356["SweepEdge Opposite"]
- 357["SweepEdge Adjacent"]
- 358["SweepEdge Opposite"]
- 359["SweepEdge Adjacent"]
- 360["SweepEdge Opposite"]
- 361["SweepEdge Adjacent"]
- 362["SweepEdge Opposite"]
- 363["SweepEdge Adjacent"]
- 364["SweepEdge Opposite"]
- 365["SweepEdge Adjacent"]
- 366["SweepEdge Opposite"]
- 367["SweepEdge Adjacent"]
- 368["SweepEdge Opposite"]
- 369["SweepEdge Adjacent"]
+ 308["Cap Start"]
+ 309["Cap End"]
+ 310["SweepEdge Opposite"]
+ 311["SweepEdge Opposite"]
+ 312["SweepEdge Opposite"]
+ 313["SweepEdge Opposite"]
+ 314["SweepEdge Opposite"]
+ 315["SweepEdge Opposite"]
+ 316["SweepEdge Opposite"]
+ 317["Plane
[1954, 1977, 0]"]
+ 329["Sweep Extrusion
[2693, 2719, 0]"]
+ 330[Wall]
+ 331[Wall]
+ 332[Wall]
+ 333[Wall]
+ 334[Wall]
+ 335[Wall]
+ 336[Wall]
+ 337[Wall]
+ 338["Cap Start"]
+ 339["Cap End"]
+ 340["SweepEdge Opposite"]
+ 341["SweepEdge Opposite"]
+ 342["SweepEdge Opposite"]
+ 343["SweepEdge Opposite"]
+ 344["SweepEdge Opposite"]
+ 345["SweepEdge Opposite"]
+ 346["SweepEdge Opposite"]
+ 347["Plane
[1954, 1977, 0]"]
+ 359["Sweep Extrusion
[2693, 2719, 0]"]
+ 360[Wall]
+ 361[Wall]
+ 362[Wall]
+ 363[Wall]
+ 364[Wall]
+ 365[Wall]
+ 366[Wall]
+ 367[Wall]
+ 368["Cap Start"]
+ 369["Cap End"]
370["SweepEdge Opposite"]
- 371["SweepEdge Adjacent"]
- 372["Plane
[1954, 1977, 0]"]
- 384["Sweep Extrusion
[2693, 2719, 0]"]
- 385[Wall]
- 386[Wall]
- 387[Wall]
- 388[Wall]
- 389[Wall]
+ 371["SweepEdge Opposite"]
+ 372["SweepEdge Opposite"]
+ 373["SweepEdge Opposite"]
+ 374["SweepEdge Opposite"]
+ 375["SweepEdge Opposite"]
+ 376["SweepEdge Opposite"]
+ 377["Plane
[1954, 1977, 0]"]
+ 389["Sweep Extrusion
[2693, 2719, 0]"]
390[Wall]
391[Wall]
392[Wall]
- 393["Cap Start"]
- 394["Cap End"]
- 395["SweepEdge Opposite"]
- 396["SweepEdge Adjacent"]
- 397["SweepEdge Opposite"]
- 398["SweepEdge Adjacent"]
- 399["SweepEdge Opposite"]
- 400["SweepEdge Adjacent"]
+ 393[Wall]
+ 394[Wall]
+ 395[Wall]
+ 396[Wall]
+ 397[Wall]
+ 398["Cap Start"]
+ 399["Cap End"]
+ 400["SweepEdge Opposite"]
401["SweepEdge Opposite"]
- 402["SweepEdge Adjacent"]
+ 402["SweepEdge Opposite"]
403["SweepEdge Opposite"]
- 404["SweepEdge Adjacent"]
+ 404["SweepEdge Opposite"]
405["SweepEdge Opposite"]
- 406["SweepEdge Adjacent"]
- 407["SweepEdge Opposite"]
- 408["SweepEdge Adjacent"]
- 409["SweepEdge Opposite"]
- 410["SweepEdge Adjacent"]
- 411["Plane
[1954, 1977, 0]"]
- 423["Sweep Extrusion
[2693, 2719, 0]"]
+ 406["SweepEdge Opposite"]
+ 407["Plane
[1954, 1977, 0]"]
+ 419["Sweep Extrusion
[2693, 2719, 0]"]
+ 420[Wall]
+ 421[Wall]
+ 422[Wall]
+ 423[Wall]
424[Wall]
425[Wall]
426[Wall]
427[Wall]
- 428[Wall]
- 429[Wall]
- 430[Wall]
- 431[Wall]
- 432["Cap Start"]
- 433["Cap End"]
+ 428["Cap Start"]
+ 429["Cap End"]
+ 430["SweepEdge Opposite"]
+ 431["SweepEdge Opposite"]
+ 432["SweepEdge Opposite"]
+ 433["SweepEdge Opposite"]
434["SweepEdge Opposite"]
- 435["SweepEdge Adjacent"]
+ 435["SweepEdge Opposite"]
436["SweepEdge Opposite"]
- 437["SweepEdge Adjacent"]
- 438["SweepEdge Opposite"]
- 439["SweepEdge Adjacent"]
- 440["SweepEdge Opposite"]
- 441["SweepEdge Adjacent"]
- 442["SweepEdge Opposite"]
- 443["SweepEdge Adjacent"]
- 444["SweepEdge Opposite"]
- 445["SweepEdge Adjacent"]
- 446["SweepEdge Opposite"]
- 447["SweepEdge Adjacent"]
- 448["SweepEdge Opposite"]
- 449["SweepEdge Adjacent"]
- 450["Plane
[1954, 1977, 0]"]
- 462["Sweep Extrusion
[2693, 2719, 0]"]
- 463[Wall]
- 464[Wall]
- 465[Wall]
- 466[Wall]
- 467[Wall]
- 468[Wall]
- 469[Wall]
- 470[Wall]
- 471["Cap Start"]
- 472["Cap End"]
- 473["SweepEdge Opposite"]
- 474["SweepEdge Adjacent"]
- 475["SweepEdge Opposite"]
- 476["SweepEdge Adjacent"]
- 477["SweepEdge Opposite"]
- 478["SweepEdge Adjacent"]
- 479["SweepEdge Opposite"]
- 480["SweepEdge Adjacent"]
- 481["SweepEdge Opposite"]
- 482["SweepEdge Adjacent"]
- 483["SweepEdge Opposite"]
- 484["SweepEdge Adjacent"]
- 485["SweepEdge Opposite"]
- 486["SweepEdge Adjacent"]
- 487["SweepEdge Opposite"]
- 488["SweepEdge Adjacent"]
- 489["Plane
[1954, 1977, 0]"]
- 501["Sweep Extrusion
[2693, 2719, 0]"]
- 502[Wall]
- 503[Wall]
- 504[Wall]
- 505[Wall]
- 506[Wall]
- 507[Wall]
- 508[Wall]
- 509[Wall]
- 510["Cap Start"]
- 511["Cap End"]
- 512["SweepEdge Opposite"]
- 513["SweepEdge Adjacent"]
- 514["SweepEdge Opposite"]
- 515["SweepEdge Adjacent"]
- 516["SweepEdge Opposite"]
- 517["SweepEdge Adjacent"]
- 518["SweepEdge Opposite"]
- 519["SweepEdge Adjacent"]
+ 437["Plane
[1954, 1977, 0]"]
+ 449["Sweep Extrusion
[2693, 2719, 0]"]
+ 450[Wall]
+ 451[Wall]
+ 452[Wall]
+ 453[Wall]
+ 454[Wall]
+ 455[Wall]
+ 456[Wall]
+ 457[Wall]
+ 458["Cap Start"]
+ 459["Cap End"]
+ 460["SweepEdge Opposite"]
+ 461["SweepEdge Opposite"]
+ 462["SweepEdge Opposite"]
+ 463["SweepEdge Opposite"]
+ 464["SweepEdge Opposite"]
+ 465["SweepEdge Opposite"]
+ 466["SweepEdge Opposite"]
+ 467["Plane
[1954, 1977, 0]"]
+ 479["Sweep Extrusion
[2693, 2719, 0]"]
+ 480[Wall]
+ 481[Wall]
+ 482[Wall]
+ 483[Wall]
+ 484[Wall]
+ 485[Wall]
+ 486[Wall]
+ 487[Wall]
+ 488["Cap Start"]
+ 489["Cap End"]
+ 490["SweepEdge Opposite"]
+ 491["SweepEdge Opposite"]
+ 492["SweepEdge Opposite"]
+ 493["SweepEdge Opposite"]
+ 494["SweepEdge Opposite"]
+ 495["SweepEdge Opposite"]
+ 496["SweepEdge Opposite"]
+ 497["Plane
[1954, 1977, 0]"]
+ 509["Sweep Extrusion
[2693, 2719, 0]"]
+ 510[Wall]
+ 511[Wall]
+ 512[Wall]
+ 513[Wall]
+ 514[Wall]
+ 515[Wall]
+ 516[Wall]
+ 517[Wall]
+ 518["Cap Start"]
+ 519["Cap End"]
520["SweepEdge Opposite"]
- 521["SweepEdge Adjacent"]
+ 521["SweepEdge Opposite"]
522["SweepEdge Opposite"]
- 523["SweepEdge Adjacent"]
+ 523["SweepEdge Opposite"]
524["SweepEdge Opposite"]
- 525["SweepEdge Adjacent"]
+ 525["SweepEdge Opposite"]
526["SweepEdge Opposite"]
- 527["SweepEdge Adjacent"]
- 528["Plane
[1954, 1977, 0]"]
- 540["Sweep Extrusion
[2693, 2719, 0]"]
+ 527["Plane
[1954, 1977, 0]"]
+ 539["Sweep Extrusion
[2693, 2719, 0]"]
+ 540[Wall]
541[Wall]
542[Wall]
543[Wall]
@@ -739,111 +695,93 @@ flowchart LR
545[Wall]
546[Wall]
547[Wall]
- 548[Wall]
- 549["Cap Start"]
- 550["Cap End"]
+ 548["Cap Start"]
+ 549["Cap End"]
+ 550["SweepEdge Opposite"]
551["SweepEdge Opposite"]
- 552["SweepEdge Adjacent"]
+ 552["SweepEdge Opposite"]
553["SweepEdge Opposite"]
- 554["SweepEdge Adjacent"]
+ 554["SweepEdge Opposite"]
555["SweepEdge Opposite"]
- 556["SweepEdge Adjacent"]
- 557["SweepEdge Opposite"]
- 558["SweepEdge Adjacent"]
- 559["SweepEdge Opposite"]
- 560["SweepEdge Adjacent"]
- 561["SweepEdge Opposite"]
- 562["SweepEdge Adjacent"]
- 563["SweepEdge Opposite"]
- 564["SweepEdge Adjacent"]
- 565["SweepEdge Opposite"]
- 566["SweepEdge Adjacent"]
- 567["Plane
[1954, 1977, 0]"]
- 579["Sweep Extrusion
[2693, 2719, 0]"]
- 580[Wall]
- 581[Wall]
- 582[Wall]
- 583[Wall]
- 584[Wall]
- 585[Wall]
- 586[Wall]
- 587[Wall]
- 588["Cap Start"]
- 589["Cap End"]
- 590["SweepEdge Opposite"]
- 591["SweepEdge Adjacent"]
- 592["SweepEdge Opposite"]
- 593["SweepEdge Adjacent"]
- 594["SweepEdge Opposite"]
- 595["SweepEdge Adjacent"]
- 596["SweepEdge Opposite"]
- 597["SweepEdge Adjacent"]
- 598["SweepEdge Opposite"]
- 599["SweepEdge Adjacent"]
- 600["SweepEdge Opposite"]
- 601["SweepEdge Adjacent"]
- 602["SweepEdge Opposite"]
- 603["SweepEdge Adjacent"]
- 604["SweepEdge Opposite"]
- 605["SweepEdge Adjacent"]
- 606["Plane
[1954, 1977, 0]"]
- 618["Sweep Extrusion
[2693, 2719, 0]"]
- 619[Wall]
- 620[Wall]
- 621[Wall]
- 622[Wall]
- 623[Wall]
- 624[Wall]
- 625[Wall]
- 626[Wall]
- 627["Cap Start"]
- 628["Cap End"]
- 629["SweepEdge Opposite"]
- 630["SweepEdge Adjacent"]
- 631["SweepEdge Opposite"]
- 632["SweepEdge Adjacent"]
- 633["SweepEdge Opposite"]
- 634["SweepEdge Adjacent"]
- 635["SweepEdge Opposite"]
- 636["SweepEdge Adjacent"]
- 637["SweepEdge Opposite"]
- 638["SweepEdge Adjacent"]
- 639["SweepEdge Opposite"]
- 640["SweepEdge Adjacent"]
+ 556["SweepEdge Opposite"]
+ 557["Plane
[1954, 1977, 0]"]
+ 569["Sweep Extrusion
[2693, 2719, 0]"]
+ 570[Wall]
+ 571[Wall]
+ 572[Wall]
+ 573[Wall]
+ 574[Wall]
+ 575[Wall]
+ 576[Wall]
+ 577[Wall]
+ 578["Cap Start"]
+ 579["Cap End"]
+ 580["SweepEdge Opposite"]
+ 581["SweepEdge Opposite"]
+ 582["SweepEdge Opposite"]
+ 583["SweepEdge Opposite"]
+ 584["SweepEdge Opposite"]
+ 585["SweepEdge Opposite"]
+ 586["SweepEdge Opposite"]
+ 587["Plane
[1954, 1977, 0]"]
+ 599["Sweep Extrusion
[2693, 2719, 0]"]
+ 600[Wall]
+ 601[Wall]
+ 602[Wall]
+ 603[Wall]
+ 604[Wall]
+ 605[Wall]
+ 606[Wall]
+ 607[Wall]
+ 608["Cap Start"]
+ 609["Cap End"]
+ 610["SweepEdge Opposite"]
+ 611["SweepEdge Opposite"]
+ 612["SweepEdge Opposite"]
+ 613["SweepEdge Opposite"]
+ 614["SweepEdge Opposite"]
+ 615["SweepEdge Opposite"]
+ 616["SweepEdge Opposite"]
+ 617["Plane
[1954, 1977, 0]"]
+ 629["Sweep Extrusion
[2693, 2719, 0]"]
+ 630[Wall]
+ 631[Wall]
+ 632[Wall]
+ 633[Wall]
+ 634[Wall]
+ 635[Wall]
+ 636[Wall]
+ 637[Wall]
+ 638["Cap Start"]
+ 639["Cap End"]
+ 640["SweepEdge Opposite"]
641["SweepEdge Opposite"]
- 642["SweepEdge Adjacent"]
+ 642["SweepEdge Opposite"]
643["SweepEdge Opposite"]
- 644["SweepEdge Adjacent"]
- 645["Plane
[1954, 1977, 0]"]
- 657["Sweep Extrusion
[2693, 2719, 0]"]
- 658[Wall]
- 659[Wall]
+ 644["SweepEdge Opposite"]
+ 645["SweepEdge Opposite"]
+ 646["SweepEdge Opposite"]
+ 647["Plane
[1954, 1977, 0]"]
+ 659["Sweep Extrusion
[2693, 2719, 0]"]
660[Wall]
661[Wall]
662[Wall]
663[Wall]
664[Wall]
665[Wall]
- 666["Cap Start"]
- 667["Cap End"]
- 668["SweepEdge Opposite"]
- 669["SweepEdge Adjacent"]
+ 666[Wall]
+ 667[Wall]
+ 668["Cap Start"]
+ 669["Cap End"]
670["SweepEdge Opposite"]
- 671["SweepEdge Adjacent"]
+ 671["SweepEdge Opposite"]
672["SweepEdge Opposite"]
- 673["SweepEdge Adjacent"]
+ 673["SweepEdge Opposite"]
674["SweepEdge Opposite"]
- 675["SweepEdge Adjacent"]
+ 675["SweepEdge Opposite"]
676["SweepEdge Opposite"]
- 677["SweepEdge Adjacent"]
- 678["SweepEdge Opposite"]
- 679["SweepEdge Adjacent"]
- 680["SweepEdge Opposite"]
- 681["SweepEdge Adjacent"]
- 682["SweepEdge Opposite"]
- 683["SweepEdge Adjacent"]
- 684["Plane
[1954, 1977, 0]"]
- 696["Sweep Extrusion
[2693, 2719, 0]"]
+ 677["Plane
[4886, 4909, 0]"]
+ 696["Sweep Extrusion
[5760, 5784, 0]"]
697[Wall]
698[Wall]
699[Wall]
@@ -852,253 +790,76 @@ flowchart LR
702[Wall]
703[Wall]
704[Wall]
- 705["Cap Start"]
- 706["Cap End"]
- 707["SweepEdge Opposite"]
- 708["SweepEdge Adjacent"]
- 709["SweepEdge Opposite"]
- 710["SweepEdge Adjacent"]
- 711["SweepEdge Opposite"]
- 712["SweepEdge Adjacent"]
- 713["SweepEdge Opposite"]
- 714["SweepEdge Adjacent"]
+ 705[Wall]
+ 706[Wall]
+ 707[Wall]
+ 708[Wall]
+ 709[Wall]
+ 710[Wall]
+ 711[Wall]
+ 712[Wall]
+ 713["Cap Start"]
+ 714["Cap End"]
715["SweepEdge Opposite"]
- 716["SweepEdge Adjacent"]
+ 716["SweepEdge Opposite"]
717["SweepEdge Opposite"]
- 718["SweepEdge Adjacent"]
+ 718["SweepEdge Opposite"]
719["SweepEdge Opposite"]
- 720["SweepEdge Adjacent"]
+ 720["SweepEdge Opposite"]
721["SweepEdge Opposite"]
- 722["SweepEdge Adjacent"]
- 723["Plane
[1954, 1977, 0]"]
- 735["Sweep Extrusion
[2693, 2719, 0]"]
- 736[Wall]
- 737[Wall]
+ 722["SweepEdge Opposite"]
+ 723["SweepEdge Opposite"]
+ 724["SweepEdge Opposite"]
+ 725["SweepEdge Opposite"]
+ 726["SweepEdge Opposite"]
+ 727["SweepEdge Opposite"]
+ 728["SweepEdge Opposite"]
+ 729["SweepEdge Opposite"]
+ 730["Plane
[5921, 5944, 0]"]
+ 737["Sweep Extrusion
[6302, 6326, 0]"]
738[Wall]
739[Wall]
740[Wall]
741[Wall]
- 742[Wall]
- 743[Wall]
- 744["Cap Start"]
- 745["Cap End"]
+ 742["Cap Start"]
+ 743["Cap End"]
+ 744["SweepEdge Opposite"]
+ 745["SweepEdge Opposite"]
746["SweepEdge Opposite"]
- 747["SweepEdge Adjacent"]
- 748["SweepEdge Opposite"]
- 749["SweepEdge Adjacent"]
- 750["SweepEdge Opposite"]
- 751["SweepEdge Adjacent"]
- 752["SweepEdge Opposite"]
- 753["SweepEdge Adjacent"]
- 754["SweepEdge Opposite"]
- 755["SweepEdge Adjacent"]
- 756["SweepEdge Opposite"]
- 757["SweepEdge Adjacent"]
- 758["SweepEdge Opposite"]
- 759["SweepEdge Adjacent"]
- 760["SweepEdge Opposite"]
- 761["SweepEdge Adjacent"]
- 762["Plane
[1954, 1977, 0]"]
- 774["Sweep Extrusion
[2693, 2719, 0]"]
+ 747["Plane
[6371, 6394, 0]"]
+ 754["Sweep Extrusion
[6752, 6776, 0]"]
+ 755[Wall]
+ 756[Wall]
+ 757[Wall]
+ 758[Wall]
+ 759["Cap Start"]
+ 760["Cap End"]
+ 761["SweepEdge Opposite"]
+ 762["SweepEdge Opposite"]
+ 763["SweepEdge Opposite"]
+ 764["Plane
[5921, 5944, 0]"]
+ 771["Sweep Extrusion
[6302, 6326, 0]"]
+ 772[Wall]
+ 773[Wall]
+ 774[Wall]
775[Wall]
- 776[Wall]
- 777[Wall]
- 778[Wall]
- 779[Wall]
- 780[Wall]
- 781[Wall]
- 782[Wall]
- 783["Cap Start"]
- 784["Cap End"]
- 785["SweepEdge Opposite"]
- 786["SweepEdge Adjacent"]
- 787["SweepEdge Opposite"]
- 788["SweepEdge Adjacent"]
- 789["SweepEdge Opposite"]
- 790["SweepEdge Adjacent"]
- 791["SweepEdge Opposite"]
- 792["SweepEdge Adjacent"]
- 793["SweepEdge Opposite"]
- 794["SweepEdge Adjacent"]
+ 776["Cap Start"]
+ 777["Cap End"]
+ 778["SweepEdge Opposite"]
+ 779["SweepEdge Opposite"]
+ 780["SweepEdge Opposite"]
+ 781["Plane
[6371, 6394, 0]"]
+ 788["Sweep Extrusion
[6752, 6776, 0]"]
+ 789[Wall]
+ 790[Wall]
+ 791[Wall]
+ 792[Wall]
+ 793["Cap Start"]
+ 794["Cap End"]
795["SweepEdge Opposite"]
- 796["SweepEdge Adjacent"]
+ 796["SweepEdge Opposite"]
797["SweepEdge Opposite"]
- 798["SweepEdge Adjacent"]
- 799["SweepEdge Opposite"]
- 800["SweepEdge Adjacent"]
- 801["Plane
[1954, 1977, 0]"]
- 813["Sweep Extrusion
[2693, 2719, 0]"]
- 814[Wall]
- 815[Wall]
- 816[Wall]
- 817[Wall]
- 818[Wall]
- 819[Wall]
- 820[Wall]
- 821[Wall]
- 822["Cap Start"]
- 823["Cap End"]
- 824["SweepEdge Opposite"]
- 825["SweepEdge Adjacent"]
- 826["SweepEdge Opposite"]
- 827["SweepEdge Adjacent"]
- 828["SweepEdge Opposite"]
- 829["SweepEdge Adjacent"]
- 830["SweepEdge Opposite"]
- 831["SweepEdge Adjacent"]
- 832["SweepEdge Opposite"]
- 833["SweepEdge Adjacent"]
- 834["SweepEdge Opposite"]
- 835["SweepEdge Adjacent"]
- 836["SweepEdge Opposite"]
- 837["SweepEdge Adjacent"]
- 838["SweepEdge Opposite"]
- 839["SweepEdge Adjacent"]
- 840["Plane
[1954, 1977, 0]"]
- 852["Sweep Extrusion
[2693, 2719, 0]"]
- 853[Wall]
- 854[Wall]
- 855[Wall]
- 856[Wall]
- 857[Wall]
- 858[Wall]
- 859[Wall]
- 860[Wall]
- 861["Cap Start"]
- 862["Cap End"]
- 863["SweepEdge Opposite"]
- 864["SweepEdge Adjacent"]
- 865["SweepEdge Opposite"]
- 866["SweepEdge Adjacent"]
- 867["SweepEdge Opposite"]
- 868["SweepEdge Adjacent"]
- 869["SweepEdge Opposite"]
- 870["SweepEdge Adjacent"]
- 871["SweepEdge Opposite"]
- 872["SweepEdge Adjacent"]
- 873["SweepEdge Opposite"]
- 874["SweepEdge Adjacent"]
- 875["SweepEdge Opposite"]
- 876["SweepEdge Adjacent"]
- 877["SweepEdge Opposite"]
- 878["SweepEdge Adjacent"]
- 879["Plane
[4886, 4909, 0]"]
- 898["Sweep Extrusion
[5760, 5784, 0]"]
- 899[Wall]
- 900[Wall]
- 901[Wall]
- 902[Wall]
- 903[Wall]
- 904[Wall]
- 905[Wall]
- 906[Wall]
- 907[Wall]
- 908[Wall]
- 909[Wall]
- 910[Wall]
- 911[Wall]
- 912[Wall]
- 913[Wall]
- 914[Wall]
- 915["Cap Start"]
- 916["Cap End"]
- 917["SweepEdge Opposite"]
- 918["SweepEdge Adjacent"]
- 919["SweepEdge Opposite"]
- 920["SweepEdge Adjacent"]
- 921["SweepEdge Opposite"]
- 922["SweepEdge Adjacent"]
- 923["SweepEdge Opposite"]
- 924["SweepEdge Adjacent"]
- 925["SweepEdge Opposite"]
- 926["SweepEdge Adjacent"]
- 927["SweepEdge Opposite"]
- 928["SweepEdge Adjacent"]
- 929["SweepEdge Opposite"]
- 930["SweepEdge Adjacent"]
- 931["SweepEdge Opposite"]
- 932["SweepEdge Adjacent"]
- 933["SweepEdge Opposite"]
- 934["SweepEdge Adjacent"]
- 935["SweepEdge Opposite"]
- 936["SweepEdge Adjacent"]
- 937["SweepEdge Opposite"]
- 938["SweepEdge Adjacent"]
- 939["SweepEdge Opposite"]
- 940["SweepEdge Adjacent"]
- 941["SweepEdge Opposite"]
- 942["SweepEdge Adjacent"]
- 943["SweepEdge Opposite"]
- 944["SweepEdge Adjacent"]
- 945["SweepEdge Opposite"]
- 946["SweepEdge Adjacent"]
- 947["SweepEdge Opposite"]
- 948["SweepEdge Adjacent"]
- 949["Plane
[5921, 5944, 0]"]
- 956["Sweep Extrusion
[6302, 6326, 0]"]
- 957[Wall]
- 958[Wall]
- 959[Wall]
- 960[Wall]
- 961["Cap Start"]
- 962["Cap End"]
- 963["SweepEdge Opposite"]
- 964["SweepEdge Adjacent"]
- 965["SweepEdge Opposite"]
- 966["SweepEdge Adjacent"]
- 967["SweepEdge Opposite"]
- 968["SweepEdge Adjacent"]
- 969["SweepEdge Opposite"]
- 970["SweepEdge Adjacent"]
- 971["Plane
[6371, 6394, 0]"]
- 978["Sweep Extrusion
[6752, 6776, 0]"]
- 979[Wall]
- 980[Wall]
- 981[Wall]
- 982[Wall]
- 983["Cap Start"]
- 984["Cap End"]
- 985["SweepEdge Opposite"]
- 986["SweepEdge Adjacent"]
- 987["SweepEdge Opposite"]
- 988["SweepEdge Adjacent"]
- 989["SweepEdge Opposite"]
- 990["SweepEdge Adjacent"]
- 991["SweepEdge Opposite"]
- 992["SweepEdge Adjacent"]
- 993["Plane
[5921, 5944, 0]"]
- 1000["Sweep Extrusion
[6302, 6326, 0]"]
- 1001[Wall]
- 1002[Wall]
- 1003[Wall]
- 1004[Wall]
- 1005["Cap Start"]
- 1006["Cap End"]
- 1007["SweepEdge Opposite"]
- 1008["SweepEdge Adjacent"]
- 1009["SweepEdge Opposite"]
- 1010["SweepEdge Adjacent"]
- 1011["SweepEdge Opposite"]
- 1012["SweepEdge Adjacent"]
- 1013["SweepEdge Opposite"]
- 1014["SweepEdge Adjacent"]
- 1015["Plane
[6371, 6394, 0]"]
- 1022["Sweep Extrusion
[6752, 6776, 0]"]
- 1023[Wall]
- 1024[Wall]
- 1025[Wall]
- 1026[Wall]
- 1027["Cap Start"]
- 1028["Cap End"]
- 1029["SweepEdge Opposite"]
- 1030["SweepEdge Adjacent"]
- 1031["SweepEdge Opposite"]
- 1032["SweepEdge Adjacent"]
- 1033["SweepEdge Opposite"]
- 1034["SweepEdge Adjacent"]
- 1035["SweepEdge Opposite"]
- 1036["SweepEdge Adjacent"]
- 1037["StartSketchOnFace
[1151, 1189, 0]"]
+ 798["StartSketchOnFace
[1151, 1189, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -1108,19 +869,18 @@ flowchart LR
2 ---- 9
2 --- 8
3 --- 13
- 3 --- 22
- 3 --- 23
- 3 --- 26
+ 3 --- 18
+ 3 --- 21
+ 3 x--> 14
4 --- 12
- 4 --- 20
- 4 --- 21
+ 4 --- 17
+ 4 x--> 14
5 --- 11
- 5 --- 18
- 5 --- 19
- 5 --- 27
+ 5 --- 16
+ 5 --- 22
+ 5 x--> 14
6 --- 10
- 6 --- 16
- 6 --- 17
+ 6 x--> 14
9 --- 10
9 --- 11
9 --- 12
@@ -1130,341 +890,441 @@ flowchart LR
9 --- 16
9 --- 17
9 --- 18
- 9 --- 19
- 9 --- 20
- 9 --- 21
- 9 --- 22
- 9 --- 23
- 10 --- 28
- 10 --- 31
- 10 --- 34
- 10 --- 37
- 22 <--x 24
- 18 <--x 25
- 28 --- 29
- 28 ---- 40
- 28 --- 30
- 29 --- 41
- 29 --- 43
- 29 --- 44
- 31 --- 32
- 31 ---- 45
- 31 --- 33
- 32 --- 46
- 32 --- 48
- 32 --- 49
- 34 --- 35
- 34 ---- 50
- 34 --- 36
- 35 --- 51
- 35 --- 53
- 35 --- 54
- 37 --- 38
- 37 ---- 55
- 37 --- 39
- 38 --- 56
- 38 --- 58
- 38 --- 59
- 40 --- 41
- 40 --- 42
- 40 --- 43
- 40 --- 44
- 45 --- 46
- 45 --- 47
- 45 --- 48
- 45 --- 49
- 50 --- 51
- 50 --- 52
- 50 --- 53
- 50 --- 54
- 55 --- 56
- 55 --- 57
- 55 --- 58
- 55 --- 59
- 60 --- 61
- 61 --- 62
- 61 --- 63
- 61 --- 64
- 61 --- 65
- 61 --- 66
- 61 --- 67
- 61 --- 68
- 61 --- 69
- 61 --- 70
- 61 ---- 72
- 61 --- 71
- 62 --- 73
- 62 --- 83
- 62 --- 84
- 63 --- 74
- 63 --- 85
- 63 --- 86
- 64 --- 75
- 64 --- 87
- 64 --- 88
- 65 --- 76
- 65 --- 89
- 65 --- 90
- 66 --- 77
- 66 --- 91
- 66 --- 92
- 67 --- 78
- 67 --- 93
- 67 --- 94
- 68 --- 79
- 68 --- 95
- 68 --- 96
- 69 --- 80
- 69 --- 97
- 69 --- 98
- 72 --- 73
- 72 --- 74
- 72 --- 75
- 72 --- 76
- 72 --- 77
- 72 --- 78
- 72 --- 79
- 72 --- 80
- 72 --- 81
- 72 --- 82
- 72 --- 83
- 72 --- 84
- 72 --- 85
- 72 --- 86
- 72 --- 87
- 72 --- 88
- 72 --- 89
- 72 --- 90
- 72 --- 91
- 72 --- 92
- 72 --- 93
- 72 --- 94
- 72 --- 95
- 72 --- 96
- 72 --- 97
- 72 --- 98
- 99 --- 100
- 100 --- 101
- 100 --- 102
- 100 --- 103
- 100 --- 104
- 100 --- 105
- 100 --- 106
- 100 --- 107
- 100 --- 108
- 100 --- 109
- 100 ---- 111
- 100 --- 110
- 101 --- 112
- 101 --- 122
- 101 --- 123
- 102 --- 113
- 102 --- 124
- 102 --- 125
- 103 --- 114
- 103 --- 126
- 103 --- 127
- 104 --- 115
- 104 --- 128
- 104 --- 129
- 105 --- 116
- 105 --- 130
- 105 --- 131
- 106 --- 117
- 106 --- 132
- 106 --- 133
- 107 --- 118
- 107 --- 134
- 107 --- 135
- 108 --- 119
- 108 --- 136
- 108 --- 137
- 111 --- 112
- 111 --- 113
- 111 --- 114
- 111 --- 115
- 111 --- 116
- 111 --- 117
- 111 --- 118
- 111 --- 119
- 111 --- 120
- 111 --- 121
+ 10 --- 23
+ 10 --- 26
+ 10 --- 29
+ 10 --- 32
+ 16 <--x 11
+ 16 <--x 15
+ 17 <--x 12
+ 17 <--x 15
+ 18 <--x 19
+ 16 <--x 20
+ 23 --- 24
+ 23 ---- 35
+ 23 --- 25
+ 24 --- 36
+ 24 <--x 10
+ 26 --- 27
+ 26 ---- 38
+ 26 --- 28
+ 27 --- 39
+ 27 <--x 10
+ 29 --- 30
+ 29 ---- 41
+ 29 --- 31
+ 30 --- 42
+ 30 <--x 10
+ 32 --- 33
+ 32 ---- 44
+ 32 --- 34
+ 33 --- 45
+ 33 <--x 10
+ 35 --- 36
+ 35 --- 37
+ 38 --- 39
+ 38 --- 40
+ 41 --- 42
+ 41 --- 43
+ 44 --- 45
+ 44 --- 46
+ 47 --- 48
+ 48 --- 49
+ 48 --- 50
+ 48 --- 51
+ 48 --- 52
+ 48 --- 53
+ 48 --- 54
+ 48 --- 55
+ 48 --- 56
+ 48 --- 57
+ 48 ---- 59
+ 48 --- 58
+ 49 --- 60
+ 49 x--> 68
+ 50 --- 61
+ 50 --- 70
+ 50 x--> 68
+ 51 --- 62
+ 51 --- 71
+ 51 x--> 68
+ 52 --- 63
+ 52 --- 72
+ 52 x--> 68
+ 53 --- 64
+ 53 --- 73
+ 53 x--> 68
+ 54 --- 65
+ 54 --- 74
+ 54 x--> 68
+ 55 --- 66
+ 55 --- 75
+ 55 x--> 68
+ 56 --- 67
+ 56 --- 76
+ 56 x--> 68
+ 59 --- 60
+ 59 --- 61
+ 59 --- 62
+ 59 --- 63
+ 59 --- 64
+ 59 --- 65
+ 59 --- 66
+ 59 --- 67
+ 59 --- 68
+ 59 --- 69
+ 59 --- 70
+ 59 --- 71
+ 59 --- 72
+ 59 --- 73
+ 59 --- 74
+ 59 --- 75
+ 59 --- 76
+ 70 <--x 61
+ 70 <--x 69
+ 71 <--x 62
+ 71 <--x 69
+ 72 <--x 63
+ 72 <--x 69
+ 73 <--x 64
+ 73 <--x 69
+ 74 <--x 65
+ 74 <--x 69
+ 75 <--x 66
+ 75 <--x 69
+ 76 <--x 67
+ 76 <--x 69
+ 77 --- 78
+ 78 --- 79
+ 78 --- 80
+ 78 --- 81
+ 78 --- 82
+ 78 --- 83
+ 78 --- 84
+ 78 --- 85
+ 78 --- 86
+ 78 --- 87
+ 78 ---- 89
+ 78 --- 88
+ 79 --- 90
+ 79 x--> 98
+ 80 --- 91
+ 80 --- 100
+ 80 x--> 98
+ 81 --- 92
+ 81 --- 101
+ 81 x--> 98
+ 82 --- 93
+ 82 --- 102
+ 82 x--> 98
+ 83 --- 94
+ 83 --- 103
+ 83 x--> 98
+ 84 --- 95
+ 84 --- 104
+ 84 x--> 98
+ 85 --- 96
+ 85 --- 105
+ 85 x--> 98
+ 86 --- 97
+ 86 --- 106
+ 86 x--> 98
+ 89 --- 90
+ 89 --- 91
+ 89 --- 92
+ 89 --- 93
+ 89 --- 94
+ 89 --- 95
+ 89 --- 96
+ 89 --- 97
+ 89 --- 98
+ 89 --- 99
+ 89 --- 100
+ 89 --- 101
+ 89 --- 102
+ 89 --- 103
+ 89 --- 104
+ 89 --- 105
+ 89 --- 106
+ 100 <--x 91
+ 100 <--x 99
+ 101 <--x 92
+ 101 <--x 99
+ 102 <--x 93
+ 102 <--x 99
+ 103 <--x 94
+ 103 <--x 99
+ 104 <--x 95
+ 104 <--x 99
+ 105 <--x 96
+ 105 <--x 99
+ 106 <--x 97
+ 106 <--x 99
+ 107 --- 108
+ 108 --- 109
+ 108 --- 110
+ 108 --- 111
+ 108 --- 112
+ 108 --- 113
+ 108 --- 114
+ 108 --- 115
+ 108 --- 116
+ 108 --- 117
+ 108 ---- 119
+ 108 --- 118
+ 109 --- 120
+ 109 x--> 128
+ 110 --- 121
+ 110 --- 130
+ 110 x--> 128
111 --- 122
- 111 --- 123
- 111 --- 124
- 111 --- 125
- 111 --- 126
- 111 --- 127
- 111 --- 128
- 111 --- 129
- 111 --- 130
111 --- 131
- 111 --- 132
- 111 --- 133
- 111 --- 134
- 111 --- 135
- 111 --- 136
- 111 --- 137
+ 111 x--> 128
+ 112 --- 123
+ 112 --- 132
+ 112 x--> 128
+ 113 --- 124
+ 113 --- 133
+ 113 x--> 128
+ 114 --- 125
+ 114 --- 134
+ 114 x--> 128
+ 115 --- 126
+ 115 --- 135
+ 115 x--> 128
+ 116 --- 127
+ 116 --- 136
+ 116 x--> 128
+ 119 --- 120
+ 119 --- 121
+ 119 --- 122
+ 119 --- 123
+ 119 --- 124
+ 119 --- 125
+ 119 --- 126
+ 119 --- 127
+ 119 --- 128
+ 119 --- 129
+ 119 --- 130
+ 119 --- 131
+ 119 --- 132
+ 119 --- 133
+ 119 --- 134
+ 119 --- 135
+ 119 --- 136
+ 130 <--x 121
+ 130 <--x 129
+ 131 <--x 122
+ 131 <--x 129
+ 132 <--x 123
+ 132 <--x 129
+ 133 <--x 124
+ 133 <--x 129
+ 134 <--x 125
+ 134 <--x 129
+ 135 <--x 126
+ 135 <--x 129
+ 136 <--x 127
+ 136 <--x 129
+ 137 --- 138
138 --- 139
- 139 --- 140
- 139 --- 141
- 139 --- 142
- 139 --- 143
- 139 --- 144
- 139 --- 145
- 139 --- 146
- 139 --- 147
- 139 --- 148
- 139 ---- 150
- 139 --- 149
+ 138 --- 140
+ 138 --- 141
+ 138 --- 142
+ 138 --- 143
+ 138 --- 144
+ 138 --- 145
+ 138 --- 146
+ 138 --- 147
+ 138 ---- 149
+ 138 --- 148
+ 139 --- 150
+ 139 x--> 158
140 --- 151
- 140 --- 161
- 140 --- 162
+ 140 --- 160
+ 140 x--> 158
141 --- 152
- 141 --- 163
- 141 --- 164
+ 141 --- 161
+ 141 x--> 158
142 --- 153
- 142 --- 165
- 142 --- 166
+ 142 --- 162
+ 142 x--> 158
143 --- 154
- 143 --- 167
- 143 --- 168
+ 143 --- 163
+ 143 x--> 158
144 --- 155
- 144 --- 169
- 144 --- 170
+ 144 --- 164
+ 144 x--> 158
145 --- 156
- 145 --- 171
- 145 --- 172
+ 145 --- 165
+ 145 x--> 158
146 --- 157
- 146 --- 173
- 146 --- 174
- 147 --- 158
- 147 --- 175
- 147 --- 176
- 150 --- 151
- 150 --- 152
- 150 --- 153
- 150 --- 154
- 150 --- 155
- 150 --- 156
- 150 --- 157
- 150 --- 158
- 150 --- 159
- 150 --- 160
- 150 --- 161
- 150 --- 162
- 150 --- 163
- 150 --- 164
- 150 --- 165
- 150 --- 166
- 150 --- 167
- 150 --- 168
- 150 --- 169
- 150 --- 170
- 150 --- 171
- 150 --- 172
- 150 --- 173
- 150 --- 174
- 150 --- 175
- 150 --- 176
- 177 --- 178
- 178 --- 179
- 178 --- 180
- 178 --- 181
- 178 --- 182
- 178 --- 183
- 178 --- 184
- 178 --- 185
- 178 --- 186
- 178 --- 187
- 178 ---- 189
- 178 --- 188
+ 146 --- 166
+ 146 x--> 158
+ 149 --- 150
+ 149 --- 151
+ 149 --- 152
+ 149 --- 153
+ 149 --- 154
+ 149 --- 155
+ 149 --- 156
+ 149 --- 157
+ 149 --- 158
+ 149 --- 159
+ 149 --- 160
+ 149 --- 161
+ 149 --- 162
+ 149 --- 163
+ 149 --- 164
+ 149 --- 165
+ 149 --- 166
+ 160 <--x 151
+ 160 <--x 159
+ 161 <--x 152
+ 161 <--x 159
+ 162 <--x 153
+ 162 <--x 159
+ 163 <--x 154
+ 163 <--x 159
+ 164 <--x 155
+ 164 <--x 159
+ 165 <--x 156
+ 165 <--x 159
+ 166 <--x 157
+ 166 <--x 159
+ 167 --- 168
+ 168 --- 169
+ 168 --- 170
+ 168 --- 171
+ 168 --- 172
+ 168 --- 173
+ 168 --- 174
+ 168 --- 175
+ 168 --- 176
+ 168 --- 177
+ 168 ---- 179
+ 168 --- 178
+ 169 --- 180
+ 169 x--> 188
+ 170 --- 181
+ 170 --- 190
+ 170 x--> 188
+ 171 --- 182
+ 171 --- 191
+ 171 x--> 188
+ 172 --- 183
+ 172 --- 192
+ 172 x--> 188
+ 173 --- 184
+ 173 --- 193
+ 173 x--> 188
+ 174 --- 185
+ 174 --- 194
+ 174 x--> 188
+ 175 --- 186
+ 175 --- 195
+ 175 x--> 188
+ 176 --- 187
+ 176 --- 196
+ 176 x--> 188
+ 179 --- 180
+ 179 --- 181
+ 179 --- 182
+ 179 --- 183
+ 179 --- 184
+ 179 --- 185
+ 179 --- 186
+ 179 --- 187
+ 179 --- 188
+ 179 --- 189
179 --- 190
- 179 --- 200
- 179 --- 201
- 180 --- 191
- 180 --- 202
- 180 --- 203
- 181 --- 192
- 181 --- 204
- 181 --- 205
- 182 --- 193
- 182 --- 206
- 182 --- 207
- 183 --- 194
- 183 --- 208
- 183 --- 209
- 184 --- 195
- 184 --- 210
- 184 --- 211
- 185 --- 196
- 185 --- 212
- 185 --- 213
- 186 --- 197
- 186 --- 214
- 186 --- 215
- 189 --- 190
- 189 --- 191
- 189 --- 192
- 189 --- 193
- 189 --- 194
- 189 --- 195
- 189 --- 196
- 189 --- 197
- 189 --- 198
- 189 --- 199
- 189 --- 200
- 189 --- 201
- 189 --- 202
- 189 --- 203
- 189 --- 204
- 189 --- 205
- 189 --- 206
- 189 --- 207
- 189 --- 208
- 189 --- 209
- 189 --- 210
- 189 --- 211
- 189 --- 212
- 189 --- 213
- 189 --- 214
- 189 --- 215
- 216 --- 217
- 217 --- 218
- 217 --- 219
- 217 --- 220
- 217 --- 221
- 217 --- 222
- 217 --- 223
- 217 --- 224
- 217 --- 225
- 217 --- 226
- 217 ---- 228
- 217 --- 227
- 218 --- 229
- 218 --- 239
- 218 --- 240
- 219 --- 230
- 219 --- 241
- 219 --- 242
- 220 --- 231
- 220 --- 243
- 220 --- 244
- 221 --- 232
- 221 --- 245
- 221 --- 246
- 222 --- 233
- 222 --- 247
- 222 --- 248
- 223 --- 234
- 223 --- 249
- 223 --- 250
- 224 --- 235
- 224 --- 251
- 224 --- 252
- 225 --- 236
- 225 --- 253
- 225 --- 254
+ 179 --- 191
+ 179 --- 192
+ 179 --- 193
+ 179 --- 194
+ 179 --- 195
+ 179 --- 196
+ 190 <--x 181
+ 190 <--x 189
+ 191 <--x 182
+ 191 <--x 189
+ 192 <--x 183
+ 192 <--x 189
+ 193 <--x 184
+ 193 <--x 189
+ 194 <--x 185
+ 194 <--x 189
+ 195 <--x 186
+ 195 <--x 189
+ 196 <--x 187
+ 196 <--x 189
+ 197 --- 198
+ 198 --- 199
+ 198 --- 200
+ 198 --- 201
+ 198 --- 202
+ 198 --- 203
+ 198 --- 204
+ 198 --- 205
+ 198 --- 206
+ 198 --- 207
+ 198 ---- 209
+ 198 --- 208
+ 199 --- 210
+ 199 x--> 218
+ 200 --- 211
+ 200 --- 220
+ 200 x--> 218
+ 201 --- 212
+ 201 --- 221
+ 201 x--> 218
+ 202 --- 213
+ 202 --- 222
+ 202 x--> 218
+ 203 --- 214
+ 203 --- 223
+ 203 x--> 218
+ 204 --- 215
+ 204 --- 224
+ 204 x--> 218
+ 205 --- 216
+ 205 --- 225
+ 205 x--> 218
+ 206 --- 217
+ 206 --- 226
+ 206 x--> 218
+ 209 --- 210
+ 209 --- 211
+ 209 --- 212
+ 209 --- 213
+ 209 --- 214
+ 209 --- 215
+ 209 --- 216
+ 209 --- 217
+ 209 --- 218
+ 209 --- 219
+ 209 --- 220
+ 209 --- 221
+ 209 --- 222
+ 209 --- 223
+ 209 --- 224
+ 209 --- 225
+ 209 --- 226
+ 220 <--x 211
+ 220 <--x 219
+ 221 <--x 212
+ 221 <--x 219
+ 222 <--x 213
+ 222 <--x 219
+ 223 <--x 214
+ 223 <--x 219
+ 224 <--x 215
+ 224 <--x 219
+ 225 <--x 216
+ 225 <--x 219
+ 226 <--x 217
+ 226 <--x 219
+ 227 --- 228
228 --- 229
228 --- 230
228 --- 231
@@ -1474,617 +1334,855 @@ flowchart LR
228 --- 235
228 --- 236
228 --- 237
+ 228 ---- 239
228 --- 238
- 228 --- 239
- 228 --- 240
- 228 --- 241
- 228 --- 242
- 228 --- 243
- 228 --- 244
- 228 --- 245
- 228 --- 246
- 228 --- 247
- 228 --- 248
- 228 --- 249
- 228 --- 250
- 228 --- 251
- 228 --- 252
- 228 --- 253
- 228 --- 254
- 255 --- 256
- 256 --- 257
- 256 --- 258
- 256 --- 259
- 256 --- 260
- 256 --- 261
- 256 --- 262
- 256 --- 263
- 256 --- 264
- 256 --- 265
- 256 ---- 267
- 256 --- 266
- 257 --- 268
- 257 --- 278
- 257 --- 279
- 258 --- 269
- 258 --- 280
- 258 --- 281
+ 229 --- 240
+ 229 x--> 248
+ 230 --- 241
+ 230 --- 250
+ 230 x--> 248
+ 231 --- 242
+ 231 --- 251
+ 231 x--> 248
+ 232 --- 243
+ 232 --- 252
+ 232 x--> 248
+ 233 --- 244
+ 233 --- 253
+ 233 x--> 248
+ 234 --- 245
+ 234 --- 254
+ 234 x--> 248
+ 235 --- 246
+ 235 --- 255
+ 235 x--> 248
+ 236 --- 247
+ 236 --- 256
+ 236 x--> 248
+ 239 --- 240
+ 239 --- 241
+ 239 --- 242
+ 239 --- 243
+ 239 --- 244
+ 239 --- 245
+ 239 --- 246
+ 239 --- 247
+ 239 --- 248
+ 239 --- 249
+ 239 --- 250
+ 239 --- 251
+ 239 --- 252
+ 239 --- 253
+ 239 --- 254
+ 239 --- 255
+ 239 --- 256
+ 250 <--x 241
+ 250 <--x 249
+ 251 <--x 242
+ 251 <--x 249
+ 252 <--x 243
+ 252 <--x 249
+ 253 <--x 244
+ 253 <--x 249
+ 254 <--x 245
+ 254 <--x 249
+ 255 <--x 246
+ 255 <--x 249
+ 256 <--x 247
+ 256 <--x 249
+ 257 --- 258
+ 258 --- 259
+ 258 --- 260
+ 258 --- 261
+ 258 --- 262
+ 258 --- 263
+ 258 --- 264
+ 258 --- 265
+ 258 --- 266
+ 258 --- 267
+ 258 ---- 269
+ 258 --- 268
259 --- 270
- 259 --- 282
- 259 --- 283
+ 259 x--> 278
260 --- 271
- 260 --- 284
- 260 --- 285
+ 260 --- 280
+ 260 x--> 278
261 --- 272
- 261 --- 286
- 261 --- 287
+ 261 --- 281
+ 261 x--> 278
262 --- 273
- 262 --- 288
- 262 --- 289
+ 262 --- 282
+ 262 x--> 278
263 --- 274
- 263 --- 290
- 263 --- 291
+ 263 --- 283
+ 263 x--> 278
264 --- 275
- 264 --- 292
- 264 --- 293
- 267 --- 268
- 267 --- 269
- 267 --- 270
- 267 --- 271
- 267 --- 272
- 267 --- 273
- 267 --- 274
- 267 --- 275
- 267 --- 276
- 267 --- 277
- 267 --- 278
- 267 --- 279
- 267 --- 280
- 267 --- 281
- 267 --- 282
- 267 --- 283
- 267 --- 284
- 267 --- 285
- 267 --- 286
- 267 --- 287
- 267 --- 288
- 267 --- 289
- 267 --- 290
- 267 --- 291
- 267 --- 292
- 267 --- 293
- 294 --- 295
- 295 --- 296
- 295 --- 297
- 295 --- 298
- 295 --- 299
- 295 --- 300
- 295 --- 301
- 295 --- 302
- 295 --- 303
- 295 --- 304
- 295 ---- 306
- 295 --- 305
+ 264 --- 284
+ 264 x--> 278
+ 265 --- 276
+ 265 --- 285
+ 265 x--> 278
+ 266 --- 277
+ 266 --- 286
+ 266 x--> 278
+ 269 --- 270
+ 269 --- 271
+ 269 --- 272
+ 269 --- 273
+ 269 --- 274
+ 269 --- 275
+ 269 --- 276
+ 269 --- 277
+ 269 --- 278
+ 269 --- 279
+ 269 --- 280
+ 269 --- 281
+ 269 --- 282
+ 269 --- 283
+ 269 --- 284
+ 269 --- 285
+ 269 --- 286
+ 280 <--x 271
+ 280 <--x 279
+ 281 <--x 272
+ 281 <--x 279
+ 282 <--x 273
+ 282 <--x 279
+ 283 <--x 274
+ 283 <--x 279
+ 284 <--x 275
+ 284 <--x 279
+ 285 <--x 276
+ 285 <--x 279
+ 286 <--x 277
+ 286 <--x 279
+ 287 --- 288
+ 288 --- 289
+ 288 --- 290
+ 288 --- 291
+ 288 --- 292
+ 288 --- 293
+ 288 --- 294
+ 288 --- 295
+ 288 --- 296
+ 288 --- 297
+ 288 ---- 299
+ 288 --- 298
+ 289 --- 300
+ 289 x--> 308
+ 290 --- 301
+ 290 --- 310
+ 290 x--> 308
+ 291 --- 302
+ 291 --- 311
+ 291 x--> 308
+ 292 --- 303
+ 292 --- 312
+ 292 x--> 308
+ 293 --- 304
+ 293 --- 313
+ 293 x--> 308
+ 294 --- 305
+ 294 --- 314
+ 294 x--> 308
+ 295 --- 306
+ 295 --- 315
+ 295 x--> 308
296 --- 307
- 296 --- 317
- 296 --- 318
- 297 --- 308
- 297 --- 319
- 297 --- 320
- 298 --- 309
- 298 --- 321
- 298 --- 322
+ 296 --- 316
+ 296 x--> 308
+ 299 --- 300
+ 299 --- 301
+ 299 --- 302
+ 299 --- 303
+ 299 --- 304
+ 299 --- 305
+ 299 --- 306
+ 299 --- 307
+ 299 --- 308
+ 299 --- 309
299 --- 310
- 299 --- 323
- 299 --- 324
- 300 --- 311
- 300 --- 325
- 300 --- 326
- 301 --- 312
- 301 --- 327
- 301 --- 328
- 302 --- 313
- 302 --- 329
- 302 --- 330
- 303 --- 314
- 303 --- 331
- 303 --- 332
- 306 --- 307
- 306 --- 308
- 306 --- 309
- 306 --- 310
- 306 --- 311
- 306 --- 312
- 306 --- 313
- 306 --- 314
- 306 --- 315
- 306 --- 316
- 306 --- 317
- 306 --- 318
- 306 --- 319
- 306 --- 320
- 306 --- 321
- 306 --- 322
- 306 --- 323
- 306 --- 324
- 306 --- 325
- 306 --- 326
- 306 --- 327
- 306 --- 328
- 306 --- 329
- 306 --- 330
- 306 --- 331
- 306 --- 332
- 333 --- 334
- 334 --- 335
- 334 --- 336
- 334 --- 337
- 334 --- 338
- 334 --- 339
- 334 --- 340
- 334 --- 341
- 334 --- 342
- 334 --- 343
- 334 ---- 345
- 334 --- 344
- 335 --- 346
- 335 --- 356
- 335 --- 357
- 336 --- 347
- 336 --- 358
- 336 --- 359
- 337 --- 348
- 337 --- 360
- 337 --- 361
- 338 --- 349
- 338 --- 362
- 338 --- 363
- 339 --- 350
- 339 --- 364
- 339 --- 365
- 340 --- 351
- 340 --- 366
- 340 --- 367
- 341 --- 352
- 341 --- 368
- 341 --- 369
- 342 --- 353
- 342 --- 370
- 342 --- 371
- 345 --- 346
- 345 --- 347
- 345 --- 348
- 345 --- 349
- 345 --- 350
- 345 --- 351
- 345 --- 352
- 345 --- 353
- 345 --- 354
- 345 --- 355
- 345 --- 356
- 345 --- 357
- 345 --- 358
- 345 --- 359
- 345 --- 360
- 345 --- 361
- 345 --- 362
- 345 --- 363
- 345 --- 364
- 345 --- 365
- 345 --- 366
- 345 --- 367
- 345 --- 368
- 345 --- 369
- 345 --- 370
- 345 --- 371
- 372 --- 373
- 373 --- 374
- 373 --- 375
- 373 --- 376
- 373 --- 377
- 373 --- 378
- 373 --- 379
- 373 --- 380
- 373 --- 381
- 373 --- 382
- 373 ---- 384
- 373 --- 383
- 374 --- 385
- 374 --- 395
- 374 --- 396
- 375 --- 386
- 375 --- 397
- 375 --- 398
- 376 --- 387
- 376 --- 399
- 376 --- 400
- 377 --- 388
- 377 --- 401
- 377 --- 402
- 378 --- 389
- 378 --- 403
- 378 --- 404
+ 299 --- 311
+ 299 --- 312
+ 299 --- 313
+ 299 --- 314
+ 299 --- 315
+ 299 --- 316
+ 310 <--x 301
+ 310 <--x 309
+ 311 <--x 302
+ 311 <--x 309
+ 312 <--x 303
+ 312 <--x 309
+ 313 <--x 304
+ 313 <--x 309
+ 314 <--x 305
+ 314 <--x 309
+ 315 <--x 306
+ 315 <--x 309
+ 316 <--x 307
+ 316 <--x 309
+ 317 --- 318
+ 318 --- 319
+ 318 --- 320
+ 318 --- 321
+ 318 --- 322
+ 318 --- 323
+ 318 --- 324
+ 318 --- 325
+ 318 --- 326
+ 318 --- 327
+ 318 ---- 329
+ 318 --- 328
+ 319 --- 330
+ 319 x--> 338
+ 320 --- 331
+ 320 --- 340
+ 320 x--> 338
+ 321 --- 332
+ 321 --- 341
+ 321 x--> 338
+ 322 --- 333
+ 322 --- 342
+ 322 x--> 338
+ 323 --- 334
+ 323 --- 343
+ 323 x--> 338
+ 324 --- 335
+ 324 --- 344
+ 324 x--> 338
+ 325 --- 336
+ 325 --- 345
+ 325 x--> 338
+ 326 --- 337
+ 326 --- 346
+ 326 x--> 338
+ 329 --- 330
+ 329 --- 331
+ 329 --- 332
+ 329 --- 333
+ 329 --- 334
+ 329 --- 335
+ 329 --- 336
+ 329 --- 337
+ 329 --- 338
+ 329 --- 339
+ 329 --- 340
+ 329 --- 341
+ 329 --- 342
+ 329 --- 343
+ 329 --- 344
+ 329 --- 345
+ 329 --- 346
+ 340 <--x 331
+ 340 <--x 339
+ 341 <--x 332
+ 341 <--x 339
+ 342 <--x 333
+ 342 <--x 339
+ 343 <--x 334
+ 343 <--x 339
+ 344 <--x 335
+ 344 <--x 339
+ 345 <--x 336
+ 345 <--x 339
+ 346 <--x 337
+ 346 <--x 339
+ 347 --- 348
+ 348 --- 349
+ 348 --- 350
+ 348 --- 351
+ 348 --- 352
+ 348 --- 353
+ 348 --- 354
+ 348 --- 355
+ 348 --- 356
+ 348 --- 357
+ 348 ---- 359
+ 348 --- 358
+ 349 --- 360
+ 349 x--> 368
+ 350 --- 361
+ 350 --- 370
+ 350 x--> 368
+ 351 --- 362
+ 351 --- 371
+ 351 x--> 368
+ 352 --- 363
+ 352 --- 372
+ 352 x--> 368
+ 353 --- 364
+ 353 --- 373
+ 353 x--> 368
+ 354 --- 365
+ 354 --- 374
+ 354 x--> 368
+ 355 --- 366
+ 355 --- 375
+ 355 x--> 368
+ 356 --- 367
+ 356 --- 376
+ 356 x--> 368
+ 359 --- 360
+ 359 --- 361
+ 359 --- 362
+ 359 --- 363
+ 359 --- 364
+ 359 --- 365
+ 359 --- 366
+ 359 --- 367
+ 359 --- 368
+ 359 --- 369
+ 359 --- 370
+ 359 --- 371
+ 359 --- 372
+ 359 --- 373
+ 359 --- 374
+ 359 --- 375
+ 359 --- 376
+ 370 <--x 361
+ 370 <--x 369
+ 371 <--x 362
+ 371 <--x 369
+ 372 <--x 363
+ 372 <--x 369
+ 373 <--x 364
+ 373 <--x 369
+ 374 <--x 365
+ 374 <--x 369
+ 375 <--x 366
+ 375 <--x 369
+ 376 <--x 367
+ 376 <--x 369
+ 377 --- 378
+ 378 --- 379
+ 378 --- 380
+ 378 --- 381
+ 378 --- 382
+ 378 --- 383
+ 378 --- 384
+ 378 --- 385
+ 378 --- 386
+ 378 --- 387
+ 378 ---- 389
+ 378 --- 388
379 --- 390
- 379 --- 405
- 379 --- 406
+ 379 x--> 398
380 --- 391
- 380 --- 407
- 380 --- 408
+ 380 --- 400
+ 380 x--> 398
381 --- 392
- 381 --- 409
- 381 --- 410
- 384 --- 385
- 384 --- 386
- 384 --- 387
- 384 --- 388
- 384 --- 389
- 384 --- 390
- 384 --- 391
- 384 --- 392
- 384 --- 393
- 384 --- 394
+ 381 --- 401
+ 381 x--> 398
+ 382 --- 393
+ 382 --- 402
+ 382 x--> 398
+ 383 --- 394
+ 383 --- 403
+ 383 x--> 398
384 --- 395
- 384 --- 396
- 384 --- 397
- 384 --- 398
- 384 --- 399
- 384 --- 400
- 384 --- 401
- 384 --- 402
- 384 --- 403
384 --- 404
- 384 --- 405
- 384 --- 406
- 384 --- 407
- 384 --- 408
- 384 --- 409
- 384 --- 410
- 411 --- 412
- 412 --- 413
- 412 --- 414
- 412 --- 415
- 412 --- 416
- 412 --- 417
- 412 --- 418
- 412 --- 419
- 412 --- 420
- 412 --- 421
- 412 ---- 423
- 412 --- 422
+ 384 x--> 398
+ 385 --- 396
+ 385 --- 405
+ 385 x--> 398
+ 386 --- 397
+ 386 --- 406
+ 386 x--> 398
+ 389 --- 390
+ 389 --- 391
+ 389 --- 392
+ 389 --- 393
+ 389 --- 394
+ 389 --- 395
+ 389 --- 396
+ 389 --- 397
+ 389 --- 398
+ 389 --- 399
+ 389 --- 400
+ 389 --- 401
+ 389 --- 402
+ 389 --- 403
+ 389 --- 404
+ 389 --- 405
+ 389 --- 406
+ 400 <--x 391
+ 400 <--x 399
+ 401 <--x 392
+ 401 <--x 399
+ 402 <--x 393
+ 402 <--x 399
+ 403 <--x 394
+ 403 <--x 399
+ 404 <--x 395
+ 404 <--x 399
+ 405 <--x 396
+ 405 <--x 399
+ 406 <--x 397
+ 406 <--x 399
+ 407 --- 408
+ 408 --- 409
+ 408 --- 410
+ 408 --- 411
+ 408 --- 412
+ 408 --- 413
+ 408 --- 414
+ 408 --- 415
+ 408 --- 416
+ 408 --- 417
+ 408 ---- 419
+ 408 --- 418
+ 409 --- 420
+ 409 x--> 428
+ 410 --- 421
+ 410 --- 430
+ 410 x--> 428
+ 411 --- 422
+ 411 --- 431
+ 411 x--> 428
+ 412 --- 423
+ 412 --- 432
+ 412 x--> 428
413 --- 424
- 413 --- 434
- 413 --- 435
+ 413 --- 433
+ 413 x--> 428
414 --- 425
- 414 --- 436
- 414 --- 437
+ 414 --- 434
+ 414 x--> 428
415 --- 426
- 415 --- 438
- 415 --- 439
+ 415 --- 435
+ 415 x--> 428
416 --- 427
- 416 --- 440
- 416 --- 441
- 417 --- 428
- 417 --- 442
- 417 --- 443
- 418 --- 429
- 418 --- 444
- 418 --- 445
+ 416 --- 436
+ 416 x--> 428
+ 419 --- 420
+ 419 --- 421
+ 419 --- 422
+ 419 --- 423
+ 419 --- 424
+ 419 --- 425
+ 419 --- 426
+ 419 --- 427
+ 419 --- 428
+ 419 --- 429
419 --- 430
- 419 --- 446
- 419 --- 447
- 420 --- 431
- 420 --- 448
- 420 --- 449
- 423 --- 424
- 423 --- 425
- 423 --- 426
- 423 --- 427
- 423 --- 428
- 423 --- 429
- 423 --- 430
- 423 --- 431
- 423 --- 432
- 423 --- 433
- 423 --- 434
- 423 --- 435
- 423 --- 436
- 423 --- 437
- 423 --- 438
- 423 --- 439
- 423 --- 440
- 423 --- 441
- 423 --- 442
- 423 --- 443
- 423 --- 444
- 423 --- 445
- 423 --- 446
- 423 --- 447
- 423 --- 448
- 423 --- 449
- 450 --- 451
- 451 --- 452
- 451 --- 453
- 451 --- 454
- 451 --- 455
- 451 --- 456
- 451 --- 457
- 451 --- 458
- 451 --- 459
- 451 --- 460
- 451 ---- 462
- 451 --- 461
- 452 --- 463
- 452 --- 473
- 452 --- 474
- 453 --- 464
- 453 --- 475
- 453 --- 476
- 454 --- 465
- 454 --- 477
- 454 --- 478
- 455 --- 466
- 455 --- 479
- 455 --- 480
- 456 --- 467
- 456 --- 481
- 456 --- 482
- 457 --- 468
- 457 --- 483
- 457 --- 484
- 458 --- 469
- 458 --- 485
- 458 --- 486
- 459 --- 470
- 459 --- 487
- 459 --- 488
- 462 --- 463
- 462 --- 464
- 462 --- 465
- 462 --- 466
- 462 --- 467
- 462 --- 468
- 462 --- 469
- 462 --- 470
- 462 --- 471
- 462 --- 472
- 462 --- 473
- 462 --- 474
- 462 --- 475
- 462 --- 476
- 462 --- 477
- 462 --- 478
- 462 --- 479
- 462 --- 480
- 462 --- 481
- 462 --- 482
- 462 --- 483
- 462 --- 484
- 462 --- 485
- 462 --- 486
- 462 --- 487
- 462 --- 488
- 489 --- 490
- 490 --- 491
- 490 --- 492
- 490 --- 493
- 490 --- 494
- 490 --- 495
- 490 --- 496
- 490 --- 497
- 490 --- 498
- 490 --- 499
- 490 ---- 501
- 490 --- 500
- 491 --- 502
- 491 --- 512
- 491 --- 513
- 492 --- 503
- 492 --- 514
- 492 --- 515
- 493 --- 504
- 493 --- 516
- 493 --- 517
- 494 --- 505
- 494 --- 518
- 494 --- 519
- 495 --- 506
- 495 --- 520
- 495 --- 521
- 496 --- 507
- 496 --- 522
- 496 --- 523
- 497 --- 508
- 497 --- 524
- 497 --- 525
- 498 --- 509
- 498 --- 526
- 498 --- 527
- 501 --- 502
- 501 --- 503
- 501 --- 504
- 501 --- 505
- 501 --- 506
- 501 --- 507
- 501 --- 508
- 501 --- 509
- 501 --- 510
- 501 --- 511
+ 419 --- 431
+ 419 --- 432
+ 419 --- 433
+ 419 --- 434
+ 419 --- 435
+ 419 --- 436
+ 430 <--x 421
+ 430 <--x 429
+ 431 <--x 422
+ 431 <--x 429
+ 432 <--x 423
+ 432 <--x 429
+ 433 <--x 424
+ 433 <--x 429
+ 434 <--x 425
+ 434 <--x 429
+ 435 <--x 426
+ 435 <--x 429
+ 436 <--x 427
+ 436 <--x 429
+ 437 --- 438
+ 438 --- 439
+ 438 --- 440
+ 438 --- 441
+ 438 --- 442
+ 438 --- 443
+ 438 --- 444
+ 438 --- 445
+ 438 --- 446
+ 438 --- 447
+ 438 ---- 449
+ 438 --- 448
+ 439 --- 450
+ 439 x--> 458
+ 440 --- 451
+ 440 --- 460
+ 440 x--> 458
+ 441 --- 452
+ 441 --- 461
+ 441 x--> 458
+ 442 --- 453
+ 442 --- 462
+ 442 x--> 458
+ 443 --- 454
+ 443 --- 463
+ 443 x--> 458
+ 444 --- 455
+ 444 --- 464
+ 444 x--> 458
+ 445 --- 456
+ 445 --- 465
+ 445 x--> 458
+ 446 --- 457
+ 446 --- 466
+ 446 x--> 458
+ 449 --- 450
+ 449 --- 451
+ 449 --- 452
+ 449 --- 453
+ 449 --- 454
+ 449 --- 455
+ 449 --- 456
+ 449 --- 457
+ 449 --- 458
+ 449 --- 459
+ 449 --- 460
+ 449 --- 461
+ 449 --- 462
+ 449 --- 463
+ 449 --- 464
+ 449 --- 465
+ 449 --- 466
+ 460 <--x 451
+ 460 <--x 459
+ 461 <--x 452
+ 461 <--x 459
+ 462 <--x 453
+ 462 <--x 459
+ 463 <--x 454
+ 463 <--x 459
+ 464 <--x 455
+ 464 <--x 459
+ 465 <--x 456
+ 465 <--x 459
+ 466 <--x 457
+ 466 <--x 459
+ 467 --- 468
+ 468 --- 469
+ 468 --- 470
+ 468 --- 471
+ 468 --- 472
+ 468 --- 473
+ 468 --- 474
+ 468 --- 475
+ 468 --- 476
+ 468 --- 477
+ 468 ---- 479
+ 468 --- 478
+ 469 --- 480
+ 469 x--> 488
+ 470 --- 481
+ 470 --- 490
+ 470 x--> 488
+ 471 --- 482
+ 471 --- 491
+ 471 x--> 488
+ 472 --- 483
+ 472 --- 492
+ 472 x--> 488
+ 473 --- 484
+ 473 --- 493
+ 473 x--> 488
+ 474 --- 485
+ 474 --- 494
+ 474 x--> 488
+ 475 --- 486
+ 475 --- 495
+ 475 x--> 488
+ 476 --- 487
+ 476 --- 496
+ 476 x--> 488
+ 479 --- 480
+ 479 --- 481
+ 479 --- 482
+ 479 --- 483
+ 479 --- 484
+ 479 --- 485
+ 479 --- 486
+ 479 --- 487
+ 479 --- 488
+ 479 --- 489
+ 479 --- 490
+ 479 --- 491
+ 479 --- 492
+ 479 --- 493
+ 479 --- 494
+ 479 --- 495
+ 479 --- 496
+ 490 <--x 481
+ 490 <--x 489
+ 491 <--x 482
+ 491 <--x 489
+ 492 <--x 483
+ 492 <--x 489
+ 493 <--x 484
+ 493 <--x 489
+ 494 <--x 485
+ 494 <--x 489
+ 495 <--x 486
+ 495 <--x 489
+ 496 <--x 487
+ 496 <--x 489
+ 497 --- 498
+ 498 --- 499
+ 498 --- 500
+ 498 --- 501
+ 498 --- 502
+ 498 --- 503
+ 498 --- 504
+ 498 --- 505
+ 498 --- 506
+ 498 --- 507
+ 498 ---- 509
+ 498 --- 508
+ 499 --- 510
+ 499 x--> 518
+ 500 --- 511
+ 500 --- 520
+ 500 x--> 518
501 --- 512
- 501 --- 513
- 501 --- 514
- 501 --- 515
- 501 --- 516
- 501 --- 517
- 501 --- 518
- 501 --- 519
- 501 --- 520
501 --- 521
- 501 --- 522
- 501 --- 523
- 501 --- 524
- 501 --- 525
- 501 --- 526
- 501 --- 527
+ 501 x--> 518
+ 502 --- 513
+ 502 --- 522
+ 502 x--> 518
+ 503 --- 514
+ 503 --- 523
+ 503 x--> 518
+ 504 --- 515
+ 504 --- 524
+ 504 x--> 518
+ 505 --- 516
+ 505 --- 525
+ 505 x--> 518
+ 506 --- 517
+ 506 --- 526
+ 506 x--> 518
+ 509 --- 510
+ 509 --- 511
+ 509 --- 512
+ 509 --- 513
+ 509 --- 514
+ 509 --- 515
+ 509 --- 516
+ 509 --- 517
+ 509 --- 518
+ 509 --- 519
+ 509 --- 520
+ 509 --- 521
+ 509 --- 522
+ 509 --- 523
+ 509 --- 524
+ 509 --- 525
+ 509 --- 526
+ 520 <--x 511
+ 520 <--x 519
+ 521 <--x 512
+ 521 <--x 519
+ 522 <--x 513
+ 522 <--x 519
+ 523 <--x 514
+ 523 <--x 519
+ 524 <--x 515
+ 524 <--x 519
+ 525 <--x 516
+ 525 <--x 519
+ 526 <--x 517
+ 526 <--x 519
+ 527 --- 528
528 --- 529
- 529 --- 530
- 529 --- 531
- 529 --- 532
- 529 --- 533
- 529 --- 534
- 529 --- 535
- 529 --- 536
- 529 --- 537
- 529 --- 538
- 529 ---- 540
- 529 --- 539
+ 528 --- 530
+ 528 --- 531
+ 528 --- 532
+ 528 --- 533
+ 528 --- 534
+ 528 --- 535
+ 528 --- 536
+ 528 --- 537
+ 528 ---- 539
+ 528 --- 538
+ 529 --- 540
+ 529 x--> 548
530 --- 541
- 530 --- 551
- 530 --- 552
+ 530 --- 550
+ 530 x--> 548
531 --- 542
- 531 --- 553
- 531 --- 554
+ 531 --- 551
+ 531 x--> 548
532 --- 543
- 532 --- 555
- 532 --- 556
+ 532 --- 552
+ 532 x--> 548
533 --- 544
- 533 --- 557
- 533 --- 558
+ 533 --- 553
+ 533 x--> 548
534 --- 545
- 534 --- 559
- 534 --- 560
+ 534 --- 554
+ 534 x--> 548
535 --- 546
- 535 --- 561
- 535 --- 562
+ 535 --- 555
+ 535 x--> 548
536 --- 547
- 536 --- 563
- 536 --- 564
- 537 --- 548
- 537 --- 565
- 537 --- 566
- 540 --- 541
- 540 --- 542
- 540 --- 543
- 540 --- 544
- 540 --- 545
- 540 --- 546
- 540 --- 547
- 540 --- 548
- 540 --- 549
- 540 --- 550
- 540 --- 551
- 540 --- 552
- 540 --- 553
- 540 --- 554
- 540 --- 555
- 540 --- 556
- 540 --- 557
- 540 --- 558
- 540 --- 559
- 540 --- 560
- 540 --- 561
- 540 --- 562
- 540 --- 563
- 540 --- 564
- 540 --- 565
- 540 --- 566
- 567 --- 568
- 568 --- 569
- 568 --- 570
- 568 --- 571
- 568 --- 572
- 568 --- 573
- 568 --- 574
- 568 --- 575
- 568 --- 576
- 568 --- 577
- 568 ---- 579
- 568 --- 578
+ 536 --- 556
+ 536 x--> 548
+ 539 --- 540
+ 539 --- 541
+ 539 --- 542
+ 539 --- 543
+ 539 --- 544
+ 539 --- 545
+ 539 --- 546
+ 539 --- 547
+ 539 --- 548
+ 539 --- 549
+ 539 --- 550
+ 539 --- 551
+ 539 --- 552
+ 539 --- 553
+ 539 --- 554
+ 539 --- 555
+ 539 --- 556
+ 550 <--x 541
+ 550 <--x 549
+ 551 <--x 542
+ 551 <--x 549
+ 552 <--x 543
+ 552 <--x 549
+ 553 <--x 544
+ 553 <--x 549
+ 554 <--x 545
+ 554 <--x 549
+ 555 <--x 546
+ 555 <--x 549
+ 556 <--x 547
+ 556 <--x 549
+ 557 --- 558
+ 558 --- 559
+ 558 --- 560
+ 558 --- 561
+ 558 --- 562
+ 558 --- 563
+ 558 --- 564
+ 558 --- 565
+ 558 --- 566
+ 558 --- 567
+ 558 ---- 569
+ 558 --- 568
+ 559 --- 570
+ 559 x--> 578
+ 560 --- 571
+ 560 --- 580
+ 560 x--> 578
+ 561 --- 572
+ 561 --- 581
+ 561 x--> 578
+ 562 --- 573
+ 562 --- 582
+ 562 x--> 578
+ 563 --- 574
+ 563 --- 583
+ 563 x--> 578
+ 564 --- 575
+ 564 --- 584
+ 564 x--> 578
+ 565 --- 576
+ 565 --- 585
+ 565 x--> 578
+ 566 --- 577
+ 566 --- 586
+ 566 x--> 578
+ 569 --- 570
+ 569 --- 571
+ 569 --- 572
+ 569 --- 573
+ 569 --- 574
+ 569 --- 575
+ 569 --- 576
+ 569 --- 577
+ 569 --- 578
+ 569 --- 579
569 --- 580
- 569 --- 590
- 569 --- 591
- 570 --- 581
- 570 --- 592
- 570 --- 593
- 571 --- 582
- 571 --- 594
- 571 --- 595
- 572 --- 583
- 572 --- 596
- 572 --- 597
- 573 --- 584
- 573 --- 598
- 573 --- 599
- 574 --- 585
- 574 --- 600
- 574 --- 601
- 575 --- 586
- 575 --- 602
- 575 --- 603
- 576 --- 587
- 576 --- 604
- 576 --- 605
- 579 --- 580
- 579 --- 581
- 579 --- 582
- 579 --- 583
- 579 --- 584
- 579 --- 585
- 579 --- 586
- 579 --- 587
- 579 --- 588
- 579 --- 589
- 579 --- 590
- 579 --- 591
- 579 --- 592
- 579 --- 593
- 579 --- 594
- 579 --- 595
- 579 --- 596
- 579 --- 597
- 579 --- 598
- 579 --- 599
- 579 --- 600
- 579 --- 601
- 579 --- 602
- 579 --- 603
- 579 --- 604
- 579 --- 605
- 606 --- 607
- 607 --- 608
- 607 --- 609
- 607 --- 610
- 607 --- 611
- 607 --- 612
- 607 --- 613
- 607 --- 614
- 607 --- 615
- 607 --- 616
- 607 ---- 618
- 607 --- 617
- 608 --- 619
- 608 --- 629
- 608 --- 630
- 609 --- 620
- 609 --- 631
- 609 --- 632
- 610 --- 621
- 610 --- 633
- 610 --- 634
- 611 --- 622
- 611 --- 635
- 611 --- 636
- 612 --- 623
- 612 --- 637
- 612 --- 638
- 613 --- 624
- 613 --- 639
- 613 --- 640
- 614 --- 625
- 614 --- 641
- 614 --- 642
- 615 --- 626
- 615 --- 643
- 615 --- 644
+ 569 --- 581
+ 569 --- 582
+ 569 --- 583
+ 569 --- 584
+ 569 --- 585
+ 569 --- 586
+ 580 <--x 571
+ 580 <--x 579
+ 581 <--x 572
+ 581 <--x 579
+ 582 <--x 573
+ 582 <--x 579
+ 583 <--x 574
+ 583 <--x 579
+ 584 <--x 575
+ 584 <--x 579
+ 585 <--x 576
+ 585 <--x 579
+ 586 <--x 577
+ 586 <--x 579
+ 587 --- 588
+ 588 --- 589
+ 588 --- 590
+ 588 --- 591
+ 588 --- 592
+ 588 --- 593
+ 588 --- 594
+ 588 --- 595
+ 588 --- 596
+ 588 --- 597
+ 588 ---- 599
+ 588 --- 598
+ 589 --- 600
+ 589 x--> 608
+ 590 --- 601
+ 590 --- 610
+ 590 x--> 608
+ 591 --- 602
+ 591 --- 611
+ 591 x--> 608
+ 592 --- 603
+ 592 --- 612
+ 592 x--> 608
+ 593 --- 604
+ 593 --- 613
+ 593 x--> 608
+ 594 --- 605
+ 594 --- 614
+ 594 x--> 608
+ 595 --- 606
+ 595 --- 615
+ 595 x--> 608
+ 596 --- 607
+ 596 --- 616
+ 596 x--> 608
+ 599 --- 600
+ 599 --- 601
+ 599 --- 602
+ 599 --- 603
+ 599 --- 604
+ 599 --- 605
+ 599 --- 606
+ 599 --- 607
+ 599 --- 608
+ 599 --- 609
+ 599 --- 610
+ 599 --- 611
+ 599 --- 612
+ 599 --- 613
+ 599 --- 614
+ 599 --- 615
+ 599 --- 616
+ 610 <--x 601
+ 610 <--x 609
+ 611 <--x 602
+ 611 <--x 609
+ 612 <--x 603
+ 612 <--x 609
+ 613 <--x 604
+ 613 <--x 609
+ 614 <--x 605
+ 614 <--x 609
+ 615 <--x 606
+ 615 <--x 609
+ 616 <--x 607
+ 616 <--x 609
+ 617 --- 618
618 --- 619
618 --- 620
618 --- 621
@@ -2094,121 +2192,194 @@ flowchart LR
618 --- 625
618 --- 626
618 --- 627
+ 618 ---- 629
618 --- 628
- 618 --- 629
- 618 --- 630
- 618 --- 631
- 618 --- 632
- 618 --- 633
- 618 --- 634
- 618 --- 635
- 618 --- 636
- 618 --- 637
- 618 --- 638
- 618 --- 639
- 618 --- 640
- 618 --- 641
- 618 --- 642
- 618 --- 643
- 618 --- 644
- 645 --- 646
- 646 --- 647
- 646 --- 648
- 646 --- 649
- 646 --- 650
- 646 --- 651
- 646 --- 652
- 646 --- 653
- 646 --- 654
- 646 --- 655
- 646 ---- 657
- 646 --- 656
- 647 --- 658
- 647 --- 668
- 647 --- 669
- 648 --- 659
- 648 --- 670
- 648 --- 671
+ 619 --- 630
+ 619 x--> 638
+ 620 --- 631
+ 620 --- 640
+ 620 x--> 638
+ 621 --- 632
+ 621 --- 641
+ 621 x--> 638
+ 622 --- 633
+ 622 --- 642
+ 622 x--> 638
+ 623 --- 634
+ 623 --- 643
+ 623 x--> 638
+ 624 --- 635
+ 624 --- 644
+ 624 x--> 638
+ 625 --- 636
+ 625 --- 645
+ 625 x--> 638
+ 626 --- 637
+ 626 --- 646
+ 626 x--> 638
+ 629 --- 630
+ 629 --- 631
+ 629 --- 632
+ 629 --- 633
+ 629 --- 634
+ 629 --- 635
+ 629 --- 636
+ 629 --- 637
+ 629 --- 638
+ 629 --- 639
+ 629 --- 640
+ 629 --- 641
+ 629 --- 642
+ 629 --- 643
+ 629 --- 644
+ 629 --- 645
+ 629 --- 646
+ 640 <--x 631
+ 640 <--x 639
+ 641 <--x 632
+ 641 <--x 639
+ 642 <--x 633
+ 642 <--x 639
+ 643 <--x 634
+ 643 <--x 639
+ 644 <--x 635
+ 644 <--x 639
+ 645 <--x 636
+ 645 <--x 639
+ 646 <--x 637
+ 646 <--x 639
+ 647 --- 648
+ 648 --- 649
+ 648 --- 650
+ 648 --- 651
+ 648 --- 652
+ 648 --- 653
+ 648 --- 654
+ 648 --- 655
+ 648 --- 656
+ 648 --- 657
+ 648 ---- 659
+ 648 --- 658
649 --- 660
- 649 --- 672
- 649 --- 673
+ 649 x--> 668
650 --- 661
- 650 --- 674
- 650 --- 675
+ 650 --- 670
+ 650 x--> 668
651 --- 662
- 651 --- 676
- 651 --- 677
+ 651 --- 671
+ 651 x--> 668
652 --- 663
- 652 --- 678
- 652 --- 679
+ 652 --- 672
+ 652 x--> 668
653 --- 664
- 653 --- 680
- 653 --- 681
+ 653 --- 673
+ 653 x--> 668
654 --- 665
- 654 --- 682
- 654 --- 683
- 657 --- 658
- 657 --- 659
- 657 --- 660
- 657 --- 661
- 657 --- 662
- 657 --- 663
- 657 --- 664
- 657 --- 665
- 657 --- 666
- 657 --- 667
- 657 --- 668
- 657 --- 669
- 657 --- 670
- 657 --- 671
- 657 --- 672
- 657 --- 673
- 657 --- 674
- 657 --- 675
- 657 --- 676
- 657 --- 677
- 657 --- 678
- 657 --- 679
- 657 --- 680
- 657 --- 681
- 657 --- 682
- 657 --- 683
- 684 --- 685
- 685 --- 686
- 685 --- 687
- 685 --- 688
- 685 --- 689
- 685 --- 690
- 685 --- 691
- 685 --- 692
- 685 --- 693
- 685 --- 694
- 685 ---- 696
- 685 --- 695
- 686 --- 697
- 686 --- 707
- 686 --- 708
- 687 --- 698
- 687 --- 709
- 687 --- 710
- 688 --- 699
- 688 --- 711
- 688 --- 712
- 689 --- 700
- 689 --- 713
- 689 --- 714
- 690 --- 701
- 690 --- 715
- 690 --- 716
- 691 --- 702
- 691 --- 717
- 691 --- 718
- 692 --- 703
- 692 --- 719
- 692 --- 720
- 693 --- 704
- 693 --- 721
- 693 --- 722
+ 654 --- 674
+ 654 x--> 668
+ 655 --- 666
+ 655 --- 675
+ 655 x--> 668
+ 656 --- 667
+ 656 --- 676
+ 656 x--> 668
+ 659 --- 660
+ 659 --- 661
+ 659 --- 662
+ 659 --- 663
+ 659 --- 664
+ 659 --- 665
+ 659 --- 666
+ 659 --- 667
+ 659 --- 668
+ 659 --- 669
+ 659 --- 670
+ 659 --- 671
+ 659 --- 672
+ 659 --- 673
+ 659 --- 674
+ 659 --- 675
+ 659 --- 676
+ 670 <--x 661
+ 670 <--x 669
+ 671 <--x 662
+ 671 <--x 669
+ 672 <--x 663
+ 672 <--x 669
+ 673 <--x 664
+ 673 <--x 669
+ 674 <--x 665
+ 674 <--x 669
+ 675 <--x 666
+ 675 <--x 669
+ 676 <--x 667
+ 676 <--x 669
+ 677 --- 678
+ 678 --- 679
+ 678 --- 680
+ 678 --- 681
+ 678 --- 682
+ 678 --- 683
+ 678 --- 684
+ 678 --- 685
+ 678 --- 686
+ 678 --- 687
+ 678 --- 688
+ 678 --- 689
+ 678 --- 690
+ 678 --- 691
+ 678 --- 692
+ 678 --- 693
+ 678 --- 694
+ 678 ---- 696
+ 678 --- 695
+ 679 --- 697
+ 679 x--> 714
+ 680 --- 698
+ 680 --- 715
+ 680 x--> 714
+ 681 --- 699
+ 681 --- 716
+ 681 x--> 714
+ 682 --- 700
+ 682 --- 717
+ 682 x--> 714
+ 683 --- 701
+ 683 --- 718
+ 683 x--> 714
+ 684 --- 702
+ 684 --- 719
+ 684 x--> 714
+ 685 --- 703
+ 685 --- 720
+ 685 x--> 714
+ 686 --- 704
+ 686 --- 721
+ 686 x--> 714
+ 687 --- 705
+ 687 --- 722
+ 687 x--> 714
+ 688 --- 706
+ 688 --- 723
+ 688 x--> 714
+ 689 --- 707
+ 689 --- 724
+ 689 x--> 714
+ 690 --- 708
+ 690 --- 725
+ 690 x--> 714
+ 691 --- 709
+ 691 --- 726
+ 691 x--> 714
+ 692 --- 710
+ 692 --- 727
+ 692 x--> 714
+ 693 --- 711
+ 693 --- 728
+ 693 x--> 714
+ 694 --- 712
+ 694 --- 729
+ 694 x--> 714
696 --- 697
696 --- 698
696 --- 699
@@ -2235,502 +2406,174 @@ flowchart LR
696 --- 720
696 --- 721
696 --- 722
- 723 --- 724
- 724 --- 725
- 724 --- 726
- 724 --- 727
- 724 --- 728
- 724 --- 729
- 724 --- 730
- 724 --- 731
- 724 --- 732
- 724 --- 733
- 724 ---- 735
- 724 --- 734
- 725 --- 736
- 725 --- 746
- 725 --- 747
- 726 --- 737
- 726 --- 748
- 726 --- 749
- 727 --- 738
- 727 --- 750
- 727 --- 751
- 728 --- 739
- 728 --- 752
- 728 --- 753
- 729 --- 740
- 729 --- 754
- 729 --- 755
- 730 --- 741
- 730 --- 756
- 730 --- 757
- 731 --- 742
- 731 --- 758
- 731 --- 759
- 732 --- 743
- 732 --- 760
- 732 --- 761
- 735 --- 736
- 735 --- 737
- 735 --- 738
- 735 --- 739
- 735 --- 740
+ 696 --- 723
+ 696 --- 724
+ 696 --- 725
+ 696 --- 726
+ 696 --- 727
+ 696 --- 728
+ 696 --- 729
+ 715 <--x 698
+ 715 <--x 713
+ 716 <--x 699
+ 716 <--x 713
+ 717 <--x 700
+ 717 <--x 713
+ 718 <--x 701
+ 718 <--x 713
+ 719 <--x 702
+ 719 <--x 713
+ 720 <--x 703
+ 720 <--x 713
+ 721 <--x 704
+ 721 <--x 713
+ 722 <--x 705
+ 722 <--x 713
+ 723 <--x 706
+ 723 <--x 713
+ 724 <--x 707
+ 724 <--x 713
+ 725 <--x 708
+ 725 <--x 713
+ 726 <--x 709
+ 726 <--x 713
+ 727 <--x 710
+ 727 <--x 713
+ 728 <--x 711
+ 728 <--x 713
+ 729 <--x 712
+ 729 <--x 713
+ 730 --- 731
+ 731 --- 732
+ 731 --- 733
+ 731 --- 734
+ 731 --- 735
+ 731 ---- 737
+ 731 --- 736
+ 732 --- 738
+ 732 x--> 743
+ 733 --- 739
+ 733 --- 744
+ 733 x--> 743
+ 734 --- 740
+ 734 --- 745
+ 734 x--> 743
735 --- 741
- 735 --- 742
- 735 --- 743
- 735 --- 744
- 735 --- 745
735 --- 746
- 735 --- 747
- 735 --- 748
- 735 --- 749
- 735 --- 750
- 735 --- 751
- 735 --- 752
- 735 --- 753
- 735 --- 754
- 735 --- 755
- 735 --- 756
- 735 --- 757
- 735 --- 758
- 735 --- 759
- 735 --- 760
- 735 --- 761
- 762 --- 763
- 763 --- 764
- 763 --- 765
- 763 --- 766
- 763 --- 767
- 763 --- 768
- 763 --- 769
- 763 --- 770
- 763 --- 771
- 763 --- 772
- 763 ---- 774
- 763 --- 773
- 764 --- 775
- 764 --- 785
- 764 --- 786
- 765 --- 776
- 765 --- 787
- 765 --- 788
- 766 --- 777
- 766 --- 789
- 766 --- 790
+ 735 x--> 743
+ 737 --- 738
+ 737 --- 739
+ 737 --- 740
+ 737 --- 741
+ 737 --- 742
+ 737 --- 743
+ 737 --- 744
+ 737 --- 745
+ 737 --- 746
+ 744 <--x 739
+ 744 <--x 742
+ 745 <--x 740
+ 745 <--x 742
+ 746 <--x 741
+ 746 <--x 742
+ 747 --- 748
+ 748 --- 749
+ 748 --- 750
+ 748 --- 751
+ 748 --- 752
+ 748 ---- 754
+ 748 --- 753
+ 749 --- 755
+ 749 x--> 760
+ 750 --- 756
+ 750 --- 761
+ 750 x--> 760
+ 751 --- 757
+ 751 --- 762
+ 751 x--> 760
+ 752 --- 758
+ 752 --- 763
+ 752 x--> 760
+ 754 --- 755
+ 754 --- 756
+ 754 --- 757
+ 754 --- 758
+ 754 --- 759
+ 754 --- 760
+ 754 --- 761
+ 754 --- 762
+ 754 --- 763
+ 761 <--x 756
+ 761 <--x 759
+ 762 <--x 757
+ 762 <--x 759
+ 763 <--x 758
+ 763 <--x 759
+ 764 --- 765
+ 765 --- 766
+ 765 --- 767
+ 765 --- 768
+ 765 --- 769
+ 765 ---- 771
+ 765 --- 770
+ 766 --- 772
+ 766 x--> 777
+ 767 --- 773
767 --- 778
- 767 --- 791
- 767 --- 792
+ 767 x--> 777
+ 768 --- 774
768 --- 779
- 768 --- 793
- 768 --- 794
+ 768 x--> 777
+ 769 --- 775
769 --- 780
- 769 --- 795
- 769 --- 796
- 770 --- 781
- 770 --- 797
- 770 --- 798
- 771 --- 782
- 771 --- 799
- 771 --- 800
- 774 --- 775
- 774 --- 776
- 774 --- 777
- 774 --- 778
- 774 --- 779
- 774 --- 780
- 774 --- 781
- 774 --- 782
- 774 --- 783
- 774 --- 784
- 774 --- 785
- 774 --- 786
- 774 --- 787
- 774 --- 788
- 774 --- 789
- 774 --- 790
- 774 --- 791
- 774 --- 792
- 774 --- 793
- 774 --- 794
- 774 --- 795
- 774 --- 796
- 774 --- 797
- 774 --- 798
- 774 --- 799
- 774 --- 800
- 801 --- 802
- 802 --- 803
- 802 --- 804
- 802 --- 805
- 802 --- 806
- 802 --- 807
- 802 --- 808
- 802 --- 809
- 802 --- 810
- 802 --- 811
- 802 ---- 813
- 802 --- 812
- 803 --- 814
- 803 --- 824
- 803 --- 825
- 804 --- 815
- 804 --- 826
- 804 --- 827
- 805 --- 816
- 805 --- 828
- 805 --- 829
- 806 --- 817
- 806 --- 830
- 806 --- 831
- 807 --- 818
- 807 --- 832
- 807 --- 833
- 808 --- 819
- 808 --- 834
- 808 --- 835
- 809 --- 820
- 809 --- 836
- 809 --- 837
- 810 --- 821
- 810 --- 838
- 810 --- 839
- 813 --- 814
- 813 --- 815
- 813 --- 816
- 813 --- 817
- 813 --- 818
- 813 --- 819
- 813 --- 820
- 813 --- 821
- 813 --- 822
- 813 --- 823
- 813 --- 824
- 813 --- 825
- 813 --- 826
- 813 --- 827
- 813 --- 828
- 813 --- 829
- 813 --- 830
- 813 --- 831
- 813 --- 832
- 813 --- 833
- 813 --- 834
- 813 --- 835
- 813 --- 836
- 813 --- 837
- 813 --- 838
- 813 --- 839
- 840 --- 841
- 841 --- 842
- 841 --- 843
- 841 --- 844
- 841 --- 845
- 841 --- 846
- 841 --- 847
- 841 --- 848
- 841 --- 849
- 841 --- 850
- 841 ---- 852
- 841 --- 851
- 842 --- 853
- 842 --- 863
- 842 --- 864
- 843 --- 854
- 843 --- 865
- 843 --- 866
- 844 --- 855
- 844 --- 867
- 844 --- 868
- 845 --- 856
- 845 --- 869
- 845 --- 870
- 846 --- 857
- 846 --- 871
- 846 --- 872
- 847 --- 858
- 847 --- 873
- 847 --- 874
- 848 --- 859
- 848 --- 875
- 848 --- 876
- 849 --- 860
- 849 --- 877
- 849 --- 878
- 852 --- 853
- 852 --- 854
- 852 --- 855
- 852 --- 856
- 852 --- 857
- 852 --- 858
- 852 --- 859
- 852 --- 860
- 852 --- 861
- 852 --- 862
- 852 --- 863
- 852 --- 864
- 852 --- 865
- 852 --- 866
- 852 --- 867
- 852 --- 868
- 852 --- 869
- 852 --- 870
- 852 --- 871
- 852 --- 872
- 852 --- 873
- 852 --- 874
- 852 --- 875
- 852 --- 876
- 852 --- 877
- 852 --- 878
- 879 --- 880
- 880 --- 881
- 880 --- 882
- 880 --- 883
- 880 --- 884
- 880 --- 885
- 880 --- 886
- 880 --- 887
- 880 --- 888
- 880 --- 889
- 880 --- 890
- 880 --- 891
- 880 --- 892
- 880 --- 893
- 880 --- 894
- 880 --- 895
- 880 --- 896
- 880 ---- 898
- 880 --- 897
- 881 --- 899
- 881 --- 917
- 881 --- 918
- 882 --- 900
- 882 --- 919
- 882 --- 920
- 883 --- 901
- 883 --- 921
- 883 --- 922
- 884 --- 902
- 884 --- 923
- 884 --- 924
- 885 --- 903
- 885 --- 925
- 885 --- 926
- 886 --- 904
- 886 --- 927
- 886 --- 928
- 887 --- 905
- 887 --- 929
- 887 --- 930
- 888 --- 906
- 888 --- 931
- 888 --- 932
- 889 --- 907
- 889 --- 933
- 889 --- 934
- 890 --- 908
- 890 --- 935
- 890 --- 936
- 891 --- 909
- 891 --- 937
- 891 --- 938
- 892 --- 910
- 892 --- 939
- 892 --- 940
- 893 --- 911
- 893 --- 941
- 893 --- 942
- 894 --- 912
- 894 --- 943
- 894 --- 944
- 895 --- 913
- 895 --- 945
- 895 --- 946
- 896 --- 914
- 896 --- 947
- 896 --- 948
- 898 --- 899
- 898 --- 900
- 898 --- 901
- 898 --- 902
- 898 --- 903
- 898 --- 904
- 898 --- 905
- 898 --- 906
- 898 --- 907
- 898 --- 908
- 898 --- 909
- 898 --- 910
- 898 --- 911
- 898 --- 912
- 898 --- 913
- 898 --- 914
- 898 --- 915
- 898 --- 916
- 898 --- 917
- 898 --- 918
- 898 --- 919
- 898 --- 920
- 898 --- 921
- 898 --- 922
- 898 --- 923
- 898 --- 924
- 898 --- 925
- 898 --- 926
- 898 --- 927
- 898 --- 928
- 898 --- 929
- 898 --- 930
- 898 --- 931
- 898 --- 932
- 898 --- 933
- 898 --- 934
- 898 --- 935
- 898 --- 936
- 898 --- 937
- 898 --- 938
- 898 --- 939
- 898 --- 940
- 898 --- 941
- 898 --- 942
- 898 --- 943
- 898 --- 944
- 898 --- 945
- 898 --- 946
- 898 --- 947
- 898 --- 948
- 949 --- 950
- 950 --- 951
- 950 --- 952
- 950 --- 953
- 950 --- 954
- 950 ---- 956
- 950 --- 955
- 951 --- 957
- 951 --- 963
- 951 --- 964
- 952 --- 958
- 952 --- 965
- 952 --- 966
- 953 --- 959
- 953 --- 967
- 953 --- 968
- 954 --- 960
- 954 --- 969
- 954 --- 970
- 956 --- 957
- 956 --- 958
- 956 --- 959
- 956 --- 960
- 956 --- 961
- 956 --- 962
- 956 --- 963
- 956 --- 964
- 956 --- 965
- 956 --- 966
- 956 --- 967
- 956 --- 968
- 956 --- 969
- 956 --- 970
- 971 --- 972
- 972 --- 973
- 972 --- 974
- 972 --- 975
- 972 --- 976
- 972 ---- 978
- 972 --- 977
- 973 --- 979
- 973 --- 985
- 973 --- 986
- 974 --- 980
- 974 --- 987
- 974 --- 988
- 975 --- 981
- 975 --- 989
- 975 --- 990
- 976 --- 982
- 976 --- 991
- 976 --- 992
- 978 --- 979
- 978 --- 980
- 978 --- 981
- 978 --- 982
- 978 --- 983
- 978 --- 984
- 978 --- 985
- 978 --- 986
- 978 --- 987
- 978 --- 988
- 978 --- 989
- 978 --- 990
- 978 --- 991
- 978 --- 992
- 993 --- 994
- 994 --- 995
- 994 --- 996
- 994 --- 997
- 994 --- 998
- 994 ---- 1000
- 994 --- 999
- 995 --- 1001
- 995 --- 1007
- 995 --- 1008
- 996 --- 1002
- 996 --- 1009
- 996 --- 1010
- 997 --- 1003
- 997 --- 1011
- 997 --- 1012
- 998 --- 1004
- 998 --- 1013
- 998 --- 1014
- 1000 --- 1001
- 1000 --- 1002
- 1000 --- 1003
- 1000 --- 1004
- 1000 --- 1005
- 1000 --- 1006
- 1000 --- 1007
- 1000 --- 1008
- 1000 --- 1009
- 1000 --- 1010
- 1000 --- 1011
- 1000 --- 1012
- 1000 --- 1013
- 1000 --- 1014
- 1015 --- 1016
- 1016 --- 1017
- 1016 --- 1018
- 1016 --- 1019
- 1016 --- 1020
- 1016 ---- 1022
- 1016 --- 1021
- 1017 --- 1023
- 1017 --- 1029
- 1017 --- 1030
- 1018 --- 1024
- 1018 --- 1031
- 1018 --- 1032
- 1019 --- 1025
- 1019 --- 1033
- 1019 --- 1034
- 1020 --- 1026
- 1020 --- 1035
- 1020 --- 1036
- 1022 --- 1023
- 1022 --- 1024
- 1022 --- 1025
- 1022 --- 1026
- 1022 --- 1027
- 1022 --- 1028
- 1022 --- 1029
- 1022 --- 1030
- 1022 --- 1031
- 1022 --- 1032
- 1022 --- 1033
- 1022 --- 1034
- 1022 --- 1035
- 1022 --- 1036
- 10 <--x 1037
+ 769 x--> 777
+ 771 --- 772
+ 771 --- 773
+ 771 --- 774
+ 771 --- 775
+ 771 --- 776
+ 771 --- 777
+ 771 --- 778
+ 771 --- 779
+ 771 --- 780
+ 778 <--x 773
+ 778 <--x 776
+ 779 <--x 774
+ 779 <--x 776
+ 780 <--x 775
+ 780 <--x 776
+ 781 --- 782
+ 782 --- 783
+ 782 --- 784
+ 782 --- 785
+ 782 --- 786
+ 782 ---- 788
+ 782 --- 787
+ 783 --- 789
+ 783 x--> 794
+ 784 --- 790
+ 784 --- 795
+ 784 x--> 794
+ 785 --- 791
+ 785 --- 796
+ 785 x--> 794
+ 786 --- 792
+ 786 --- 797
+ 786 x--> 794
+ 788 --- 789
+ 788 --- 790
+ 788 --- 791
+ 788 --- 792
+ 788 --- 793
+ 788 --- 794
+ 788 --- 795
+ 788 --- 796
+ 788 --- 797
+ 795 <--x 790
+ 795 <--x 793
+ 796 <--x 791
+ 796 <--x 793
+ 797 <--x 792
+ 797 <--x 793
+ 10 <--x 798
```
diff --git a/rust/kcl-lib/tests/kcl_samples/kitt/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/kitt/artifact_commands.snap
index da0902507..a4c8d1162 100644
--- a/rust/kcl-lib/tests/kcl_samples/kitt/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/kitt/artifact_commands.snap
@@ -248,20 +248,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -284,6 +291,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -304,6 +338,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -490,20 +598,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -526,6 +641,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -546,6 +688,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -868,20 +1084,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -908,20 +1131,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -948,20 +1178,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -988,20 +1225,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1028,20 +1272,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1064,6 +1315,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1084,6 +1362,268 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1270,20 +1810,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1306,6 +1853,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1326,6 +1900,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1512,20 +2160,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1548,6 +2203,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1568,6 +2250,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1754,20 +2510,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1790,6 +2553,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1810,6 +2600,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1996,20 +2860,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2032,6 +2903,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2052,6 +2950,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2374,20 +3346,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2414,20 +3393,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2454,20 +3440,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2494,20 +3487,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2534,20 +3534,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2570,6 +3577,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2590,6 +3624,268 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2776,20 +4072,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2812,6 +4115,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2832,6 +4162,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3018,20 +4422,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3054,6 +4465,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3074,6 +4512,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3260,20 +4772,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3296,6 +4815,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3316,6 +4862,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3502,20 +5122,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3538,6 +5165,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3558,6 +5212,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3744,20 +5472,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3780,6 +5515,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3800,6 +5562,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3986,20 +5822,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4022,6 +5865,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4042,6 +5912,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4228,20 +6172,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4264,6 +6215,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4284,6 +6262,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4470,20 +6522,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4506,6 +6565,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4526,6 +6612,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4712,20 +6872,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4748,6 +6915,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4768,6 +6962,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4954,20 +7222,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4990,6 +7265,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5010,6 +7312,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5196,20 +7572,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5232,6 +7615,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5252,6 +7662,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5438,20 +7922,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5474,6 +7965,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5494,6 +8012,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5680,20 +8272,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5716,6 +8315,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5736,6 +8362,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5955,20 +8655,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -5991,6 +8698,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6011,6 +8745,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6197,20 +9005,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6233,6 +9048,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6253,6 +9095,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6472,20 +9388,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6508,6 +9431,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6528,6 +9478,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6714,20 +9738,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6750,6 +9781,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6770,6 +9828,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6956,20 +10088,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6992,6 +10131,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7012,6 +10178,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7198,20 +10438,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7234,6 +10481,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7254,6 +10528,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7440,20 +10788,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7476,6 +10831,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7496,6 +10878,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7682,20 +11138,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7718,6 +11181,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7738,6 +11228,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7924,20 +11488,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -7960,6 +11531,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -7980,6 +11578,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8166,20 +11838,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -8202,6 +11881,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8222,6 +11928,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8408,20 +12188,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -8444,6 +12231,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8464,6 +12278,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8650,20 +12538,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -8686,6 +12581,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8706,6 +12628,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8892,20 +12888,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -8928,6 +12931,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -8948,6 +12978,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -9134,20 +13238,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9170,6 +13281,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -9190,6 +13328,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -9376,20 +13588,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9412,6 +13631,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -9432,6 +13678,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -9618,20 +13938,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9654,6 +13981,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -9674,6 +14028,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -9860,20 +14288,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -9896,6 +14331,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -9916,6 +14378,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -10102,20 +14638,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10138,6 +14681,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -10158,6 +14728,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -10344,20 +14988,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10380,6 +15031,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -10400,6 +15078,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -10586,20 +15338,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10622,6 +15381,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -10642,6 +15428,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -10828,20 +15688,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10864,6 +15731,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -10884,6 +15778,80 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -11070,20 +16038,27 @@ description: Artifact commands kitt.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -11106,6 +16081,33 @@ description: Artifact commands kitt.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -11125,5 +16127,79 @@ description: Artifact commands kitt.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/kcl_samples/kitt/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/kitt/artifact_graph_flowchart.snap.md
index 9535ee968..93b38e750 100644
--- a/rust/kcl-lib/tests/kcl_samples/kitt/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/kitt/artifact_graph_flowchart.snap.md
@@ -9,192 +9,255 @@ flowchart LR
7["Segment
[892, 899, 0]"]
8[Solid2d]
end
- subgraph path24 [Path]
- 24["Path
[235, 276, 0]"]
- 25["Segment
[284, 307, 0]"]
- 26["Segment
[315, 337, 0]"]
- 27["Segment
[345, 369, 0]"]
- 28["Segment
[377, 433, 0]"]
- 29["Segment
[441, 448, 0]"]
- 30[Solid2d]
+ subgraph path19 [Path]
+ 19["Path
[235, 276, 0]"]
+ 20["Segment
[284, 307, 0]"]
+ 21["Segment
[315, 337, 0]"]
+ 22["Segment
[345, 369, 0]"]
+ 23["Segment
[377, 433, 0]"]
+ 24["Segment
[441, 448, 0]"]
+ 25[Solid2d]
end
- subgraph path45 [Path]
- 45["Path
[1506, 1562, 0]"]
- 46["Segment
[1568, 1586, 0]"]
- 47["Segment
[1616, 1635, 0]"]
- 48["Segment
[1667, 1697, 0]"]
- 49["Segment
[1719, 1737, 0]"]
- 50["Segment
[1770, 1788, 0]"]
- 51["Segment
[1818, 1847, 0]"]
- 52["Segment
[1873, 1892, 0]"]
- 53["Segment
[1925, 1943, 0]"]
- 54["Segment
[1977, 2008, 0]"]
- 55["Segment
[2033, 2052, 0]"]
- 56["Segment
[2085, 2104, 0]"]
- 57["Segment
[2137, 2193, 0]"]
- 58["Segment
[2199, 2206, 0]"]
- 59[Solid2d]
+ subgraph path35 [Path]
+ 35["Path
[1506, 1562, 0]"]
+ 36["Segment
[1568, 1586, 0]"]
+ 37["Segment
[1616, 1635, 0]"]
+ 38["Segment
[1667, 1697, 0]"]
+ 39["Segment
[1719, 1737, 0]"]
+ 40["Segment
[1770, 1788, 0]"]
+ 41["Segment
[1818, 1847, 0]"]
+ 42["Segment
[1873, 1892, 0]"]
+ 43["Segment
[1925, 1943, 0]"]
+ 44["Segment
[1977, 2008, 0]"]
+ 45["Segment
[2033, 2052, 0]"]
+ 46["Segment
[2085, 2104, 0]"]
+ 47["Segment
[2137, 2193, 0]"]
+ 48["Segment
[2199, 2206, 0]"]
+ 49[Solid2d]
end
- subgraph path98 [Path]
- 98["Path
[235, 276, 0]"]
- 99["Segment
[284, 307, 0]"]
- 100["Segment
[315, 337, 0]"]
- 101["Segment
[345, 369, 0]"]
- 102["Segment
[377, 433, 0]"]
- 103["Segment
[441, 448, 0]"]
- 104[Solid2d]
+ subgraph path75 [Path]
+ 75["Path
[235, 276, 0]"]
+ 76["Segment
[284, 307, 0]"]
+ 77["Segment
[315, 337, 0]"]
+ 78["Segment
[345, 369, 0]"]
+ 79["Segment
[377, 433, 0]"]
+ 80["Segment
[441, 448, 0]"]
+ 81[Solid2d]
end
- subgraph path119 [Path]
- 119["Path
[235, 276, 0]"]
- 120["Segment
[284, 307, 0]"]
- 121["Segment
[315, 337, 0]"]
- 122["Segment
[345, 369, 0]"]
- 123["Segment
[377, 433, 0]"]
- 124["Segment
[441, 448, 0]"]
- 125[Solid2d]
+ subgraph path91 [Path]
+ 91["Path
[235, 276, 0]"]
+ 92["Segment
[284, 307, 0]"]
+ 93["Segment
[315, 337, 0]"]
+ 94["Segment
[345, 369, 0]"]
+ 95["Segment
[377, 433, 0]"]
+ 96["Segment
[441, 448, 0]"]
+ 97[Solid2d]
end
- subgraph path140 [Path]
- 140["Path
[235, 276, 0]"]
- 141["Segment
[284, 307, 0]"]
- 142["Segment
[315, 337, 0]"]
- 143["Segment
[345, 369, 0]"]
- 144["Segment
[377, 433, 0]"]
- 145["Segment
[441, 448, 0]"]
- 146[Solid2d]
+ subgraph path107 [Path]
+ 107["Path
[235, 276, 0]"]
+ 108["Segment
[284, 307, 0]"]
+ 109["Segment
[315, 337, 0]"]
+ 110["Segment
[345, 369, 0]"]
+ 111["Segment
[377, 433, 0]"]
+ 112["Segment
[441, 448, 0]"]
+ 113[Solid2d]
end
- subgraph path161 [Path]
- 161["Path
[235, 276, 0]"]
- 162["Segment
[284, 307, 0]"]
- 163["Segment
[315, 337, 0]"]
- 164["Segment
[345, 369, 0]"]
- 165["Segment
[377, 433, 0]"]
- 166["Segment
[441, 448, 0]"]
- 167[Solid2d]
+ subgraph path123 [Path]
+ 123["Path
[235, 276, 0]"]
+ 124["Segment
[284, 307, 0]"]
+ 125["Segment
[315, 337, 0]"]
+ 126["Segment
[345, 369, 0]"]
+ 127["Segment
[377, 433, 0]"]
+ 128["Segment
[441, 448, 0]"]
+ 129[Solid2d]
end
- subgraph path182 [Path]
- 182["Path
[2887, 2928, 0]"]
- 183["Segment
[2941, 2959, 0]"]
- 184["Segment
[2982, 3000, 0]"]
- 185["Segment
[3026, 3044, 0]"]
- 186["Segment
[3065, 3084, 0]"]
- 187["Segment
[3109, 3127, 0]"]
- 188["Segment
[3150, 3168, 0]"]
- 189["Segment
[3193, 3212, 0]"]
- 190["Segment
[3238, 3257, 0]"]
- 191["Segment
[3283, 3302, 0]"]
- 192["Segment
[3325, 3343, 0]"]
- 193["Segment
[3370, 3389, 0]"]
- 194["Segment
[3415, 3471, 0]"]
- 195["Segment
[3477, 3484, 0]"]
- 196[Solid2d]
+ subgraph path139 [Path]
+ 139["Path
[2887, 2928, 0]"]
+ 140["Segment
[2941, 2959, 0]"]
+ 141["Segment
[2982, 3000, 0]"]
+ 142["Segment
[3026, 3044, 0]"]
+ 143["Segment
[3065, 3084, 0]"]
+ 144["Segment
[3109, 3127, 0]"]
+ 145["Segment
[3150, 3168, 0]"]
+ 146["Segment
[3193, 3212, 0]"]
+ 147["Segment
[3238, 3257, 0]"]
+ 148["Segment
[3283, 3302, 0]"]
+ 149["Segment
[3325, 3343, 0]"]
+ 150["Segment
[3370, 3389, 0]"]
+ 151["Segment
[3415, 3471, 0]"]
+ 152["Segment
[3477, 3484, 0]"]
+ 153[Solid2d]
end
- subgraph path235 [Path]
- 235["Path
[235, 276, 0]"]
- 236["Segment
[284, 307, 0]"]
- 237["Segment
[315, 337, 0]"]
- 238["Segment
[345, 369, 0]"]
- 239["Segment
[377, 433, 0]"]
- 240["Segment
[441, 448, 0]"]
- 241[Solid2d]
+ subgraph path179 [Path]
+ 179["Path
[235, 276, 0]"]
+ 180["Segment
[284, 307, 0]"]
+ 181["Segment
[315, 337, 0]"]
+ 182["Segment
[345, 369, 0]"]
+ 183["Segment
[377, 433, 0]"]
+ 184["Segment
[441, 448, 0]"]
+ 185[Solid2d]
end
- subgraph path256 [Path]
- 256["Path
[235, 276, 0]"]
- 257["Segment
[284, 307, 0]"]
- 258["Segment
[315, 337, 0]"]
- 259["Segment
[345, 369, 0]"]
- 260["Segment
[377, 433, 0]"]
- 261["Segment
[441, 448, 0]"]
- 262[Solid2d]
+ subgraph path195 [Path]
+ 195["Path
[235, 276, 0]"]
+ 196["Segment
[284, 307, 0]"]
+ 197["Segment
[315, 337, 0]"]
+ 198["Segment
[345, 369, 0]"]
+ 199["Segment
[377, 433, 0]"]
+ 200["Segment
[441, 448, 0]"]
+ 201[Solid2d]
end
- subgraph path277 [Path]
- 277["Path
[235, 276, 0]"]
- 278["Segment
[284, 307, 0]"]
- 279["Segment
[315, 337, 0]"]
- 280["Segment
[345, 369, 0]"]
- 281["Segment
[377, 433, 0]"]
- 282["Segment
[441, 448, 0]"]
- 283[Solid2d]
+ subgraph path211 [Path]
+ 211["Path
[235, 276, 0]"]
+ 212["Segment
[284, 307, 0]"]
+ 213["Segment
[315, 337, 0]"]
+ 214["Segment
[345, 369, 0]"]
+ 215["Segment
[377, 433, 0]"]
+ 216["Segment
[441, 448, 0]"]
+ 217[Solid2d]
end
- subgraph path298 [Path]
- 298["Path
[235, 276, 0]"]
- 299["Segment
[284, 307, 0]"]
- 300["Segment
[315, 337, 0]"]
- 301["Segment
[345, 369, 0]"]
- 302["Segment
[377, 433, 0]"]
- 303["Segment
[441, 448, 0]"]
- 304[Solid2d]
+ subgraph path227 [Path]
+ 227["Path
[235, 276, 0]"]
+ 228["Segment
[284, 307, 0]"]
+ 229["Segment
[315, 337, 0]"]
+ 230["Segment
[345, 369, 0]"]
+ 231["Segment
[377, 433, 0]"]
+ 232["Segment
[441, 448, 0]"]
+ 233[Solid2d]
end
- subgraph path319 [Path]
- 319["Path
[235, 276, 0]"]
- 320["Segment
[284, 307, 0]"]
- 321["Segment
[315, 337, 0]"]
- 322["Segment
[345, 369, 0]"]
- 323["Segment
[377, 433, 0]"]
- 324["Segment
[441, 448, 0]"]
- 325[Solid2d]
+ subgraph path243 [Path]
+ 243["Path
[235, 276, 0]"]
+ 244["Segment
[284, 307, 0]"]
+ 245["Segment
[315, 337, 0]"]
+ 246["Segment
[345, 369, 0]"]
+ 247["Segment
[377, 433, 0]"]
+ 248["Segment
[441, 448, 0]"]
+ 249[Solid2d]
end
- subgraph path340 [Path]
- 340["Path
[235, 276, 0]"]
- 341["Segment
[284, 307, 0]"]
- 342["Segment
[315, 337, 0]"]
- 343["Segment
[345, 369, 0]"]
- 344["Segment
[377, 433, 0]"]
- 345["Segment
[441, 448, 0]"]
- 346[Solid2d]
+ subgraph path259 [Path]
+ 259["Path
[235, 276, 0]"]
+ 260["Segment
[284, 307, 0]"]
+ 261["Segment
[315, 337, 0]"]
+ 262["Segment
[345, 369, 0]"]
+ 263["Segment
[377, 433, 0]"]
+ 264["Segment
[441, 448, 0]"]
+ 265[Solid2d]
end
- subgraph path361 [Path]
- 361["Path
[235, 276, 0]"]
- 362["Segment
[284, 307, 0]"]
- 363["Segment
[315, 337, 0]"]
- 364["Segment
[345, 369, 0]"]
- 365["Segment
[377, 433, 0]"]
- 366["Segment
[441, 448, 0]"]
- 367[Solid2d]
+ subgraph path275 [Path]
+ 275["Path
[235, 276, 0]"]
+ 276["Segment
[284, 307, 0]"]
+ 277["Segment
[315, 337, 0]"]
+ 278["Segment
[345, 369, 0]"]
+ 279["Segment
[377, 433, 0]"]
+ 280["Segment
[441, 448, 0]"]
+ 281[Solid2d]
end
- subgraph path382 [Path]
- 382["Path
[235, 276, 0]"]
- 383["Segment
[284, 307, 0]"]
- 384["Segment
[315, 337, 0]"]
- 385["Segment
[345, 369, 0]"]
- 386["Segment
[377, 433, 0]"]
- 387["Segment
[441, 448, 0]"]
- 388[Solid2d]
+ subgraph path291 [Path]
+ 291["Path
[235, 276, 0]"]
+ 292["Segment
[284, 307, 0]"]
+ 293["Segment
[315, 337, 0]"]
+ 294["Segment
[345, 369, 0]"]
+ 295["Segment
[377, 433, 0]"]
+ 296["Segment
[441, 448, 0]"]
+ 297[Solid2d]
end
- subgraph path403 [Path]
- 403["Path
[235, 276, 0]"]
- 404["Segment
[284, 307, 0]"]
- 405["Segment
[315, 337, 0]"]
- 406["Segment
[345, 369, 0]"]
- 407["Segment
[377, 433, 0]"]
- 408["Segment
[441, 448, 0]"]
- 409[Solid2d]
+ subgraph path307 [Path]
+ 307["Path
[235, 276, 0]"]
+ 308["Segment
[284, 307, 0]"]
+ 309["Segment
[315, 337, 0]"]
+ 310["Segment
[345, 369, 0]"]
+ 311["Segment
[377, 433, 0]"]
+ 312["Segment
[441, 448, 0]"]
+ 313[Solid2d]
end
- subgraph path424 [Path]
- 424["Path
[235, 276, 0]"]
- 425["Segment
[284, 307, 0]"]
- 426["Segment
[315, 337, 0]"]
- 427["Segment
[345, 369, 0]"]
- 428["Segment
[377, 433, 0]"]
- 429["Segment
[441, 448, 0]"]
- 430[Solid2d]
+ subgraph path323 [Path]
+ 323["Path
[235, 276, 0]"]
+ 324["Segment
[284, 307, 0]"]
+ 325["Segment
[315, 337, 0]"]
+ 326["Segment
[345, 369, 0]"]
+ 327["Segment
[377, 433, 0]"]
+ 328["Segment
[441, 448, 0]"]
+ 329[Solid2d]
end
- subgraph path445 [Path]
- 445["Path
[235, 276, 0]"]
- 446["Segment
[284, 307, 0]"]
- 447["Segment
[315, 337, 0]"]
- 448["Segment
[345, 369, 0]"]
- 449["Segment
[377, 433, 0]"]
- 450["Segment
[441, 448, 0]"]
- 451[Solid2d]
+ subgraph path339 [Path]
+ 339["Path
[235, 276, 0]"]
+ 340["Segment
[284, 307, 0]"]
+ 341["Segment
[315, 337, 0]"]
+ 342["Segment
[345, 369, 0]"]
+ 343["Segment
[377, 433, 0]"]
+ 344["Segment
[441, 448, 0]"]
+ 345[Solid2d]
end
- subgraph path466 [Path]
- 466["Path
[235, 276, 0]"]
- 467["Segment
[284, 307, 0]"]
- 468["Segment
[315, 337, 0]"]
- 469["Segment
[345, 369, 0]"]
- 470["Segment
[377, 433, 0]"]
- 471["Segment
[441, 448, 0]"]
- 472[Solid2d]
+ subgraph path355 [Path]
+ 355["Path
[235, 276, 0]"]
+ 356["Segment
[284, 307, 0]"]
+ 357["Segment
[315, 337, 0]"]
+ 358["Segment
[345, 369, 0]"]
+ 359["Segment
[377, 433, 0]"]
+ 360["Segment
[441, 448, 0]"]
+ 361[Solid2d]
+ end
+ subgraph path371 [Path]
+ 371["Path
[235, 276, 0]"]
+ 372["Segment
[284, 307, 0]"]
+ 373["Segment
[315, 337, 0]"]
+ 374["Segment
[345, 369, 0]"]
+ 375["Segment
[377, 433, 0]"]
+ 376["Segment
[441, 448, 0]"]
+ 377[Solid2d]
+ end
+ subgraph path388 [Path]
+ 388["Path
[6208, 6259, 0]"]
+ 389["Segment
[6267, 6296, 0]"]
+ 390["Segment
[6304, 6335, 0]"]
+ 391["Segment
[6343, 6373, 0]"]
+ 392["Segment
[6381, 6437, 0]"]
+ 393["Segment
[6445, 6452, 0]"]
+ 394[Solid2d]
+ end
+ subgraph path405 [Path]
+ 405["Path
[235, 276, 0]"]
+ 406["Segment
[284, 307, 0]"]
+ 407["Segment
[315, 337, 0]"]
+ 408["Segment
[345, 369, 0]"]
+ 409["Segment
[377, 433, 0]"]
+ 410["Segment
[441, 448, 0]"]
+ 411[Solid2d]
+ end
+ subgraph path422 [Path]
+ 422["Path
[6208, 6259, 0]"]
+ 423["Segment
[6267, 6296, 0]"]
+ 424["Segment
[6304, 6335, 0]"]
+ 425["Segment
[6343, 6373, 0]"]
+ 426["Segment
[6381, 6437, 0]"]
+ 427["Segment
[6445, 6452, 0]"]
+ 428[Solid2d]
+ end
+ subgraph path439 [Path]
+ 439["Path
[235, 276, 0]"]
+ 440["Segment
[284, 307, 0]"]
+ 441["Segment
[315, 337, 0]"]
+ 442["Segment
[345, 369, 0]"]
+ 443["Segment
[377, 433, 0]"]
+ 444["Segment
[441, 448, 0]"]
+ 445[Solid2d]
+ end
+ subgraph path455 [Path]
+ 455["Path
[235, 276, 0]"]
+ 456["Segment
[284, 307, 0]"]
+ 457["Segment
[315, 337, 0]"]
+ 458["Segment
[345, 369, 0]"]
+ 459["Segment
[377, 433, 0]"]
+ 460["Segment
[441, 448, 0]"]
+ 461[Solid2d]
+ end
+ subgraph path471 [Path]
+ 471["Path
[235, 276, 0]"]
+ 472["Segment
[284, 307, 0]"]
+ 473["Segment
[315, 337, 0]"]
+ 474["Segment
[345, 369, 0]"]
+ 475["Segment
[377, 433, 0]"]
+ 476["Segment
[441, 448, 0]"]
+ 477[Solid2d]
end
subgraph path487 [Path]
487["Path
[235, 276, 0]"]
@@ -205,203 +268,140 @@ flowchart LR
492["Segment
[441, 448, 0]"]
493[Solid2d]
end
- subgraph path509 [Path]
- 509["Path
[6208, 6259, 0]"]
- 510["Segment
[6267, 6296, 0]"]
- 511["Segment
[6304, 6335, 0]"]
- 512["Segment
[6343, 6373, 0]"]
- 513["Segment
[6381, 6437, 0]"]
- 514["Segment
[6445, 6452, 0]"]
- 515[Solid2d]
+ subgraph path503 [Path]
+ 503["Path
[235, 276, 0]"]
+ 504["Segment
[284, 307, 0]"]
+ 505["Segment
[315, 337, 0]"]
+ 506["Segment
[345, 369, 0]"]
+ 507["Segment
[377, 433, 0]"]
+ 508["Segment
[441, 448, 0]"]
+ 509[Solid2d]
end
- subgraph path531 [Path]
- 531["Path
[235, 276, 0]"]
- 532["Segment
[284, 307, 0]"]
- 533["Segment
[315, 337, 0]"]
- 534["Segment
[345, 369, 0]"]
- 535["Segment
[377, 433, 0]"]
- 536["Segment
[441, 448, 0]"]
- 537[Solid2d]
+ subgraph path519 [Path]
+ 519["Path
[235, 276, 0]"]
+ 520["Segment
[284, 307, 0]"]
+ 521["Segment
[315, 337, 0]"]
+ 522["Segment
[345, 369, 0]"]
+ 523["Segment
[377, 433, 0]"]
+ 524["Segment
[441, 448, 0]"]
+ 525[Solid2d]
end
- subgraph path553 [Path]
- 553["Path
[6208, 6259, 0]"]
- 554["Segment
[6267, 6296, 0]"]
- 555["Segment
[6304, 6335, 0]"]
- 556["Segment
[6343, 6373, 0]"]
- 557["Segment
[6381, 6437, 0]"]
- 558["Segment
[6445, 6452, 0]"]
- 559[Solid2d]
+ subgraph path535 [Path]
+ 535["Path
[235, 276, 0]"]
+ 536["Segment
[284, 307, 0]"]
+ 537["Segment
[315, 337, 0]"]
+ 538["Segment
[345, 369, 0]"]
+ 539["Segment
[377, 433, 0]"]
+ 540["Segment
[441, 448, 0]"]
+ 541[Solid2d]
end
- subgraph path575 [Path]
- 575["Path
[235, 276, 0]"]
- 576["Segment
[284, 307, 0]"]
- 577["Segment
[315, 337, 0]"]
- 578["Segment
[345, 369, 0]"]
- 579["Segment
[377, 433, 0]"]
- 580["Segment
[441, 448, 0]"]
- 581[Solid2d]
+ subgraph path551 [Path]
+ 551["Path
[235, 276, 0]"]
+ 552["Segment
[284, 307, 0]"]
+ 553["Segment
[315, 337, 0]"]
+ 554["Segment
[345, 369, 0]"]
+ 555["Segment
[377, 433, 0]"]
+ 556["Segment
[441, 448, 0]"]
+ 557[Solid2d]
end
- subgraph path596 [Path]
- 596["Path
[235, 276, 0]"]
- 597["Segment
[284, 307, 0]"]
- 598["Segment
[315, 337, 0]"]
- 599["Segment
[345, 369, 0]"]
- 600["Segment
[377, 433, 0]"]
- 601["Segment
[441, 448, 0]"]
- 602[Solid2d]
+ subgraph path567 [Path]
+ 567["Path
[235, 276, 0]"]
+ 568["Segment
[284, 307, 0]"]
+ 569["Segment
[315, 337, 0]"]
+ 570["Segment
[345, 369, 0]"]
+ 571["Segment
[377, 433, 0]"]
+ 572["Segment
[441, 448, 0]"]
+ 573[Solid2d]
end
- subgraph path617 [Path]
- 617["Path
[235, 276, 0]"]
- 618["Segment
[284, 307, 0]"]
- 619["Segment
[315, 337, 0]"]
- 620["Segment
[345, 369, 0]"]
- 621["Segment
[377, 433, 0]"]
- 622["Segment
[441, 448, 0]"]
- 623[Solid2d]
+ subgraph path583 [Path]
+ 583["Path
[235, 276, 0]"]
+ 584["Segment
[284, 307, 0]"]
+ 585["Segment
[315, 337, 0]"]
+ 586["Segment
[345, 369, 0]"]
+ 587["Segment
[377, 433, 0]"]
+ 588["Segment
[441, 448, 0]"]
+ 589[Solid2d]
end
- subgraph path638 [Path]
- 638["Path
[235, 276, 0]"]
- 639["Segment
[284, 307, 0]"]
- 640["Segment
[315, 337, 0]"]
- 641["Segment
[345, 369, 0]"]
- 642["Segment
[377, 433, 0]"]
- 643["Segment
[441, 448, 0]"]
- 644[Solid2d]
+ subgraph path599 [Path]
+ 599["Path
[235, 276, 0]"]
+ 600["Segment
[284, 307, 0]"]
+ 601["Segment
[315, 337, 0]"]
+ 602["Segment
[345, 369, 0]"]
+ 603["Segment
[377, 433, 0]"]
+ 604["Segment
[441, 448, 0]"]
+ 605[Solid2d]
end
- subgraph path659 [Path]
- 659["Path
[235, 276, 0]"]
- 660["Segment
[284, 307, 0]"]
- 661["Segment
[315, 337, 0]"]
- 662["Segment
[345, 369, 0]"]
- 663["Segment
[377, 433, 0]"]
- 664["Segment
[441, 448, 0]"]
- 665[Solid2d]
+ subgraph path615 [Path]
+ 615["Path
[235, 276, 0]"]
+ 616["Segment
[284, 307, 0]"]
+ 617["Segment
[315, 337, 0]"]
+ 618["Segment
[345, 369, 0]"]
+ 619["Segment
[377, 433, 0]"]
+ 620["Segment
[441, 448, 0]"]
+ 621[Solid2d]
end
- subgraph path680 [Path]
- 680["Path
[235, 276, 0]"]
- 681["Segment
[284, 307, 0]"]
- 682["Segment
[315, 337, 0]"]
- 683["Segment
[345, 369, 0]"]
- 684["Segment
[377, 433, 0]"]
- 685["Segment
[441, 448, 0]"]
- 686[Solid2d]
+ subgraph path631 [Path]
+ 631["Path
[235, 276, 0]"]
+ 632["Segment
[284, 307, 0]"]
+ 633["Segment
[315, 337, 0]"]
+ 634["Segment
[345, 369, 0]"]
+ 635["Segment
[377, 433, 0]"]
+ 636["Segment
[441, 448, 0]"]
+ 637[Solid2d]
end
- subgraph path701 [Path]
- 701["Path
[235, 276, 0]"]
- 702["Segment
[284, 307, 0]"]
- 703["Segment
[315, 337, 0]"]
- 704["Segment
[345, 369, 0]"]
- 705["Segment
[377, 433, 0]"]
- 706["Segment
[441, 448, 0]"]
- 707[Solid2d]
+ subgraph path647 [Path]
+ 647["Path
[235, 276, 0]"]
+ 648["Segment
[284, 307, 0]"]
+ 649["Segment
[315, 337, 0]"]
+ 650["Segment
[345, 369, 0]"]
+ 651["Segment
[377, 433, 0]"]
+ 652["Segment
[441, 448, 0]"]
+ 653[Solid2d]
end
- subgraph path722 [Path]
- 722["Path
[235, 276, 0]"]
- 723["Segment
[284, 307, 0]"]
- 724["Segment
[315, 337, 0]"]
- 725["Segment
[345, 369, 0]"]
- 726["Segment
[377, 433, 0]"]
- 727["Segment
[441, 448, 0]"]
- 728[Solid2d]
+ subgraph path663 [Path]
+ 663["Path
[235, 276, 0]"]
+ 664["Segment
[284, 307, 0]"]
+ 665["Segment
[315, 337, 0]"]
+ 666["Segment
[345, 369, 0]"]
+ 667["Segment
[377, 433, 0]"]
+ 668["Segment
[441, 448, 0]"]
+ 669[Solid2d]
end
- subgraph path743 [Path]
- 743["Path
[235, 276, 0]"]
- 744["Segment
[284, 307, 0]"]
- 745["Segment
[315, 337, 0]"]
- 746["Segment
[345, 369, 0]"]
- 747["Segment
[377, 433, 0]"]
- 748["Segment
[441, 448, 0]"]
- 749[Solid2d]
+ subgraph path679 [Path]
+ 679["Path
[235, 276, 0]"]
+ 680["Segment
[284, 307, 0]"]
+ 681["Segment
[315, 337, 0]"]
+ 682["Segment
[345, 369, 0]"]
+ 683["Segment
[377, 433, 0]"]
+ 684["Segment
[441, 448, 0]"]
+ 685[Solid2d]
end
- subgraph path764 [Path]
- 764["Path
[235, 276, 0]"]
- 765["Segment
[284, 307, 0]"]
- 766["Segment
[315, 337, 0]"]
- 767["Segment
[345, 369, 0]"]
- 768["Segment
[377, 433, 0]"]
- 769["Segment
[441, 448, 0]"]
- 770[Solid2d]
+ subgraph path695 [Path]
+ 695["Path
[235, 276, 0]"]
+ 696["Segment
[284, 307, 0]"]
+ 697["Segment
[315, 337, 0]"]
+ 698["Segment
[345, 369, 0]"]
+ 699["Segment
[377, 433, 0]"]
+ 700["Segment
[441, 448, 0]"]
+ 701[Solid2d]
end
- subgraph path785 [Path]
- 785["Path
[235, 276, 0]"]
- 786["Segment
[284, 307, 0]"]
- 787["Segment
[315, 337, 0]"]
- 788["Segment
[345, 369, 0]"]
- 789["Segment
[377, 433, 0]"]
- 790["Segment
[441, 448, 0]"]
- 791[Solid2d]
+ subgraph path711 [Path]
+ 711["Path
[235, 276, 0]"]
+ 712["Segment
[284, 307, 0]"]
+ 713["Segment
[315, 337, 0]"]
+ 714["Segment
[345, 369, 0]"]
+ 715["Segment
[377, 433, 0]"]
+ 716["Segment
[441, 448, 0]"]
+ 717[Solid2d]
end
- subgraph path806 [Path]
- 806["Path
[235, 276, 0]"]
- 807["Segment
[284, 307, 0]"]
- 808["Segment
[315, 337, 0]"]
- 809["Segment
[345, 369, 0]"]
- 810["Segment
[377, 433, 0]"]
- 811["Segment
[441, 448, 0]"]
- 812[Solid2d]
- end
- subgraph path827 [Path]
- 827["Path
[235, 276, 0]"]
- 828["Segment
[284, 307, 0]"]
- 829["Segment
[315, 337, 0]"]
- 830["Segment
[345, 369, 0]"]
- 831["Segment
[377, 433, 0]"]
- 832["Segment
[441, 448, 0]"]
- 833[Solid2d]
- end
- subgraph path848 [Path]
- 848["Path
[235, 276, 0]"]
- 849["Segment
[284, 307, 0]"]
- 850["Segment
[315, 337, 0]"]
- 851["Segment
[345, 369, 0]"]
- 852["Segment
[377, 433, 0]"]
- 853["Segment
[441, 448, 0]"]
- 854[Solid2d]
- end
- subgraph path869 [Path]
- 869["Path
[235, 276, 0]"]
- 870["Segment
[284, 307, 0]"]
- 871["Segment
[315, 337, 0]"]
- 872["Segment
[345, 369, 0]"]
- 873["Segment
[377, 433, 0]"]
- 874["Segment
[441, 448, 0]"]
- 875[Solid2d]
- end
- subgraph path890 [Path]
- 890["Path
[235, 276, 0]"]
- 891["Segment
[284, 307, 0]"]
- 892["Segment
[315, 337, 0]"]
- 893["Segment
[345, 369, 0]"]
- 894["Segment
[377, 433, 0]"]
- 895["Segment
[441, 448, 0]"]
- 896[Solid2d]
- end
- subgraph path911 [Path]
- 911["Path
[235, 276, 0]"]
- 912["Segment
[284, 307, 0]"]
- 913["Segment
[315, 337, 0]"]
- 914["Segment
[345, 369, 0]"]
- 915["Segment
[377, 433, 0]"]
- 916["Segment
[441, 448, 0]"]
- 917[Solid2d]
- end
- subgraph path932 [Path]
- 932["Path
[235, 276, 0]"]
- 933["Segment
[284, 307, 0]"]
- 934["Segment
[315, 337, 0]"]
- 935["Segment
[345, 369, 0]"]
- 936["Segment
[377, 433, 0]"]
- 937["Segment
[441, 448, 0]"]
- 938[Solid2d]
- end
- subgraph path953 [Path]
- 953["Path
[235, 276, 0]"]
- 954["Segment
[284, 307, 0]"]
- 955["Segment
[315, 337, 0]"]
- 956["Segment
[345, 369, 0]"]
- 957["Segment
[377, 433, 0]"]
- 958["Segment
[441, 448, 0]"]
- 959[Solid2d]
+ subgraph path727 [Path]
+ 727["Path
[235, 276, 0]"]
+ 728["Segment
[284, 307, 0]"]
+ 729["Segment
[315, 337, 0]"]
+ 730["Segment
[345, 369, 0]"]
+ 731["Segment
[377, 433, 0]"]
+ 732["Segment
[441, 448, 0]"]
+ 733[Solid2d]
end
1["Plane
[609, 626, 0]"]
9["Sweep Extrusion
[905, 935, 0]"]
@@ -412,693 +412,462 @@ flowchart LR
14["Cap Start"]
15["Cap End"]
16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
+ 17["SweepEdge Opposite"]
18["SweepEdge Opposite"]
- 19["SweepEdge Adjacent"]
- 20["SweepEdge Opposite"]
- 21["SweepEdge Adjacent"]
- 22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
- 31["Sweep Extrusion
[456, 479, 0]"]
- 32[Wall]
- 33[Wall]
- 34[Wall]
- 35[Wall]
- 36["Cap End"]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
- 39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 41["SweepEdge Opposite"]
- 42["SweepEdge Adjacent"]
- 43["SweepEdge Opposite"]
- 44["SweepEdge Adjacent"]
- 60["Sweep Extrusion
[2212, 2243, 0]"]
+ 26["Sweep Extrusion
[456, 479, 0]"]
+ 27[Wall]
+ 28[Wall]
+ 29[Wall]
+ 30[Wall]
+ 31["Cap End"]
+ 32["SweepEdge Opposite"]
+ 33["SweepEdge Opposite"]
+ 34["SweepEdge Opposite"]
+ 50["Sweep Extrusion
[2212, 2243, 0]"]
+ 51[Wall]
+ 52[Wall]
+ 53[Wall]
+ 54[Wall]
+ 55[Wall]
+ 56[Wall]
+ 57[Wall]
+ 58[Wall]
+ 59[Wall]
+ 60[Wall]
61[Wall]
62[Wall]
- 63[Wall]
- 64[Wall]
- 65[Wall]
- 66[Wall]
- 67[Wall]
- 68[Wall]
- 69[Wall]
- 70[Wall]
- 71[Wall]
- 72[Wall]
- 73["Cap Start"]
+ 63["Cap Start"]
+ 64["SweepEdge Opposite"]
+ 65["SweepEdge Opposite"]
+ 66["SweepEdge Opposite"]
+ 67["SweepEdge Opposite"]
+ 68["SweepEdge Opposite"]
+ 69["SweepEdge Opposite"]
+ 70["SweepEdge Opposite"]
+ 71["SweepEdge Opposite"]
+ 72["SweepEdge Opposite"]
+ 73["SweepEdge Opposite"]
74["SweepEdge Opposite"]
- 75["SweepEdge Adjacent"]
- 76["SweepEdge Opposite"]
- 77["SweepEdge Adjacent"]
- 78["SweepEdge Opposite"]
- 79["SweepEdge Adjacent"]
- 80["SweepEdge Opposite"]
- 81["SweepEdge Adjacent"]
- 82["SweepEdge Opposite"]
- 83["SweepEdge Adjacent"]
- 84["SweepEdge Opposite"]
- 85["SweepEdge Adjacent"]
- 86["SweepEdge Opposite"]
- 87["SweepEdge Adjacent"]
+ 82["Sweep Extrusion
[456, 479, 0]"]
+ 83[Wall]
+ 84[Wall]
+ 85[Wall]
+ 86[Wall]
+ 87["Cap End"]
88["SweepEdge Opposite"]
- 89["SweepEdge Adjacent"]
+ 89["SweepEdge Opposite"]
90["SweepEdge Opposite"]
- 91["SweepEdge Adjacent"]
- 92["SweepEdge Opposite"]
- 93["SweepEdge Adjacent"]
- 94["SweepEdge Opposite"]
- 95["SweepEdge Adjacent"]
- 96["SweepEdge Opposite"]
- 97["SweepEdge Adjacent"]
- 105["Sweep Extrusion
[456, 479, 0]"]
- 106[Wall]
- 107[Wall]
- 108[Wall]
- 109[Wall]
- 110["Cap End"]
- 111["SweepEdge Opposite"]
- 112["SweepEdge Adjacent"]
- 113["SweepEdge Opposite"]
- 114["SweepEdge Adjacent"]
- 115["SweepEdge Opposite"]
- 116["SweepEdge Adjacent"]
- 117["SweepEdge Opposite"]
- 118["SweepEdge Adjacent"]
- 126["Sweep Extrusion
[456, 479, 0]"]
- 127[Wall]
- 128[Wall]
- 129[Wall]
- 130[Wall]
- 131["Cap End"]
- 132["SweepEdge Opposite"]
- 133["SweepEdge Adjacent"]
- 134["SweepEdge Opposite"]
- 135["SweepEdge Adjacent"]
+ 98["Sweep Extrusion
[456, 479, 0]"]
+ 99[Wall]
+ 100[Wall]
+ 101[Wall]
+ 102[Wall]
+ 103["Cap End"]
+ 104["SweepEdge Opposite"]
+ 105["SweepEdge Opposite"]
+ 106["SweepEdge Opposite"]
+ 114["Sweep Extrusion
[456, 479, 0]"]
+ 115[Wall]
+ 116[Wall]
+ 117[Wall]
+ 118[Wall]
+ 119["Cap End"]
+ 120["SweepEdge Opposite"]
+ 121["SweepEdge Opposite"]
+ 122["SweepEdge Opposite"]
+ 130["Sweep Extrusion
[456, 479, 0]"]
+ 131[Wall]
+ 132[Wall]
+ 133[Wall]
+ 134[Wall]
+ 135["Cap End"]
136["SweepEdge Opposite"]
- 137["SweepEdge Adjacent"]
+ 137["SweepEdge Opposite"]
138["SweepEdge Opposite"]
- 139["SweepEdge Adjacent"]
- 147["Sweep Extrusion
[456, 479, 0]"]
- 148[Wall]
- 149[Wall]
- 150[Wall]
- 151[Wall]
- 152["Cap End"]
- 153["SweepEdge Opposite"]
- 154["SweepEdge Adjacent"]
- 155["SweepEdge Opposite"]
- 156["SweepEdge Adjacent"]
- 157["SweepEdge Opposite"]
- 158["SweepEdge Adjacent"]
- 159["SweepEdge Opposite"]
- 160["SweepEdge Adjacent"]
- 168["Sweep Extrusion
[456, 479, 0]"]
- 169[Wall]
- 170[Wall]
- 171[Wall]
- 172[Wall]
- 173["Cap End"]
+ 154["Sweep Extrusion
[3490, 3519, 0]"]
+ 155[Wall]
+ 156[Wall]
+ 157[Wall]
+ 158[Wall]
+ 159[Wall]
+ 160[Wall]
+ 161[Wall]
+ 162[Wall]
+ 163[Wall]
+ 164[Wall]
+ 165[Wall]
+ 166[Wall]
+ 167["Cap End"]
+ 168["SweepEdge Opposite"]
+ 169["SweepEdge Opposite"]
+ 170["SweepEdge Opposite"]
+ 171["SweepEdge Opposite"]
+ 172["SweepEdge Opposite"]
+ 173["SweepEdge Opposite"]
174["SweepEdge Opposite"]
- 175["SweepEdge Adjacent"]
+ 175["SweepEdge Opposite"]
176["SweepEdge Opposite"]
- 177["SweepEdge Adjacent"]
+ 177["SweepEdge Opposite"]
178["SweepEdge Opposite"]
- 179["SweepEdge Adjacent"]
- 180["SweepEdge Opposite"]
- 181["SweepEdge Adjacent"]
- 197["Sweep Extrusion
[3490, 3519, 0]"]
- 198[Wall]
- 199[Wall]
- 200[Wall]
- 201[Wall]
- 202[Wall]
+ 186["Sweep Extrusion
[456, 479, 0]"]
+ 187[Wall]
+ 188[Wall]
+ 189[Wall]
+ 190[Wall]
+ 191["Cap End"]
+ 192["SweepEdge Opposite"]
+ 193["SweepEdge Opposite"]
+ 194["SweepEdge Opposite"]
+ 202["Sweep Extrusion
[456, 479, 0]"]
203[Wall]
204[Wall]
205[Wall]
206[Wall]
- 207[Wall]
- 208[Wall]
- 209[Wall]
- 210["Cap End"]
- 211["SweepEdge Opposite"]
- 212["SweepEdge Adjacent"]
- 213["SweepEdge Opposite"]
- 214["SweepEdge Adjacent"]
- 215["SweepEdge Opposite"]
- 216["SweepEdge Adjacent"]
- 217["SweepEdge Opposite"]
- 218["SweepEdge Adjacent"]
- 219["SweepEdge Opposite"]
- 220["SweepEdge Adjacent"]
- 221["SweepEdge Opposite"]
- 222["SweepEdge Adjacent"]
- 223["SweepEdge Opposite"]
- 224["SweepEdge Adjacent"]
+ 207["Cap End"]
+ 208["SweepEdge Opposite"]
+ 209["SweepEdge Opposite"]
+ 210["SweepEdge Opposite"]
+ 218["Sweep Extrusion
[456, 479, 0]"]
+ 219[Wall]
+ 220[Wall]
+ 221[Wall]
+ 222[Wall]
+ 223["Cap End"]
+ 224["SweepEdge Opposite"]
225["SweepEdge Opposite"]
- 226["SweepEdge Adjacent"]
- 227["SweepEdge Opposite"]
- 228["SweepEdge Adjacent"]
- 229["SweepEdge Opposite"]
- 230["SweepEdge Adjacent"]
- 231["SweepEdge Opposite"]
- 232["SweepEdge Adjacent"]
- 233["SweepEdge Opposite"]
- 234["SweepEdge Adjacent"]
- 242["Sweep Extrusion
[456, 479, 0]"]
- 243[Wall]
- 244[Wall]
- 245[Wall]
- 246[Wall]
- 247["Cap End"]
- 248["SweepEdge Opposite"]
- 249["SweepEdge Adjacent"]
- 250["SweepEdge Opposite"]
- 251["SweepEdge Adjacent"]
- 252["SweepEdge Opposite"]
- 253["SweepEdge Adjacent"]
- 254["SweepEdge Opposite"]
- 255["SweepEdge Adjacent"]
- 263["Sweep Extrusion
[456, 479, 0]"]
- 264[Wall]
- 265[Wall]
- 266[Wall]
+ 226["SweepEdge Opposite"]
+ 234["Sweep Extrusion
[456, 479, 0]"]
+ 235[Wall]
+ 236[Wall]
+ 237[Wall]
+ 238[Wall]
+ 239["Cap End"]
+ 240["SweepEdge Opposite"]
+ 241["SweepEdge Opposite"]
+ 242["SweepEdge Opposite"]
+ 250["Sweep Extrusion
[456, 479, 0]"]
+ 251[Wall]
+ 252[Wall]
+ 253[Wall]
+ 254[Wall]
+ 255["Cap End"]
+ 256["SweepEdge Opposite"]
+ 257["SweepEdge Opposite"]
+ 258["SweepEdge Opposite"]
+ 266["Sweep Extrusion
[456, 479, 0]"]
267[Wall]
- 268["Cap End"]
- 269["SweepEdge Opposite"]
- 270["SweepEdge Adjacent"]
- 271["SweepEdge Opposite"]
- 272["SweepEdge Adjacent"]
+ 268[Wall]
+ 269[Wall]
+ 270[Wall]
+ 271["Cap End"]
+ 272["SweepEdge Opposite"]
273["SweepEdge Opposite"]
- 274["SweepEdge Adjacent"]
- 275["SweepEdge Opposite"]
- 276["SweepEdge Adjacent"]
- 284["Sweep Extrusion
[456, 479, 0]"]
+ 274["SweepEdge Opposite"]
+ 282["Sweep Extrusion
[456, 479, 0]"]
+ 283[Wall]
+ 284[Wall]
285[Wall]
286[Wall]
- 287[Wall]
- 288[Wall]
- 289["Cap End"]
+ 287["Cap Start"]
+ 288["SweepEdge Opposite"]
+ 289["SweepEdge Opposite"]
290["SweepEdge Opposite"]
- 291["SweepEdge Adjacent"]
- 292["SweepEdge Opposite"]
- 293["SweepEdge Adjacent"]
- 294["SweepEdge Opposite"]
- 295["SweepEdge Adjacent"]
- 296["SweepEdge Opposite"]
- 297["SweepEdge Adjacent"]
- 305["Sweep Extrusion
[456, 479, 0]"]
- 306[Wall]
- 307[Wall]
- 308[Wall]
- 309[Wall]
- 310["Cap End"]
- 311["SweepEdge Opposite"]
- 312["SweepEdge Adjacent"]
- 313["SweepEdge Opposite"]
- 314["SweepEdge Adjacent"]
- 315["SweepEdge Opposite"]
- 316["SweepEdge Adjacent"]
- 317["SweepEdge Opposite"]
- 318["SweepEdge Adjacent"]
- 326["Sweep Extrusion
[456, 479, 0]"]
- 327[Wall]
- 328[Wall]
- 329[Wall]
- 330[Wall]
- 331["Cap End"]
- 332["SweepEdge Opposite"]
- 333["SweepEdge Adjacent"]
- 334["SweepEdge Opposite"]
- 335["SweepEdge Adjacent"]
+ 298["Sweep Extrusion
[456, 479, 0]"]
+ 299[Wall]
+ 300[Wall]
+ 301[Wall]
+ 302[Wall]
+ 303["Cap Start"]
+ 304["SweepEdge Opposite"]
+ 305["SweepEdge Opposite"]
+ 306["SweepEdge Opposite"]
+ 314["Sweep Extrusion
[456, 479, 0]"]
+ 315[Wall]
+ 316[Wall]
+ 317[Wall]
+ 318[Wall]
+ 319["Cap Start"]
+ 320["SweepEdge Opposite"]
+ 321["SweepEdge Opposite"]
+ 322["SweepEdge Opposite"]
+ 330["Sweep Extrusion
[456, 479, 0]"]
+ 331[Wall]
+ 332[Wall]
+ 333[Wall]
+ 334[Wall]
+ 335["Cap End"]
336["SweepEdge Opposite"]
- 337["SweepEdge Adjacent"]
+ 337["SweepEdge Opposite"]
338["SweepEdge Opposite"]
- 339["SweepEdge Adjacent"]
- 347["Sweep Extrusion
[456, 479, 0]"]
+ 346["Sweep Extrusion
[456, 479, 0]"]
+ 347[Wall]
348[Wall]
349[Wall]
350[Wall]
- 351[Wall]
- 352["Cap End"]
+ 351["Cap Start"]
+ 352["SweepEdge Opposite"]
353["SweepEdge Opposite"]
- 354["SweepEdge Adjacent"]
- 355["SweepEdge Opposite"]
- 356["SweepEdge Adjacent"]
- 357["SweepEdge Opposite"]
- 358["SweepEdge Adjacent"]
- 359["SweepEdge Opposite"]
- 360["SweepEdge Adjacent"]
- 368["Sweep Extrusion
[456, 479, 0]"]
- 369[Wall]
- 370[Wall]
- 371[Wall]
- 372[Wall]
- 373["Cap Start"]
- 374["SweepEdge Opposite"]
- 375["SweepEdge Adjacent"]
- 376["SweepEdge Opposite"]
- 377["SweepEdge Adjacent"]
- 378["SweepEdge Opposite"]
- 379["SweepEdge Adjacent"]
- 380["SweepEdge Opposite"]
- 381["SweepEdge Adjacent"]
- 389["Sweep Extrusion
[456, 479, 0]"]
- 390[Wall]
- 391[Wall]
- 392[Wall]
- 393[Wall]
- 394["Cap Start"]
- 395["SweepEdge Opposite"]
- 396["SweepEdge Adjacent"]
- 397["SweepEdge Opposite"]
- 398["SweepEdge Adjacent"]
- 399["SweepEdge Opposite"]
- 400["SweepEdge Adjacent"]
- 401["SweepEdge Opposite"]
- 402["SweepEdge Adjacent"]
- 410["Sweep Extrusion
[456, 479, 0]"]
- 411[Wall]
- 412[Wall]
+ 354["SweepEdge Opposite"]
+ 362["Sweep Extrusion
[456, 479, 0]"]
+ 363[Wall]
+ 364[Wall]
+ 365[Wall]
+ 366[Wall]
+ 367["Cap Start"]
+ 368["SweepEdge Opposite"]
+ 369["SweepEdge Opposite"]
+ 370["SweepEdge Opposite"]
+ 378["Sweep Extrusion
[456, 479, 0]"]
+ 379[Wall]
+ 380[Wall]
+ 381[Wall]
+ 382[Wall]
+ 383["Cap Start"]
+ 384["SweepEdge Opposite"]
+ 385["SweepEdge Opposite"]
+ 386["SweepEdge Opposite"]
+ 387["Plane
[6183, 6200, 0]"]
+ 395["Sweep Extrusion
[6466, 6511, 0]"]
+ 396[Wall]
+ 397[Wall]
+ 398[Wall]
+ 399[Wall]
+ 400["Cap Start"]
+ 401["Cap End"]
+ 402["SweepEdge Opposite"]
+ 403["SweepEdge Opposite"]
+ 404["SweepEdge Opposite"]
+ 412["Sweep Extrusion
[456, 479, 0]"]
413[Wall]
414[Wall]
- 415["Cap Start"]
- 416["SweepEdge Opposite"]
- 417["SweepEdge Adjacent"]
+ 415[Wall]
+ 416[Wall]
+ 417["Cap End"]
418["SweepEdge Opposite"]
- 419["SweepEdge Adjacent"]
+ 419["SweepEdge Opposite"]
420["SweepEdge Opposite"]
- 421["SweepEdge Adjacent"]
- 422["SweepEdge Opposite"]
- 423["SweepEdge Adjacent"]
- 431["Sweep Extrusion
[456, 479, 0]"]
+ 421["Plane
[6183, 6200, 0]"]
+ 429["Sweep Extrusion
[6466, 6511, 0]"]
+ 430[Wall]
+ 431[Wall]
432[Wall]
433[Wall]
- 434[Wall]
- 435[Wall]
- 436["Cap End"]
+ 434["Cap Start"]
+ 435["Cap End"]
+ 436["SweepEdge Opposite"]
437["SweepEdge Opposite"]
- 438["SweepEdge Adjacent"]
- 439["SweepEdge Opposite"]
- 440["SweepEdge Adjacent"]
- 441["SweepEdge Opposite"]
- 442["SweepEdge Adjacent"]
- 443["SweepEdge Opposite"]
- 444["SweepEdge Adjacent"]
- 452["Sweep Extrusion
[456, 479, 0]"]
- 453[Wall]
- 454[Wall]
- 455[Wall]
- 456[Wall]
- 457["Cap Start"]
- 458["SweepEdge Opposite"]
- 459["SweepEdge Adjacent"]
- 460["SweepEdge Opposite"]
- 461["SweepEdge Adjacent"]
- 462["SweepEdge Opposite"]
- 463["SweepEdge Adjacent"]
- 464["SweepEdge Opposite"]
- 465["SweepEdge Adjacent"]
- 473["Sweep Extrusion
[456, 479, 0]"]
- 474[Wall]
- 475[Wall]
- 476[Wall]
- 477[Wall]
- 478["Cap Start"]
- 479["SweepEdge Opposite"]
- 480["SweepEdge Adjacent"]
- 481["SweepEdge Opposite"]
- 482["SweepEdge Adjacent"]
- 483["SweepEdge Opposite"]
- 484["SweepEdge Adjacent"]
+ 438["SweepEdge Opposite"]
+ 446["Sweep Extrusion
[456, 479, 0]"]
+ 447[Wall]
+ 448[Wall]
+ 449[Wall]
+ 450[Wall]
+ 451["Cap End"]
+ 452["SweepEdge Opposite"]
+ 453["SweepEdge Opposite"]
+ 454["SweepEdge Opposite"]
+ 462["Sweep Extrusion
[456, 479, 0]"]
+ 463[Wall]
+ 464[Wall]
+ 465[Wall]
+ 466[Wall]
+ 467["Cap End"]
+ 468["SweepEdge Opposite"]
+ 469["SweepEdge Opposite"]
+ 470["SweepEdge Opposite"]
+ 478["Sweep Extrusion
[456, 479, 0]"]
+ 479[Wall]
+ 480[Wall]
+ 481[Wall]
+ 482[Wall]
+ 483["Cap End"]
+ 484["SweepEdge Opposite"]
485["SweepEdge Opposite"]
- 486["SweepEdge Adjacent"]
+ 486["SweepEdge Opposite"]
494["Sweep Extrusion
[456, 479, 0]"]
495[Wall]
496[Wall]
497[Wall]
498[Wall]
- 499["Cap Start"]
+ 499["Cap End"]
500["SweepEdge Opposite"]
- 501["SweepEdge Adjacent"]
+ 501["SweepEdge Opposite"]
502["SweepEdge Opposite"]
- 503["SweepEdge Adjacent"]
- 504["SweepEdge Opposite"]
- 505["SweepEdge Adjacent"]
- 506["SweepEdge Opposite"]
- 507["SweepEdge Adjacent"]
- 508["Plane
[6183, 6200, 0]"]
- 516["Sweep Extrusion
[6466, 6511, 0]"]
- 517[Wall]
- 518[Wall]
- 519[Wall]
- 520[Wall]
- 521["Cap Start"]
- 522["Cap End"]
- 523["SweepEdge Opposite"]
- 524["SweepEdge Adjacent"]
- 525["SweepEdge Opposite"]
- 526["SweepEdge Adjacent"]
- 527["SweepEdge Opposite"]
- 528["SweepEdge Adjacent"]
- 529["SweepEdge Opposite"]
- 530["SweepEdge Adjacent"]
- 538["Sweep Extrusion
[456, 479, 0]"]
- 539[Wall]
- 540[Wall]
- 541[Wall]
- 542[Wall]
- 543["Cap End"]
- 544["SweepEdge Opposite"]
- 545["SweepEdge Adjacent"]
- 546["SweepEdge Opposite"]
- 547["SweepEdge Adjacent"]
+ 510["Sweep Extrusion
[456, 479, 0]"]
+ 511[Wall]
+ 512[Wall]
+ 513[Wall]
+ 514[Wall]
+ 515["Cap End"]
+ 516["SweepEdge Opposite"]
+ 517["SweepEdge Opposite"]
+ 518["SweepEdge Opposite"]
+ 526["Sweep Extrusion
[456, 479, 0]"]
+ 527[Wall]
+ 528[Wall]
+ 529[Wall]
+ 530[Wall]
+ 531["Cap End"]
+ 532["SweepEdge Opposite"]
+ 533["SweepEdge Opposite"]
+ 534["SweepEdge Opposite"]
+ 542["Sweep Extrusion
[456, 479, 0]"]
+ 543[Wall]
+ 544[Wall]
+ 545[Wall]
+ 546[Wall]
+ 547["Cap End"]
548["SweepEdge Opposite"]
- 549["SweepEdge Adjacent"]
+ 549["SweepEdge Opposite"]
550["SweepEdge Opposite"]
- 551["SweepEdge Adjacent"]
- 552["Plane
[6183, 6200, 0]"]
- 560["Sweep Extrusion
[6466, 6511, 0]"]
+ 558["Sweep Extrusion
[456, 479, 0]"]
+ 559[Wall]
+ 560[Wall]
561[Wall]
562[Wall]
- 563[Wall]
- 564[Wall]
- 565["Cap Start"]
- 566["Cap End"]
- 567["SweepEdge Opposite"]
- 568["SweepEdge Adjacent"]
- 569["SweepEdge Opposite"]
- 570["SweepEdge Adjacent"]
- 571["SweepEdge Opposite"]
- 572["SweepEdge Adjacent"]
- 573["SweepEdge Opposite"]
- 574["SweepEdge Adjacent"]
- 582["Sweep Extrusion
[456, 479, 0]"]
- 583[Wall]
- 584[Wall]
- 585[Wall]
- 586[Wall]
- 587["Cap End"]
- 588["SweepEdge Opposite"]
- 589["SweepEdge Adjacent"]
- 590["SweepEdge Opposite"]
- 591["SweepEdge Adjacent"]
- 592["SweepEdge Opposite"]
- 593["SweepEdge Adjacent"]
- 594["SweepEdge Opposite"]
- 595["SweepEdge Adjacent"]
- 603["Sweep Extrusion
[456, 479, 0]"]
- 604[Wall]
- 605[Wall]
- 606[Wall]
+ 563["Cap End"]
+ 564["SweepEdge Opposite"]
+ 565["SweepEdge Opposite"]
+ 566["SweepEdge Opposite"]
+ 574["Sweep Extrusion
[456, 479, 0]"]
+ 575[Wall]
+ 576[Wall]
+ 577[Wall]
+ 578[Wall]
+ 579["Cap End"]
+ 580["SweepEdge Opposite"]
+ 581["SweepEdge Opposite"]
+ 582["SweepEdge Opposite"]
+ 590["Sweep Extrusion
[456, 479, 0]"]
+ 591[Wall]
+ 592[Wall]
+ 593[Wall]
+ 594[Wall]
+ 595["Cap Start"]
+ 596["SweepEdge Opposite"]
+ 597["SweepEdge Opposite"]
+ 598["SweepEdge Opposite"]
+ 606["Sweep Extrusion
[456, 479, 0]"]
607[Wall]
- 608["Cap End"]
- 609["SweepEdge Opposite"]
- 610["SweepEdge Adjacent"]
- 611["SweepEdge Opposite"]
- 612["SweepEdge Adjacent"]
+ 608[Wall]
+ 609[Wall]
+ 610[Wall]
+ 611["Cap Start"]
+ 612["SweepEdge Opposite"]
613["SweepEdge Opposite"]
- 614["SweepEdge Adjacent"]
- 615["SweepEdge Opposite"]
- 616["SweepEdge Adjacent"]
- 624["Sweep Extrusion
[456, 479, 0]"]
+ 614["SweepEdge Opposite"]
+ 622["Sweep Extrusion
[456, 479, 0]"]
+ 623[Wall]
+ 624[Wall]
625[Wall]
626[Wall]
- 627[Wall]
- 628[Wall]
- 629["Cap End"]
+ 627["Cap Start"]
+ 628["SweepEdge Opposite"]
+ 629["SweepEdge Opposite"]
630["SweepEdge Opposite"]
- 631["SweepEdge Adjacent"]
- 632["SweepEdge Opposite"]
- 633["SweepEdge Adjacent"]
- 634["SweepEdge Opposite"]
- 635["SweepEdge Adjacent"]
- 636["SweepEdge Opposite"]
- 637["SweepEdge Adjacent"]
- 645["Sweep Extrusion
[456, 479, 0]"]
- 646[Wall]
- 647[Wall]
- 648[Wall]
- 649[Wall]
- 650["Cap End"]
- 651["SweepEdge Opposite"]
- 652["SweepEdge Adjacent"]
- 653["SweepEdge Opposite"]
- 654["SweepEdge Adjacent"]
- 655["SweepEdge Opposite"]
- 656["SweepEdge Adjacent"]
- 657["SweepEdge Opposite"]
- 658["SweepEdge Adjacent"]
- 666["Sweep Extrusion
[456, 479, 0]"]
- 667[Wall]
- 668[Wall]
- 669[Wall]
- 670[Wall]
- 671["Cap End"]
- 672["SweepEdge Opposite"]
- 673["SweepEdge Adjacent"]
- 674["SweepEdge Opposite"]
- 675["SweepEdge Adjacent"]
+ 638["Sweep Extrusion
[456, 479, 0]"]
+ 639[Wall]
+ 640[Wall]
+ 641[Wall]
+ 642[Wall]
+ 643["Cap Start"]
+ 644["SweepEdge Opposite"]
+ 645["SweepEdge Opposite"]
+ 646["SweepEdge Opposite"]
+ 654["Sweep Extrusion
[456, 479, 0]"]
+ 655[Wall]
+ 656[Wall]
+ 657[Wall]
+ 658[Wall]
+ 659["Cap Start"]
+ 660["SweepEdge Opposite"]
+ 661["SweepEdge Opposite"]
+ 662["SweepEdge Opposite"]
+ 670["Sweep Extrusion
[456, 479, 0]"]
+ 671[Wall]
+ 672[Wall]
+ 673[Wall]
+ 674[Wall]
+ 675["Cap Start"]
676["SweepEdge Opposite"]
- 677["SweepEdge Adjacent"]
+ 677["SweepEdge Opposite"]
678["SweepEdge Opposite"]
- 679["SweepEdge Adjacent"]
- 687["Sweep Extrusion
[456, 479, 0]"]
+ 686["Sweep Extrusion
[456, 479, 0]"]
+ 687[Wall]
688[Wall]
689[Wall]
690[Wall]
- 691[Wall]
- 692["Cap End"]
+ 691["Cap Start"]
+ 692["SweepEdge Opposite"]
693["SweepEdge Opposite"]
- 694["SweepEdge Adjacent"]
- 695["SweepEdge Opposite"]
- 696["SweepEdge Adjacent"]
- 697["SweepEdge Opposite"]
- 698["SweepEdge Adjacent"]
- 699["SweepEdge Opposite"]
- 700["SweepEdge Adjacent"]
- 708["Sweep Extrusion
[456, 479, 0]"]
- 709[Wall]
- 710[Wall]
- 711[Wall]
- 712[Wall]
- 713["Cap End"]
- 714["SweepEdge Opposite"]
- 715["SweepEdge Adjacent"]
- 716["SweepEdge Opposite"]
- 717["SweepEdge Adjacent"]
- 718["SweepEdge Opposite"]
- 719["SweepEdge Adjacent"]
- 720["SweepEdge Opposite"]
- 721["SweepEdge Adjacent"]
- 729["Sweep Extrusion
[456, 479, 0]"]
- 730[Wall]
- 731[Wall]
- 732[Wall]
- 733[Wall]
- 734["Cap End"]
- 735["SweepEdge Opposite"]
- 736["SweepEdge Adjacent"]
- 737["SweepEdge Opposite"]
- 738["SweepEdge Adjacent"]
- 739["SweepEdge Opposite"]
- 740["SweepEdge Adjacent"]
+ 694["SweepEdge Opposite"]
+ 702["Sweep Extrusion
[456, 479, 0]"]
+ 703[Wall]
+ 704[Wall]
+ 705[Wall]
+ 706[Wall]
+ 707["Cap Start"]
+ 708["SweepEdge Opposite"]
+ 709["SweepEdge Opposite"]
+ 710["SweepEdge Opposite"]
+ 718["Sweep Extrusion
[456, 479, 0]"]
+ 719[Wall]
+ 720[Wall]
+ 721[Wall]
+ 722[Wall]
+ 723["Cap Start"]
+ 724["SweepEdge Opposite"]
+ 725["SweepEdge Opposite"]
+ 726["SweepEdge Opposite"]
+ 734["Sweep Extrusion
[456, 479, 0]"]
+ 735[Wall]
+ 736[Wall]
+ 737[Wall]
+ 738[Wall]
+ 739["Cap Start"]
+ 740["SweepEdge Opposite"]
741["SweepEdge Opposite"]
- 742["SweepEdge Adjacent"]
- 750["Sweep Extrusion
[456, 479, 0]"]
- 751[Wall]
- 752[Wall]
- 753[Wall]
- 754[Wall]
- 755["Cap End"]
- 756["SweepEdge Opposite"]
- 757["SweepEdge Adjacent"]
- 758["SweepEdge Opposite"]
- 759["SweepEdge Adjacent"]
- 760["SweepEdge Opposite"]
- 761["SweepEdge Adjacent"]
- 762["SweepEdge Opposite"]
- 763["SweepEdge Adjacent"]
- 771["Sweep Extrusion
[456, 479, 0]"]
- 772[Wall]
- 773[Wall]
- 774[Wall]
- 775[Wall]
- 776["Cap Start"]
- 777["SweepEdge Opposite"]
- 778["SweepEdge Adjacent"]
- 779["SweepEdge Opposite"]
- 780["SweepEdge Adjacent"]
- 781["SweepEdge Opposite"]
- 782["SweepEdge Adjacent"]
- 783["SweepEdge Opposite"]
- 784["SweepEdge Adjacent"]
- 792["Sweep Extrusion
[456, 479, 0]"]
- 793[Wall]
- 794[Wall]
- 795[Wall]
- 796[Wall]
- 797["Cap Start"]
- 798["SweepEdge Opposite"]
- 799["SweepEdge Adjacent"]
- 800["SweepEdge Opposite"]
- 801["SweepEdge Adjacent"]
- 802["SweepEdge Opposite"]
- 803["SweepEdge Adjacent"]
- 804["SweepEdge Opposite"]
- 805["SweepEdge Adjacent"]
- 813["Sweep Extrusion
[456, 479, 0]"]
- 814[Wall]
- 815[Wall]
- 816[Wall]
- 817[Wall]
- 818["Cap Start"]
- 819["SweepEdge Opposite"]
- 820["SweepEdge Adjacent"]
- 821["SweepEdge Opposite"]
- 822["SweepEdge Adjacent"]
- 823["SweepEdge Opposite"]
- 824["SweepEdge Adjacent"]
- 825["SweepEdge Opposite"]
- 826["SweepEdge Adjacent"]
- 834["Sweep Extrusion
[456, 479, 0]"]
- 835[Wall]
- 836[Wall]
- 837[Wall]
- 838[Wall]
- 839["Cap Start"]
- 840["SweepEdge Opposite"]
- 841["SweepEdge Adjacent"]
- 842["SweepEdge Opposite"]
- 843["SweepEdge Adjacent"]
- 844["SweepEdge Opposite"]
- 845["SweepEdge Adjacent"]
- 846["SweepEdge Opposite"]
- 847["SweepEdge Adjacent"]
- 855["Sweep Extrusion
[456, 479, 0]"]
- 856[Wall]
- 857[Wall]
- 858[Wall]
- 859[Wall]
- 860["Cap Start"]
- 861["SweepEdge Opposite"]
- 862["SweepEdge Adjacent"]
- 863["SweepEdge Opposite"]
- 864["SweepEdge Adjacent"]
- 865["SweepEdge Opposite"]
- 866["SweepEdge Adjacent"]
- 867["SweepEdge Opposite"]
- 868["SweepEdge Adjacent"]
- 876["Sweep Extrusion
[456, 479, 0]"]
- 877[Wall]
- 878[Wall]
- 879[Wall]
- 880[Wall]
- 881["Cap Start"]
- 882["SweepEdge Opposite"]
- 883["SweepEdge Adjacent"]
- 884["SweepEdge Opposite"]
- 885["SweepEdge Adjacent"]
- 886["SweepEdge Opposite"]
- 887["SweepEdge Adjacent"]
- 888["SweepEdge Opposite"]
- 889["SweepEdge Adjacent"]
- 897["Sweep Extrusion
[456, 479, 0]"]
- 898[Wall]
- 899[Wall]
- 900[Wall]
- 901[Wall]
- 902["Cap Start"]
- 903["SweepEdge Opposite"]
- 904["SweepEdge Adjacent"]
- 905["SweepEdge Opposite"]
- 906["SweepEdge Adjacent"]
- 907["SweepEdge Opposite"]
- 908["SweepEdge Adjacent"]
- 909["SweepEdge Opposite"]
- 910["SweepEdge Adjacent"]
- 918["Sweep Extrusion
[456, 479, 0]"]
- 919[Wall]
- 920[Wall]
- 921[Wall]
- 922[Wall]
- 923["Cap Start"]
- 924["SweepEdge Opposite"]
- 925["SweepEdge Adjacent"]
- 926["SweepEdge Opposite"]
- 927["SweepEdge Adjacent"]
- 928["SweepEdge Opposite"]
- 929["SweepEdge Adjacent"]
- 930["SweepEdge Opposite"]
- 931["SweepEdge Adjacent"]
- 939["Sweep Extrusion
[456, 479, 0]"]
- 940[Wall]
- 941[Wall]
- 942[Wall]
- 943[Wall]
- 944["Cap Start"]
- 945["SweepEdge Opposite"]
- 946["SweepEdge Adjacent"]
- 947["SweepEdge Opposite"]
- 948["SweepEdge Adjacent"]
- 949["SweepEdge Opposite"]
- 950["SweepEdge Adjacent"]
- 951["SweepEdge Opposite"]
- 952["SweepEdge Adjacent"]
- 960["Sweep Extrusion
[456, 479, 0]"]
- 961[Wall]
- 962[Wall]
- 963[Wall]
- 964[Wall]
- 965["Cap Start"]
- 966["SweepEdge Opposite"]
- 967["SweepEdge Adjacent"]
- 968["SweepEdge Opposite"]
- 969["SweepEdge Adjacent"]
- 970["SweepEdge Opposite"]
- 971["SweepEdge Adjacent"]
- 972["SweepEdge Opposite"]
- 973["SweepEdge Adjacent"]
- 974["StartSketchOnFace
[183, 227, 0]"]
- 975["StartSketchOnFace
[1466, 1500, 0]"]
- 976["StartSketchOnFace
[183, 227, 0]"]
- 977["StartSketchOnFace
[183, 227, 0]"]
- 978["StartSketchOnFace
[183, 227, 0]"]
- 979["StartSketchOnFace
[183, 227, 0]"]
- 980["StartSketchOnFace
[2845, 2881, 0]"]
- 981["StartSketchOnFace
[183, 227, 0]"]
- 982["StartSketchOnFace
[183, 227, 0]"]
- 983["StartSketchOnFace
[183, 227, 0]"]
- 984["StartSketchOnFace
[183, 227, 0]"]
- 985["StartSketchOnFace
[183, 227, 0]"]
- 986["StartSketchOnFace
[183, 227, 0]"]
- 987["StartSketchOnFace
[183, 227, 0]"]
- 988["StartSketchOnFace
[183, 227, 0]"]
- 989["StartSketchOnFace
[183, 227, 0]"]
- 990["StartSketchOnFace
[183, 227, 0]"]
- 991["StartSketchOnFace
[183, 227, 0]"]
- 992["StartSketchOnFace
[183, 227, 0]"]
- 993["StartSketchOnFace
[183, 227, 0]"]
- 994["StartSketchOnFace
[183, 227, 0]"]
- 995["StartSketchOnFace
[183, 227, 0]"]
- 996["StartSketchOnFace
[183, 227, 0]"]
- 997["StartSketchOnFace
[183, 227, 0]"]
- 998["StartSketchOnFace
[183, 227, 0]"]
- 999["StartSketchOnFace
[183, 227, 0]"]
- 1000["StartSketchOnFace
[183, 227, 0]"]
- 1001["StartSketchOnFace
[183, 227, 0]"]
- 1002["StartSketchOnFace
[183, 227, 0]"]
- 1003["StartSketchOnFace
[183, 227, 0]"]
- 1004["StartSketchOnFace
[183, 227, 0]"]
- 1005["StartSketchOnFace
[183, 227, 0]"]
- 1006["StartSketchOnFace
[183, 227, 0]"]
- 1007["StartSketchOnFace
[183, 227, 0]"]
- 1008["StartSketchOnFace
[183, 227, 0]"]
- 1009["StartSketchOnFace
[183, 227, 0]"]
- 1010["StartSketchOnFace
[183, 227, 0]"]
- 1011["StartSketchOnFace
[183, 227, 0]"]
- 1012["StartSketchOnFace
[183, 227, 0]"]
- 1013["StartSketchOnFace
[183, 227, 0]"]
+ 742["SweepEdge Opposite"]
+ 743["StartSketchOnFace
[183, 227, 0]"]
+ 744["StartSketchOnFace
[1466, 1500, 0]"]
+ 745["StartSketchOnFace
[183, 227, 0]"]
+ 746["StartSketchOnFace
[183, 227, 0]"]
+ 747["StartSketchOnFace
[183, 227, 0]"]
+ 748["StartSketchOnFace
[183, 227, 0]"]
+ 749["StartSketchOnFace
[2845, 2881, 0]"]
+ 750["StartSketchOnFace
[183, 227, 0]"]
+ 751["StartSketchOnFace
[183, 227, 0]"]
+ 752["StartSketchOnFace
[183, 227, 0]"]
+ 753["StartSketchOnFace
[183, 227, 0]"]
+ 754["StartSketchOnFace
[183, 227, 0]"]
+ 755["StartSketchOnFace
[183, 227, 0]"]
+ 756["StartSketchOnFace
[183, 227, 0]"]
+ 757["StartSketchOnFace
[183, 227, 0]"]
+ 758["StartSketchOnFace
[183, 227, 0]"]
+ 759["StartSketchOnFace
[183, 227, 0]"]
+ 760["StartSketchOnFace
[183, 227, 0]"]
+ 761["StartSketchOnFace
[183, 227, 0]"]
+ 762["StartSketchOnFace
[183, 227, 0]"]
+ 763["StartSketchOnFace
[183, 227, 0]"]
+ 764["StartSketchOnFace
[183, 227, 0]"]
+ 765["StartSketchOnFace
[183, 227, 0]"]
+ 766["StartSketchOnFace
[183, 227, 0]"]
+ 767["StartSketchOnFace
[183, 227, 0]"]
+ 768["StartSketchOnFace
[183, 227, 0]"]
+ 769["StartSketchOnFace
[183, 227, 0]"]
+ 770["StartSketchOnFace
[183, 227, 0]"]
+ 771["StartSketchOnFace
[183, 227, 0]"]
+ 772["StartSketchOnFace
[183, 227, 0]"]
+ 773["StartSketchOnFace
[183, 227, 0]"]
+ 774["StartSketchOnFace
[183, 227, 0]"]
+ 775["StartSketchOnFace
[183, 227, 0]"]
+ 776["StartSketchOnFace
[183, 227, 0]"]
+ 777["StartSketchOnFace
[183, 227, 0]"]
+ 778["StartSketchOnFace
[183, 227, 0]"]
+ 779["StartSketchOnFace
[183, 227, 0]"]
+ 780["StartSketchOnFace
[183, 227, 0]"]
+ 781["StartSketchOnFace
[183, 227, 0]"]
+ 782["StartSketchOnFace
[183, 227, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -1108,17 +877,16 @@ flowchart LR
2 ---- 9
2 --- 8
3 --- 13
- 3 --- 22
- 3 --- 23
+ 3 --- 18
+ 3 x--> 14
4 --- 12
- 4 --- 20
- 4 --- 21
+ 4 --- 17
+ 4 x--> 14
5 --- 11
- 5 --- 18
- 5 --- 19
+ 5 --- 16
+ 5 x--> 14
6 --- 10
- 6 --- 16
- 6 --- 17
+ 6 x--> 14
9 --- 10
9 --- 11
9 --- 12
@@ -1128,763 +896,1012 @@ flowchart LR
9 --- 16
9 --- 17
9 --- 18
- 9 --- 19
- 9 --- 20
- 9 --- 21
- 9 --- 22
- 9 --- 23
- 11 --- 764
- 11 --- 785
- 11 --- 806
- 11 --- 827
- 11 --- 848
- 11 --- 869
- 11 --- 890
- 11 --- 911
- 11 --- 932
- 11 --- 953
- 12 --- 596
- 12 --- 680
- 15 --- 24
- 15 --- 319
- 15 --- 424
- 24 --- 25
- 24 --- 26
- 24 --- 27
- 24 --- 28
- 24 --- 29
- 24 ---- 31
- 24 --- 30
- 25 --- 35
- 25 --- 43
- 25 --- 44
+ 11 --- 583
+ 11 --- 599
+ 11 --- 615
+ 11 --- 631
+ 11 --- 647
+ 11 --- 663
+ 11 --- 679
+ 11 --- 695
+ 11 --- 711
+ 11 --- 727
+ 12 --- 455
+ 12 --- 519
+ 15 --- 19
+ 15 --- 243
+ 15 --- 323
+ 16 <--x 11
+ 16 <--x 15
+ 17 <--x 12
+ 17 <--x 15
+ 18 <--x 13
+ 18 <--x 15
+ 19 --- 20
+ 19 --- 21
+ 19 --- 22
+ 19 --- 23
+ 19 --- 24
+ 19 ---- 26
+ 19 --- 25
+ 20 --- 30
+ 20 --- 34
+ 20 <--x 15
+ 21 --- 29
+ 21 --- 33
+ 21 <--x 15
+ 22 --- 28
+ 22 --- 32
+ 22 <--x 15
+ 23 --- 27
+ 23 <--x 15
+ 26 --- 27
+ 26 --- 28
+ 26 --- 29
+ 26 --- 30
+ 26 --- 31
+ 26 --- 32
+ 26 --- 33
26 --- 34
- 26 --- 41
- 26 --- 42
- 27 --- 33
- 27 --- 39
- 27 --- 40
- 28 --- 32
- 28 --- 37
- 28 --- 38
- 31 --- 32
- 31 --- 33
- 31 --- 34
31 --- 35
- 31 --- 36
- 31 --- 37
- 31 --- 38
- 31 --- 39
- 31 --- 40
- 31 --- 41
- 31 --- 42
- 31 --- 43
- 31 --- 44
- 36 --- 45
- 45 --- 46
- 45 --- 47
- 45 --- 48
- 45 --- 49
- 45 --- 50
- 45 --- 51
- 45 --- 52
+ 32 <--x 28
+ 32 <--x 31
+ 33 <--x 29
+ 33 <--x 31
+ 34 <--x 30
+ 34 <--x 31
+ 35 --- 36
+ 35 --- 37
+ 35 --- 38
+ 35 --- 39
+ 35 --- 40
+ 35 --- 41
+ 35 --- 42
+ 35 --- 43
+ 35 --- 44
+ 35 --- 45
+ 35 --- 46
+ 35 --- 47
+ 35 --- 48
+ 35 ---- 50
+ 35 --- 49
+ 36 --- 62
+ 36 --- 74
+ 36 <--x 31
+ 37 --- 61
+ 37 --- 73
+ 37 <--x 31
+ 38 --- 60
+ 38 --- 72
+ 38 <--x 31
+ 39 --- 59
+ 39 --- 71
+ 39 <--x 31
+ 40 --- 58
+ 40 --- 70
+ 40 <--x 31
+ 41 --- 57
+ 41 --- 69
+ 41 <--x 31
+ 42 --- 56
+ 42 --- 68
+ 42 <--x 31
+ 43 --- 55
+ 43 --- 67
+ 43 <--x 31
+ 44 --- 54
+ 44 --- 66
+ 44 <--x 31
45 --- 53
- 45 --- 54
- 45 --- 55
- 45 --- 56
- 45 --- 57
- 45 --- 58
- 45 ---- 60
- 45 --- 59
- 46 --- 72
- 46 --- 96
- 46 --- 97
- 47 --- 71
- 47 --- 94
- 47 --- 95
- 48 --- 70
- 48 --- 92
- 48 --- 93
- 49 --- 69
- 49 --- 90
- 49 --- 91
+ 45 --- 65
+ 45 <--x 31
+ 46 --- 52
+ 46 --- 64
+ 46 <--x 31
+ 47 --- 51
+ 47 <--x 31
+ 50 --- 51
+ 50 --- 52
+ 50 --- 53
+ 50 --- 54
+ 50 --- 55
+ 50 --- 56
+ 50 --- 57
+ 50 --- 58
+ 50 --- 59
+ 50 --- 60
+ 50 --- 61
+ 50 --- 62
+ 50 --- 63
+ 50 --- 64
+ 50 --- 65
+ 50 --- 66
+ 50 --- 67
50 --- 68
- 50 --- 88
- 50 --- 89
- 51 --- 67
- 51 --- 86
- 51 --- 87
- 52 --- 66
- 52 --- 84
- 52 --- 85
- 53 --- 65
- 53 --- 82
- 53 --- 83
- 54 --- 64
- 54 --- 80
- 54 --- 81
- 55 --- 63
- 55 --- 78
- 55 --- 79
- 56 --- 62
- 56 --- 76
- 56 --- 77
- 57 --- 61
- 57 --- 74
- 57 --- 75
- 60 --- 61
- 60 --- 62
- 60 --- 63
- 60 --- 64
- 60 --- 65
- 60 --- 66
- 60 --- 67
- 60 --- 68
- 60 --- 69
- 60 --- 70
- 60 --- 71
- 60 --- 72
- 60 --- 73
- 60 --- 74
- 60 --- 75
- 60 --- 76
- 60 --- 77
- 60 --- 78
- 60 --- 79
- 60 --- 80
- 60 --- 81
- 60 --- 82
- 60 --- 83
- 60 --- 84
- 60 --- 85
- 60 --- 86
- 60 --- 87
- 60 --- 88
- 60 --- 89
- 60 --- 90
- 60 --- 91
- 60 --- 92
- 60 --- 93
- 60 --- 94
- 60 --- 95
- 60 --- 96
- 60 --- 97
- 73 --- 98
- 73 --- 119
- 73 --- 140
- 73 --- 161
- 73 --- 182
- 73 --- 235
- 73 --- 256
- 73 --- 277
- 73 --- 298
+ 50 --- 69
+ 50 --- 70
+ 50 --- 71
+ 50 --- 72
+ 50 --- 73
+ 50 --- 74
+ 63 --- 75
+ 63 --- 91
+ 63 --- 107
+ 63 --- 123
+ 63 --- 139
+ 63 --- 179
+ 63 --- 195
+ 63 --- 211
+ 63 --- 227
+ 64 <--x 52
+ 64 <--x 63
+ 65 <--x 53
+ 65 <--x 63
+ 66 <--x 54
+ 66 <--x 63
+ 67 <--x 55
+ 67 <--x 63
+ 68 <--x 56
+ 68 <--x 63
+ 69 <--x 57
+ 69 <--x 63
+ 70 <--x 58
+ 70 <--x 63
+ 71 <--x 59
+ 71 <--x 63
+ 72 <--x 60
+ 72 <--x 63
+ 73 <--x 61
+ 73 <--x 63
+ 74 <--x 62
+ 74 <--x 63
+ 75 --- 76
+ 75 --- 77
+ 75 --- 78
+ 75 --- 79
+ 75 --- 80
+ 75 ---- 82
+ 75 --- 81
+ 76 --- 86
+ 76 --- 90
+ 76 <--x 63
+ 77 --- 85
+ 77 --- 89
+ 77 <--x 63
+ 78 --- 84
+ 78 --- 88
+ 78 <--x 63
+ 79 --- 83
+ 79 <--x 63
+ 82 --- 83
+ 82 --- 84
+ 82 --- 85
+ 82 --- 86
+ 82 --- 87
+ 82 --- 88
+ 82 --- 89
+ 82 --- 90
+ 88 <--x 84
+ 88 <--x 87
+ 89 <--x 85
+ 89 <--x 87
+ 90 <--x 86
+ 90 <--x 87
+ 91 --- 92
+ 91 --- 93
+ 91 --- 94
+ 91 --- 95
+ 91 --- 96
+ 91 ---- 98
+ 91 --- 97
+ 92 --- 102
+ 92 --- 106
+ 92 <--x 63
+ 93 --- 101
+ 93 --- 105
+ 93 <--x 63
+ 94 --- 100
+ 94 --- 104
+ 94 <--x 63
+ 95 --- 99
+ 95 <--x 63
98 --- 99
98 --- 100
98 --- 101
98 --- 102
98 --- 103
- 98 ---- 105
98 --- 104
- 99 --- 109
- 99 --- 117
- 99 --- 118
- 100 --- 108
- 100 --- 115
- 100 --- 116
- 101 --- 107
- 101 --- 113
- 101 --- 114
- 102 --- 106
- 102 --- 111
- 102 --- 112
- 105 --- 106
- 105 --- 107
- 105 --- 108
- 105 --- 109
- 105 --- 110
- 105 --- 111
- 105 --- 112
- 105 --- 113
- 105 --- 114
- 105 --- 115
- 105 --- 116
- 105 --- 117
- 105 --- 118
- 119 --- 120
- 119 --- 121
- 119 --- 122
- 119 --- 123
- 119 --- 124
- 119 ---- 126
- 119 --- 125
- 120 --- 130
- 120 --- 138
- 120 --- 139
- 121 --- 129
- 121 --- 136
- 121 --- 137
- 122 --- 128
- 122 --- 134
- 122 --- 135
+ 98 --- 105
+ 98 --- 106
+ 104 <--x 100
+ 104 <--x 103
+ 105 <--x 101
+ 105 <--x 103
+ 106 <--x 102
+ 106 <--x 103
+ 107 --- 108
+ 107 --- 109
+ 107 --- 110
+ 107 --- 111
+ 107 --- 112
+ 107 ---- 114
+ 107 --- 113
+ 108 --- 118
+ 108 --- 122
+ 108 <--x 63
+ 109 --- 117
+ 109 --- 121
+ 109 <--x 63
+ 110 --- 116
+ 110 --- 120
+ 110 <--x 63
+ 111 --- 115
+ 111 <--x 63
+ 114 --- 115
+ 114 --- 116
+ 114 --- 117
+ 114 --- 118
+ 114 --- 119
+ 114 --- 120
+ 114 --- 121
+ 114 --- 122
+ 120 <--x 116
+ 120 <--x 119
+ 121 <--x 117
+ 121 <--x 119
+ 122 <--x 118
+ 122 <--x 119
+ 123 --- 124
+ 123 --- 125
+ 123 --- 126
123 --- 127
- 123 --- 132
- 123 --- 133
- 126 --- 127
- 126 --- 128
- 126 --- 129
- 126 --- 130
- 126 --- 131
+ 123 --- 128
+ 123 ---- 130
+ 123 --- 129
+ 124 --- 134
+ 124 --- 138
+ 124 <--x 63
+ 125 --- 133
+ 125 --- 137
+ 125 <--x 63
126 --- 132
- 126 --- 133
- 126 --- 134
- 126 --- 135
126 --- 136
- 126 --- 137
- 126 --- 138
- 126 --- 139
- 140 --- 141
- 140 --- 142
- 140 --- 143
- 140 --- 144
- 140 --- 145
- 140 ---- 147
- 140 --- 146
- 141 --- 151
- 141 --- 159
- 141 --- 160
- 142 --- 150
- 142 --- 157
- 142 --- 158
- 143 --- 149
- 143 --- 155
- 143 --- 156
- 144 --- 148
- 144 --- 153
- 144 --- 154
- 147 --- 148
- 147 --- 149
- 147 --- 150
- 147 --- 151
- 147 --- 152
- 147 --- 153
- 147 --- 154
- 147 --- 155
- 147 --- 156
- 147 --- 157
- 147 --- 158
+ 126 <--x 63
+ 127 --- 131
+ 127 <--x 63
+ 130 --- 131
+ 130 --- 132
+ 130 --- 133
+ 130 --- 134
+ 130 --- 135
+ 130 --- 136
+ 130 --- 137
+ 130 --- 138
+ 136 <--x 132
+ 136 <--x 135
+ 137 <--x 133
+ 137 <--x 135
+ 138 <--x 134
+ 138 <--x 135
+ 139 --- 140
+ 139 --- 141
+ 139 --- 142
+ 139 --- 143
+ 139 --- 144
+ 139 --- 145
+ 139 --- 146
+ 139 --- 147
+ 139 --- 148
+ 139 --- 149
+ 139 --- 150
+ 139 --- 151
+ 139 --- 152
+ 139 ---- 154
+ 139 --- 153
+ 140 --- 166
+ 140 --- 178
+ 140 <--x 63
+ 141 --- 165
+ 141 --- 177
+ 141 <--x 63
+ 142 --- 164
+ 142 --- 176
+ 142 <--x 63
+ 143 --- 163
+ 143 --- 175
+ 143 <--x 63
+ 144 --- 162
+ 144 --- 174
+ 144 <--x 63
+ 145 --- 161
+ 145 --- 173
+ 145 <--x 63
+ 146 --- 160
+ 146 --- 172
+ 146 <--x 63
147 --- 159
- 147 --- 160
- 161 --- 162
- 161 --- 163
- 161 --- 164
- 161 --- 165
- 161 --- 166
- 161 ---- 168
- 161 --- 167
- 162 --- 172
- 162 --- 180
- 162 --- 181
- 163 --- 171
- 163 --- 178
- 163 --- 179
- 164 --- 170
- 164 --- 176
- 164 --- 177
- 165 --- 169
- 165 --- 174
- 165 --- 175
- 168 --- 169
- 168 --- 170
- 168 --- 171
- 168 --- 172
- 168 --- 173
- 168 --- 174
- 168 --- 175
- 168 --- 176
- 168 --- 177
- 168 --- 178
- 168 --- 179
- 168 --- 180
- 168 --- 181
- 182 --- 183
- 182 --- 184
- 182 --- 185
- 182 --- 186
- 182 --- 187
+ 147 --- 171
+ 147 <--x 63
+ 148 --- 158
+ 148 --- 170
+ 148 <--x 63
+ 149 --- 157
+ 149 --- 169
+ 149 <--x 63
+ 150 --- 156
+ 150 --- 168
+ 150 <--x 63
+ 151 --- 155
+ 151 <--x 63
+ 154 --- 155
+ 154 --- 156
+ 154 --- 157
+ 154 --- 158
+ 154 --- 159
+ 154 --- 160
+ 154 --- 161
+ 154 --- 162
+ 154 --- 163
+ 154 --- 164
+ 154 --- 165
+ 154 --- 166
+ 154 --- 167
+ 154 --- 168
+ 154 --- 169
+ 154 --- 170
+ 154 --- 171
+ 154 --- 172
+ 154 --- 173
+ 154 --- 174
+ 154 --- 175
+ 154 --- 176
+ 154 --- 177
+ 154 --- 178
+ 168 <--x 156
+ 168 <--x 167
+ 169 <--x 157
+ 169 <--x 167
+ 170 <--x 158
+ 170 <--x 167
+ 171 <--x 159
+ 171 <--x 167
+ 172 <--x 160
+ 172 <--x 167
+ 173 <--x 161
+ 173 <--x 167
+ 174 <--x 162
+ 174 <--x 167
+ 175 <--x 163
+ 175 <--x 167
+ 176 <--x 164
+ 176 <--x 167
+ 177 <--x 165
+ 177 <--x 167
+ 178 <--x 166
+ 178 <--x 167
+ 179 --- 180
+ 179 --- 181
+ 179 --- 182
+ 179 --- 183
+ 179 --- 184
+ 179 ---- 186
+ 179 --- 185
+ 180 --- 190
+ 180 --- 194
+ 180 <--x 63
+ 181 --- 189
+ 181 --- 193
+ 181 <--x 63
182 --- 188
- 182 --- 189
- 182 --- 190
- 182 --- 191
182 --- 192
- 182 --- 193
- 182 --- 194
- 182 --- 195
- 182 ---- 197
- 182 --- 196
- 183 --- 209
- 183 --- 233
- 183 --- 234
- 184 --- 208
- 184 --- 231
- 184 --- 232
- 185 --- 207
- 185 --- 229
- 185 --- 230
- 186 --- 206
- 186 --- 227
- 186 --- 228
- 187 --- 205
- 187 --- 225
- 187 --- 226
- 188 --- 204
- 188 --- 223
- 188 --- 224
- 189 --- 203
- 189 --- 221
- 189 --- 222
- 190 --- 202
- 190 --- 219
- 190 --- 220
- 191 --- 201
- 191 --- 217
- 191 --- 218
- 192 --- 200
- 192 --- 215
- 192 --- 216
- 193 --- 199
- 193 --- 213
- 193 --- 214
- 194 --- 198
- 194 --- 211
- 194 --- 212
- 197 --- 198
- 197 --- 199
- 197 --- 200
- 197 --- 201
- 197 --- 202
- 197 --- 203
- 197 --- 204
+ 182 <--x 63
+ 183 --- 187
+ 183 <--x 63
+ 186 --- 187
+ 186 --- 188
+ 186 --- 189
+ 186 --- 190
+ 186 --- 191
+ 186 --- 192
+ 186 --- 193
+ 186 --- 194
+ 192 <--x 188
+ 192 <--x 191
+ 193 <--x 189
+ 193 <--x 191
+ 194 <--x 190
+ 194 <--x 191
+ 195 --- 196
+ 195 --- 197
+ 195 --- 198
+ 195 --- 199
+ 195 --- 200
+ 195 ---- 202
+ 195 --- 201
+ 196 --- 206
+ 196 --- 210
+ 196 <--x 63
197 --- 205
- 197 --- 206
- 197 --- 207
- 197 --- 208
197 --- 209
- 197 --- 210
- 197 --- 211
- 197 --- 212
- 197 --- 213
- 197 --- 214
- 197 --- 215
- 197 --- 216
- 197 --- 217
- 197 --- 218
- 197 --- 219
- 197 --- 220
- 197 --- 221
- 197 --- 222
- 197 --- 223
- 197 --- 224
- 197 --- 225
- 197 --- 226
- 197 --- 227
- 197 --- 228
- 197 --- 229
- 197 --- 230
- 197 --- 231
- 197 --- 232
- 197 --- 233
- 197 --- 234
- 235 --- 236
- 235 --- 237
- 235 --- 238
- 235 --- 239
- 235 --- 240
- 235 ---- 242
- 235 --- 241
- 236 --- 246
- 236 --- 254
- 236 --- 255
- 237 --- 245
- 237 --- 252
- 237 --- 253
- 238 --- 244
- 238 --- 250
- 238 --- 251
- 239 --- 243
- 239 --- 248
- 239 --- 249
- 242 --- 243
- 242 --- 244
- 242 --- 245
- 242 --- 246
- 242 --- 247
- 242 --- 248
- 242 --- 249
- 242 --- 250
- 242 --- 251
- 242 --- 252
- 242 --- 253
- 242 --- 254
- 242 --- 255
- 256 --- 257
- 256 --- 258
- 256 --- 259
- 256 --- 260
- 256 --- 261
- 256 ---- 263
- 256 --- 262
- 257 --- 267
- 257 --- 275
- 257 --- 276
- 258 --- 266
- 258 --- 273
- 258 --- 274
+ 197 <--x 63
+ 198 --- 204
+ 198 --- 208
+ 198 <--x 63
+ 199 --- 203
+ 199 <--x 63
+ 202 --- 203
+ 202 --- 204
+ 202 --- 205
+ 202 --- 206
+ 202 --- 207
+ 202 --- 208
+ 202 --- 209
+ 202 --- 210
+ 208 <--x 204
+ 208 <--x 207
+ 209 <--x 205
+ 209 <--x 207
+ 210 <--x 206
+ 210 <--x 207
+ 211 --- 212
+ 211 --- 213
+ 211 --- 214
+ 211 --- 215
+ 211 --- 216
+ 211 ---- 218
+ 211 --- 217
+ 212 --- 222
+ 212 --- 226
+ 212 <--x 63
+ 213 --- 221
+ 213 --- 225
+ 213 <--x 63
+ 214 --- 220
+ 214 --- 224
+ 214 <--x 63
+ 215 --- 219
+ 215 <--x 63
+ 218 --- 219
+ 218 --- 220
+ 218 --- 221
+ 218 --- 222
+ 218 --- 223
+ 218 --- 224
+ 218 --- 225
+ 218 --- 226
+ 224 <--x 220
+ 224 <--x 223
+ 225 <--x 221
+ 225 <--x 223
+ 226 <--x 222
+ 226 <--x 223
+ 227 --- 228
+ 227 --- 229
+ 227 --- 230
+ 227 --- 231
+ 227 --- 232
+ 227 ---- 234
+ 227 --- 233
+ 228 --- 238
+ 228 --- 242
+ 228 <--x 63
+ 229 --- 237
+ 229 --- 241
+ 229 <--x 63
+ 230 --- 236
+ 230 --- 240
+ 230 <--x 63
+ 231 --- 235
+ 231 <--x 63
+ 234 --- 235
+ 234 --- 236
+ 234 --- 237
+ 234 --- 238
+ 234 --- 239
+ 234 --- 240
+ 234 --- 241
+ 234 --- 242
+ 240 <--x 236
+ 240 <--x 239
+ 241 <--x 237
+ 241 <--x 239
+ 242 <--x 238
+ 242 <--x 239
+ 243 --- 244
+ 243 --- 245
+ 243 --- 246
+ 243 --- 247
+ 243 --- 248
+ 243 ---- 250
+ 243 --- 249
+ 244 --- 254
+ 244 --- 258
+ 244 <--x 15
+ 245 --- 253
+ 245 --- 257
+ 245 <--x 15
+ 246 --- 252
+ 246 --- 256
+ 246 <--x 15
+ 247 --- 251
+ 247 <--x 15
+ 250 --- 251
+ 250 --- 252
+ 250 --- 253
+ 250 --- 254
+ 250 --- 255
+ 250 --- 256
+ 250 --- 257
+ 250 --- 258
+ 255 --- 259
+ 255 --- 275
+ 255 --- 291
+ 255 --- 307
+ 255 --- 339
+ 255 --- 355
+ 255 --- 371
+ 256 <--x 252
+ 256 <--x 255
+ 257 <--x 253
+ 257 <--x 255
+ 258 <--x 254
+ 258 <--x 255
+ 259 --- 260
+ 259 --- 261
+ 259 --- 262
+ 259 --- 263
+ 259 --- 264
+ 259 ---- 266
259 --- 265
- 259 --- 271
- 259 --- 272
- 260 --- 264
- 260 --- 269
260 --- 270
- 263 --- 264
- 263 --- 265
- 263 --- 266
+ 260 --- 274
+ 260 <--x 255
+ 261 --- 269
+ 261 --- 273
+ 261 <--x 255
+ 262 --- 268
+ 262 --- 272
+ 262 <--x 255
263 --- 267
- 263 --- 268
- 263 --- 269
- 263 --- 270
- 263 --- 271
- 263 --- 272
- 263 --- 273
- 263 --- 274
- 263 --- 275
- 263 --- 276
- 277 --- 278
- 277 --- 279
- 277 --- 280
- 277 --- 281
- 277 --- 282
- 277 ---- 284
- 277 --- 283
+ 263 <--x 255
+ 266 --- 267
+ 266 --- 268
+ 266 --- 269
+ 266 --- 270
+ 266 --- 271
+ 266 --- 272
+ 266 --- 273
+ 266 --- 274
+ 272 <--x 268
+ 272 <--x 271
+ 273 <--x 269
+ 273 <--x 271
+ 274 <--x 270
+ 274 <--x 271
+ 275 --- 276
+ 275 --- 277
+ 275 --- 278
+ 275 --- 279
+ 275 --- 280
+ 275 ---- 282
+ 275 --- 281
+ 276 --- 286
+ 276 --- 290
+ 276 <--x 255
+ 277 --- 285
+ 277 --- 289
+ 277 <--x 255
+ 278 --- 284
278 --- 288
- 278 --- 296
- 278 --- 297
- 279 --- 287
- 279 --- 294
- 279 --- 295
- 280 --- 286
- 280 --- 292
- 280 --- 293
- 281 --- 285
- 281 --- 290
- 281 --- 291
- 284 --- 285
- 284 --- 286
- 284 --- 287
- 284 --- 288
- 284 --- 289
- 284 --- 290
- 284 --- 291
- 284 --- 292
- 284 --- 293
- 284 --- 294
- 284 --- 295
- 284 --- 296
- 284 --- 297
+ 278 <--x 255
+ 279 --- 283
+ 279 <--x 255
+ 282 --- 283
+ 282 --- 284
+ 282 --- 285
+ 282 --- 286
+ 282 --- 287
+ 282 --- 288
+ 282 --- 289
+ 282 --- 290
+ 288 <--x 284
+ 288 <--x 287
+ 289 <--x 285
+ 289 <--x 287
+ 290 <--x 286
+ 290 <--x 287
+ 291 --- 292
+ 291 --- 293
+ 291 --- 294
+ 291 --- 295
+ 291 --- 296
+ 291 ---- 298
+ 291 --- 297
+ 292 --- 302
+ 292 --- 306
+ 292 <--x 255
+ 293 --- 301
+ 293 --- 305
+ 293 <--x 255
+ 294 --- 300
+ 294 --- 304
+ 294 <--x 255
+ 295 --- 299
+ 295 <--x 255
298 --- 299
298 --- 300
298 --- 301
298 --- 302
298 --- 303
- 298 ---- 305
298 --- 304
- 299 --- 309
- 299 --- 317
- 299 --- 318
- 300 --- 308
- 300 --- 315
- 300 --- 316
- 301 --- 307
- 301 --- 313
- 301 --- 314
- 302 --- 306
- 302 --- 311
- 302 --- 312
- 305 --- 306
- 305 --- 307
- 305 --- 308
- 305 --- 309
- 305 --- 310
- 305 --- 311
- 305 --- 312
- 305 --- 313
- 305 --- 314
- 305 --- 315
- 305 --- 316
- 305 --- 317
- 305 --- 318
- 319 --- 320
- 319 --- 321
- 319 --- 322
- 319 --- 323
- 319 --- 324
- 319 ---- 326
- 319 --- 325
- 320 --- 330
- 320 --- 338
- 320 --- 339
- 321 --- 329
- 321 --- 336
- 321 --- 337
- 322 --- 328
- 322 --- 334
- 322 --- 335
+ 298 --- 305
+ 298 --- 306
+ 304 <--x 300
+ 304 <--x 303
+ 305 <--x 301
+ 305 <--x 303
+ 306 <--x 302
+ 306 <--x 303
+ 307 --- 308
+ 307 --- 309
+ 307 --- 310
+ 307 --- 311
+ 307 --- 312
+ 307 ---- 314
+ 307 --- 313
+ 308 --- 315
+ 308 <--x 255
+ 309 --- 316
+ 309 --- 320
+ 309 <--x 255
+ 310 --- 317
+ 310 --- 321
+ 310 <--x 255
+ 311 --- 318
+ 311 --- 322
+ 311 <--x 255
+ 314 --- 315
+ 314 --- 316
+ 314 --- 317
+ 314 --- 318
+ 314 --- 319
+ 314 --- 320
+ 314 --- 321
+ 314 --- 322
+ 320 <--x 316
+ 320 <--x 319
+ 321 <--x 317
+ 321 <--x 319
+ 322 <--x 318
+ 322 <--x 319
+ 323 --- 324
+ 323 --- 325
+ 323 --- 326
323 --- 327
- 323 --- 332
- 323 --- 333
- 326 --- 327
- 326 --- 328
- 326 --- 329
- 326 --- 330
- 326 --- 331
+ 323 --- 328
+ 323 ---- 330
+ 323 --- 329
+ 324 --- 334
+ 324 --- 338
+ 324 <--x 15
+ 325 --- 333
+ 325 --- 337
+ 325 <--x 15
326 --- 332
- 326 --- 333
- 326 --- 334
- 326 --- 335
326 --- 336
- 326 --- 337
- 326 --- 338
- 326 --- 339
- 331 --- 340
- 331 --- 361
- 331 --- 382
- 331 --- 403
- 331 --- 445
- 331 --- 466
- 331 --- 487
- 340 --- 341
- 340 --- 342
- 340 --- 343
- 340 --- 344
- 340 --- 345
- 340 ---- 347
- 340 --- 346
- 341 --- 351
- 341 --- 359
- 341 --- 360
- 342 --- 350
- 342 --- 357
- 342 --- 358
- 343 --- 349
- 343 --- 355
- 343 --- 356
- 344 --- 348
- 344 --- 353
- 344 --- 354
- 347 --- 348
- 347 --- 349
- 347 --- 350
- 347 --- 351
- 347 --- 352
- 347 --- 353
- 347 --- 354
- 347 --- 355
- 347 --- 356
- 347 --- 357
- 347 --- 358
- 347 --- 359
- 347 --- 360
- 361 --- 362
- 361 --- 363
- 361 --- 364
- 361 --- 365
- 361 --- 366
- 361 ---- 368
- 361 --- 367
- 362 --- 372
- 362 --- 380
- 362 --- 381
- 363 --- 371
- 363 --- 378
- 363 --- 379
- 364 --- 370
- 364 --- 376
- 364 --- 377
- 365 --- 369
- 365 --- 374
- 365 --- 375
- 368 --- 369
- 368 --- 370
- 368 --- 371
- 368 --- 372
- 368 --- 373
- 368 --- 374
- 368 --- 375
- 368 --- 376
- 368 --- 377
- 368 --- 378
- 368 --- 379
- 368 --- 380
- 368 --- 381
- 382 --- 383
- 382 --- 384
- 382 --- 385
- 382 --- 386
- 382 --- 387
- 382 ---- 389
- 382 --- 388
- 383 --- 393
- 383 --- 401
- 383 --- 402
- 384 --- 392
- 384 --- 399
- 384 --- 400
- 385 --- 391
- 385 --- 397
- 385 --- 398
- 386 --- 390
- 386 --- 395
- 386 --- 396
- 389 --- 390
- 389 --- 391
- 389 --- 392
- 389 --- 393
- 389 --- 394
- 389 --- 395
- 389 --- 396
- 389 --- 397
- 389 --- 398
+ 326 <--x 15
+ 327 --- 331
+ 327 <--x 15
+ 330 --- 331
+ 330 --- 332
+ 330 --- 333
+ 330 --- 334
+ 330 --- 335
+ 330 --- 336
+ 330 --- 337
+ 330 --- 338
+ 336 <--x 332
+ 336 <--x 335
+ 337 <--x 333
+ 337 <--x 335
+ 338 <--x 334
+ 338 <--x 335
+ 339 --- 340
+ 339 --- 341
+ 339 --- 342
+ 339 --- 343
+ 339 --- 344
+ 339 ---- 346
+ 339 --- 345
+ 340 --- 347
+ 340 <--x 255
+ 341 --- 348
+ 341 --- 352
+ 341 <--x 255
+ 342 --- 349
+ 342 --- 353
+ 342 <--x 255
+ 343 --- 350
+ 343 --- 354
+ 343 <--x 255
+ 346 --- 347
+ 346 --- 348
+ 346 --- 349
+ 346 --- 350
+ 346 --- 351
+ 346 --- 352
+ 346 --- 353
+ 346 --- 354
+ 352 <--x 348
+ 352 <--x 351
+ 353 <--x 349
+ 353 <--x 351
+ 354 <--x 350
+ 354 <--x 351
+ 355 --- 356
+ 355 --- 357
+ 355 --- 358
+ 355 --- 359
+ 355 --- 360
+ 355 ---- 362
+ 355 --- 361
+ 356 --- 363
+ 356 <--x 255
+ 357 --- 364
+ 357 --- 368
+ 357 <--x 255
+ 358 --- 365
+ 358 --- 369
+ 358 <--x 255
+ 359 --- 366
+ 359 --- 370
+ 359 <--x 255
+ 362 --- 363
+ 362 --- 364
+ 362 --- 365
+ 362 --- 366
+ 362 --- 367
+ 362 --- 368
+ 362 --- 369
+ 362 --- 370
+ 368 <--x 364
+ 368 <--x 367
+ 369 <--x 365
+ 369 <--x 367
+ 370 <--x 366
+ 370 <--x 367
+ 371 --- 372
+ 371 --- 373
+ 371 --- 374
+ 371 --- 375
+ 371 --- 376
+ 371 ---- 378
+ 371 --- 377
+ 372 --- 379
+ 372 <--x 255
+ 373 --- 380
+ 373 --- 384
+ 373 <--x 255
+ 374 --- 381
+ 374 --- 385
+ 374 <--x 255
+ 375 --- 382
+ 375 --- 386
+ 375 <--x 255
+ 378 --- 379
+ 378 --- 380
+ 378 --- 381
+ 378 --- 382
+ 378 --- 383
+ 378 --- 384
+ 378 --- 385
+ 378 --- 386
+ 384 <--x 380
+ 384 <--x 383
+ 385 <--x 381
+ 385 <--x 383
+ 386 <--x 382
+ 386 <--x 383
+ 387 --- 388
+ 388 --- 389
+ 388 --- 390
+ 388 --- 391
+ 388 --- 392
+ 388 --- 393
+ 388 ---- 395
+ 388 --- 394
389 --- 399
- 389 --- 400
- 389 --- 401
- 389 --- 402
- 403 --- 404
- 403 --- 405
- 403 --- 406
- 403 --- 407
- 403 --- 408
- 403 ---- 410
- 403 --- 409
- 404 --- 411
- 404 --- 416
- 404 --- 417
- 405 --- 412
- 405 --- 418
- 405 --- 419
- 406 --- 413
+ 389 --- 404
+ 389 x--> 400
+ 390 --- 398
+ 390 --- 403
+ 390 x--> 400
+ 391 --- 397
+ 391 --- 402
+ 391 x--> 400
+ 392 --- 396
+ 392 x--> 400
+ 395 --- 396
+ 395 --- 397
+ 395 --- 398
+ 395 --- 399
+ 395 --- 400
+ 395 --- 401
+ 395 --- 402
+ 395 --- 403
+ 395 --- 404
+ 401 --- 405
+ 402 <--x 397
+ 402 <--x 401
+ 403 <--x 398
+ 403 <--x 401
+ 404 <--x 399
+ 404 <--x 401
+ 405 --- 406
+ 405 --- 407
+ 405 --- 408
+ 405 --- 409
+ 405 --- 410
+ 405 ---- 412
+ 405 --- 411
+ 406 --- 416
406 --- 420
- 406 --- 421
- 407 --- 414
- 407 --- 422
- 407 --- 423
- 410 --- 411
- 410 --- 412
- 410 --- 413
- 410 --- 414
- 410 --- 415
- 410 --- 416
- 410 --- 417
- 410 --- 418
- 410 --- 419
- 410 --- 420
- 410 --- 421
- 410 --- 422
- 410 --- 423
- 424 --- 425
- 424 --- 426
- 424 --- 427
- 424 --- 428
- 424 --- 429
- 424 ---- 431
- 424 --- 430
- 425 --- 435
- 425 --- 443
- 425 --- 444
- 426 --- 434
- 426 --- 441
- 426 --- 442
- 427 --- 433
- 427 --- 439
- 427 --- 440
- 428 --- 432
- 428 --- 437
- 428 --- 438
- 431 --- 432
- 431 --- 433
- 431 --- 434
- 431 --- 435
- 431 --- 436
- 431 --- 437
- 431 --- 438
- 431 --- 439
- 431 --- 440
- 431 --- 441
- 431 --- 442
- 431 --- 443
- 431 --- 444
- 445 --- 446
- 445 --- 447
- 445 --- 448
- 445 --- 449
- 445 --- 450
- 445 ---- 452
- 445 --- 451
+ 406 <--x 401
+ 407 --- 415
+ 407 --- 419
+ 407 <--x 401
+ 408 --- 414
+ 408 --- 418
+ 408 <--x 401
+ 409 --- 413
+ 409 <--x 401
+ 412 --- 413
+ 412 --- 414
+ 412 --- 415
+ 412 --- 416
+ 412 --- 417
+ 412 --- 418
+ 412 --- 419
+ 412 --- 420
+ 418 <--x 414
+ 418 <--x 417
+ 419 <--x 415
+ 419 <--x 417
+ 420 <--x 416
+ 420 <--x 417
+ 421 --- 422
+ 422 --- 423
+ 422 --- 424
+ 422 --- 425
+ 422 --- 426
+ 422 --- 427
+ 422 ---- 429
+ 422 --- 428
+ 423 --- 433
+ 423 --- 438
+ 423 x--> 434
+ 424 --- 432
+ 424 --- 437
+ 424 x--> 434
+ 425 --- 431
+ 425 --- 436
+ 425 x--> 434
+ 426 --- 430
+ 426 x--> 434
+ 429 --- 430
+ 429 --- 431
+ 429 --- 432
+ 429 --- 433
+ 429 --- 434
+ 429 --- 435
+ 429 --- 436
+ 429 --- 437
+ 429 --- 438
+ 435 --- 439
+ 436 <--x 431
+ 436 <--x 435
+ 437 <--x 432
+ 437 <--x 435
+ 438 <--x 433
+ 438 <--x 435
+ 439 --- 440
+ 439 --- 441
+ 439 --- 442
+ 439 --- 443
+ 439 --- 444
+ 439 ---- 446
+ 439 --- 445
+ 440 --- 450
+ 440 --- 454
+ 440 <--x 435
+ 441 --- 449
+ 441 --- 453
+ 441 <--x 435
+ 442 --- 448
+ 442 --- 452
+ 442 <--x 435
+ 443 --- 447
+ 443 <--x 435
+ 446 --- 447
+ 446 --- 448
+ 446 --- 449
+ 446 --- 450
+ 446 --- 451
+ 446 --- 452
446 --- 453
- 446 --- 458
- 446 --- 459
- 447 --- 454
- 447 --- 460
- 447 --- 461
- 448 --- 455
- 448 --- 462
- 448 --- 463
- 449 --- 456
- 449 --- 464
- 449 --- 465
- 452 --- 453
- 452 --- 454
- 452 --- 455
- 452 --- 456
- 452 --- 457
- 452 --- 458
- 452 --- 459
- 452 --- 460
- 452 --- 461
- 452 --- 462
- 452 --- 463
- 452 --- 464
- 452 --- 465
- 466 --- 467
- 466 --- 468
- 466 --- 469
- 466 --- 470
- 466 --- 471
- 466 ---- 473
- 466 --- 472
- 467 --- 474
- 467 --- 479
- 467 --- 480
- 468 --- 475
- 468 --- 481
- 468 --- 482
- 469 --- 476
- 469 --- 483
- 469 --- 484
- 470 --- 477
- 470 --- 485
- 470 --- 486
- 473 --- 474
- 473 --- 475
- 473 --- 476
- 473 --- 477
- 473 --- 478
- 473 --- 479
+ 446 --- 454
+ 452 <--x 448
+ 452 <--x 451
+ 453 <--x 449
+ 453 <--x 451
+ 454 <--x 450
+ 454 <--x 451
+ 455 --- 456
+ 455 --- 457
+ 455 --- 458
+ 455 --- 459
+ 455 --- 460
+ 455 ---- 462
+ 455 --- 461
+ 456 --- 463
+ 456 <--x 12
+ 457 --- 464
+ 457 --- 468
+ 457 <--x 12
+ 458 --- 465
+ 458 --- 469
+ 458 <--x 12
+ 459 --- 466
+ 459 --- 470
+ 459 <--x 12
+ 462 --- 463
+ 462 --- 464
+ 462 --- 465
+ 462 --- 466
+ 462 --- 467
+ 462 --- 468
+ 462 --- 469
+ 462 --- 470
+ 467 --- 471
+ 468 <--x 464
+ 468 <--x 467
+ 469 <--x 465
+ 469 <--x 467
+ 470 <--x 466
+ 470 <--x 467
+ 471 --- 472
+ 471 --- 473
+ 471 --- 474
+ 471 --- 475
+ 471 --- 476
+ 471 ---- 478
+ 471 --- 477
+ 472 --- 479
+ 472 <--x 467
473 --- 480
- 473 --- 481
- 473 --- 482
- 473 --- 483
473 --- 484
- 473 --- 485
- 473 --- 486
+ 473 <--x 467
+ 474 --- 481
+ 474 --- 485
+ 474 <--x 467
+ 475 --- 482
+ 475 --- 486
+ 475 <--x 467
+ 478 --- 479
+ 478 --- 480
+ 478 --- 481
+ 478 --- 482
+ 478 --- 483
+ 478 --- 484
+ 478 --- 485
+ 478 --- 486
+ 483 --- 487
+ 484 <--x 480
+ 484 <--x 483
+ 485 <--x 481
+ 485 <--x 483
+ 486 <--x 482
+ 486 <--x 483
487 --- 488
487 --- 489
487 --- 490
@@ -1893,17 +1910,16 @@ flowchart LR
487 ---- 494
487 --- 493
488 --- 495
- 488 --- 500
- 488 --- 501
+ 488 <--x 483
489 --- 496
- 489 --- 502
- 489 --- 503
+ 489 --- 500
+ 489 <--x 483
490 --- 497
- 490 --- 504
- 490 --- 505
+ 490 --- 501
+ 490 <--x 483
491 --- 498
- 491 --- 506
- 491 --- 507
+ 491 --- 502
+ 491 <--x 483
494 --- 495
494 --- 496
494 --- 497
@@ -1912,765 +1928,534 @@ flowchart LR
494 --- 500
494 --- 501
494 --- 502
- 494 --- 503
- 494 --- 504
- 494 --- 505
- 494 --- 506
- 494 --- 507
- 508 --- 509
- 509 --- 510
- 509 --- 511
- 509 --- 512
- 509 --- 513
- 509 --- 514
- 509 ---- 516
- 509 --- 515
- 510 --- 520
- 510 --- 529
- 510 --- 530
- 511 --- 519
- 511 --- 527
- 511 --- 528
- 512 --- 518
- 512 --- 525
- 512 --- 526
- 513 --- 517
- 513 --- 523
- 513 --- 524
- 516 --- 517
- 516 --- 518
- 516 --- 519
- 516 --- 520
- 516 --- 521
- 516 --- 522
- 516 --- 523
- 516 --- 524
- 516 --- 525
- 516 --- 526
- 516 --- 527
- 516 --- 528
- 516 --- 529
- 516 --- 530
- 522 --- 531
- 531 --- 532
- 531 --- 533
- 531 --- 534
+ 499 --- 503
+ 500 <--x 496
+ 500 <--x 499
+ 501 <--x 497
+ 501 <--x 499
+ 502 <--x 498
+ 502 <--x 499
+ 503 --- 504
+ 503 --- 505
+ 503 --- 506
+ 503 --- 507
+ 503 --- 508
+ 503 ---- 510
+ 503 --- 509
+ 504 --- 511
+ 504 <--x 499
+ 505 --- 512
+ 505 --- 516
+ 505 <--x 499
+ 506 --- 513
+ 506 --- 517
+ 506 <--x 499
+ 507 --- 514
+ 507 --- 518
+ 507 <--x 499
+ 510 --- 511
+ 510 --- 512
+ 510 --- 513
+ 510 --- 514
+ 510 --- 515
+ 510 --- 516
+ 510 --- 517
+ 510 --- 518
+ 516 <--x 512
+ 516 <--x 515
+ 517 <--x 513
+ 517 <--x 515
+ 518 <--x 514
+ 518 <--x 515
+ 519 --- 520
+ 519 --- 521
+ 519 --- 522
+ 519 --- 523
+ 519 --- 524
+ 519 ---- 526
+ 519 --- 525
+ 520 --- 527
+ 520 <--x 12
+ 521 --- 528
+ 521 --- 532
+ 521 <--x 12
+ 522 --- 529
+ 522 --- 533
+ 522 <--x 12
+ 523 --- 530
+ 523 --- 534
+ 523 <--x 12
+ 526 --- 527
+ 526 --- 528
+ 526 --- 529
+ 526 --- 530
+ 526 --- 531
+ 526 --- 532
+ 526 --- 533
+ 526 --- 534
531 --- 535
- 531 --- 536
- 531 ---- 538
- 531 --- 537
- 532 --- 542
- 532 --- 550
- 532 --- 551
- 533 --- 541
- 533 --- 548
- 533 --- 549
- 534 --- 540
- 534 --- 546
- 534 --- 547
+ 532 <--x 528
+ 532 <--x 531
+ 533 <--x 529
+ 533 <--x 531
+ 534 <--x 530
+ 534 <--x 531
+ 535 --- 536
+ 535 --- 537
+ 535 --- 538
535 --- 539
- 535 --- 544
- 535 --- 545
- 538 --- 539
- 538 --- 540
- 538 --- 541
- 538 --- 542
- 538 --- 543
- 538 --- 544
+ 535 --- 540
+ 535 ---- 542
+ 535 --- 541
+ 536 --- 543
+ 536 <--x 531
+ 537 --- 544
+ 537 --- 548
+ 537 <--x 531
538 --- 545
- 538 --- 546
- 538 --- 547
- 538 --- 548
538 --- 549
- 538 --- 550
- 538 --- 551
- 552 --- 553
- 553 --- 554
- 553 --- 555
- 553 --- 556
- 553 --- 557
- 553 --- 558
- 553 ---- 560
- 553 --- 559
- 554 --- 564
- 554 --- 573
- 554 --- 574
- 555 --- 563
- 555 --- 571
- 555 --- 572
- 556 --- 562
- 556 --- 569
- 556 --- 570
- 557 --- 561
- 557 --- 567
- 557 --- 568
- 560 --- 561
- 560 --- 562
- 560 --- 563
- 560 --- 564
- 560 --- 565
- 560 --- 566
- 560 --- 567
- 560 --- 568
- 560 --- 569
- 560 --- 570
- 560 --- 571
- 560 --- 572
- 560 --- 573
- 560 --- 574
- 566 --- 575
- 575 --- 576
- 575 --- 577
- 575 --- 578
- 575 --- 579
- 575 --- 580
- 575 ---- 582
- 575 --- 581
- 576 --- 586
- 576 --- 594
- 576 --- 595
- 577 --- 585
- 577 --- 592
- 577 --- 593
- 578 --- 584
- 578 --- 590
- 578 --- 591
- 579 --- 583
- 579 --- 588
- 579 --- 589
- 582 --- 583
- 582 --- 584
- 582 --- 585
- 582 --- 586
- 582 --- 587
- 582 --- 588
- 582 --- 589
- 582 --- 590
- 582 --- 591
- 582 --- 592
- 582 --- 593
- 582 --- 594
- 582 --- 595
- 596 --- 597
- 596 --- 598
- 596 --- 599
- 596 --- 600
- 596 --- 601
- 596 ---- 603
- 596 --- 602
- 597 --- 604
- 597 --- 609
- 597 --- 610
- 598 --- 605
- 598 --- 611
- 598 --- 612
- 599 --- 606
- 599 --- 613
- 599 --- 614
- 600 --- 607
- 600 --- 615
- 600 --- 616
- 603 --- 604
- 603 --- 605
- 603 --- 606
+ 538 <--x 531
+ 539 --- 546
+ 539 --- 550
+ 539 <--x 531
+ 542 --- 543
+ 542 --- 544
+ 542 --- 545
+ 542 --- 546
+ 542 --- 547
+ 542 --- 548
+ 542 --- 549
+ 542 --- 550
+ 547 --- 551
+ 548 <--x 544
+ 548 <--x 547
+ 549 <--x 545
+ 549 <--x 547
+ 550 <--x 546
+ 550 <--x 547
+ 551 --- 552
+ 551 --- 553
+ 551 --- 554
+ 551 --- 555
+ 551 --- 556
+ 551 ---- 558
+ 551 --- 557
+ 552 --- 559
+ 552 <--x 547
+ 553 --- 560
+ 553 --- 564
+ 553 <--x 547
+ 554 --- 561
+ 554 --- 565
+ 554 <--x 547
+ 555 --- 562
+ 555 --- 566
+ 555 <--x 547
+ 558 --- 559
+ 558 --- 560
+ 558 --- 561
+ 558 --- 562
+ 558 --- 563
+ 558 --- 564
+ 558 --- 565
+ 558 --- 566
+ 563 --- 567
+ 564 <--x 560
+ 564 <--x 563
+ 565 <--x 561
+ 565 <--x 563
+ 566 <--x 562
+ 566 <--x 563
+ 567 --- 568
+ 567 --- 569
+ 567 --- 570
+ 567 --- 571
+ 567 --- 572
+ 567 ---- 574
+ 567 --- 573
+ 568 --- 575
+ 568 <--x 563
+ 569 --- 576
+ 569 --- 580
+ 569 <--x 563
+ 570 --- 577
+ 570 --- 581
+ 570 <--x 563
+ 571 --- 578
+ 571 --- 582
+ 571 <--x 563
+ 574 --- 575
+ 574 --- 576
+ 574 --- 577
+ 574 --- 578
+ 574 --- 579
+ 574 --- 580
+ 574 --- 581
+ 574 --- 582
+ 580 <--x 576
+ 580 <--x 579
+ 581 <--x 577
+ 581 <--x 579
+ 582 <--x 578
+ 582 <--x 579
+ 583 --- 584
+ 583 --- 585
+ 583 --- 586
+ 583 --- 587
+ 583 --- 588
+ 583 ---- 590
+ 583 --- 589
+ 584 --- 594
+ 584 --- 598
+ 584 <--x 11
+ 585 --- 593
+ 585 --- 597
+ 585 <--x 11
+ 586 --- 592
+ 586 --- 596
+ 586 <--x 11
+ 587 --- 591
+ 587 <--x 11
+ 590 --- 591
+ 590 --- 592
+ 590 --- 593
+ 590 --- 594
+ 590 --- 595
+ 590 --- 596
+ 590 --- 597
+ 590 --- 598
+ 596 <--x 592
+ 596 <--x 595
+ 597 <--x 593
+ 597 <--x 595
+ 598 <--x 594
+ 598 <--x 595
+ 599 --- 600
+ 599 --- 601
+ 599 --- 602
+ 599 --- 603
+ 599 --- 604
+ 599 ---- 606
+ 599 --- 605
+ 600 --- 610
+ 600 --- 614
+ 600 <--x 11
+ 601 --- 609
+ 601 --- 613
+ 601 <--x 11
+ 602 --- 608
+ 602 --- 612
+ 602 <--x 11
603 --- 607
- 603 --- 608
- 603 --- 609
- 603 --- 610
- 603 --- 611
- 603 --- 612
- 603 --- 613
- 603 --- 614
- 603 --- 615
- 603 --- 616
- 608 --- 617
- 617 --- 618
- 617 --- 619
- 617 --- 620
- 617 --- 621
- 617 --- 622
- 617 ---- 624
- 617 --- 623
- 618 --- 625
- 618 --- 630
- 618 --- 631
- 619 --- 626
- 619 --- 632
- 619 --- 633
- 620 --- 627
- 620 --- 634
- 620 --- 635
- 621 --- 628
- 621 --- 636
- 621 --- 637
- 624 --- 625
- 624 --- 626
- 624 --- 627
- 624 --- 628
- 624 --- 629
- 624 --- 630
- 624 --- 631
- 624 --- 632
- 624 --- 633
- 624 --- 634
- 624 --- 635
- 624 --- 636
- 624 --- 637
- 629 --- 638
+ 603 <--x 11
+ 606 --- 607
+ 606 --- 608
+ 606 --- 609
+ 606 --- 610
+ 606 --- 611
+ 606 --- 612
+ 606 --- 613
+ 606 --- 614
+ 612 <--x 608
+ 612 <--x 611
+ 613 <--x 609
+ 613 <--x 611
+ 614 <--x 610
+ 614 <--x 611
+ 615 --- 616
+ 615 --- 617
+ 615 --- 618
+ 615 --- 619
+ 615 --- 620
+ 615 ---- 622
+ 615 --- 621
+ 616 --- 626
+ 616 --- 630
+ 616 <--x 11
+ 617 --- 625
+ 617 --- 629
+ 617 <--x 11
+ 618 --- 624
+ 618 --- 628
+ 618 <--x 11
+ 619 --- 623
+ 619 <--x 11
+ 622 --- 623
+ 622 --- 624
+ 622 --- 625
+ 622 --- 626
+ 622 --- 627
+ 622 --- 628
+ 622 --- 629
+ 622 --- 630
+ 628 <--x 624
+ 628 <--x 627
+ 629 <--x 625
+ 629 <--x 627
+ 630 <--x 626
+ 630 <--x 627
+ 631 --- 632
+ 631 --- 633
+ 631 --- 634
+ 631 --- 635
+ 631 --- 636
+ 631 ---- 638
+ 631 --- 637
+ 632 --- 642
+ 632 --- 646
+ 632 <--x 11
+ 633 --- 641
+ 633 --- 645
+ 633 <--x 11
+ 634 --- 640
+ 634 --- 644
+ 634 <--x 11
+ 635 --- 639
+ 635 <--x 11
638 --- 639
638 --- 640
638 --- 641
638 --- 642
638 --- 643
- 638 ---- 645
638 --- 644
- 639 --- 646
- 639 --- 651
- 639 --- 652
- 640 --- 647
- 640 --- 653
- 640 --- 654
- 641 --- 648
- 641 --- 655
- 641 --- 656
- 642 --- 649
- 642 --- 657
- 642 --- 658
- 645 --- 646
- 645 --- 647
- 645 --- 648
- 645 --- 649
- 645 --- 650
- 645 --- 651
- 645 --- 652
- 645 --- 653
- 645 --- 654
- 645 --- 655
- 645 --- 656
- 645 --- 657
- 645 --- 658
- 650 --- 659
- 659 --- 660
- 659 --- 661
- 659 --- 662
- 659 --- 663
- 659 --- 664
- 659 ---- 666
- 659 --- 665
- 660 --- 667
- 660 --- 672
- 660 --- 673
- 661 --- 668
- 661 --- 674
- 661 --- 675
- 662 --- 669
- 662 --- 676
- 662 --- 677
- 663 --- 670
- 663 --- 678
- 663 --- 679
- 666 --- 667
- 666 --- 668
- 666 --- 669
- 666 --- 670
- 666 --- 671
+ 638 --- 645
+ 638 --- 646
+ 644 <--x 640
+ 644 <--x 643
+ 645 <--x 641
+ 645 <--x 643
+ 646 <--x 642
+ 646 <--x 643
+ 647 --- 648
+ 647 --- 649
+ 647 --- 650
+ 647 --- 651
+ 647 --- 652
+ 647 ---- 654
+ 647 --- 653
+ 648 --- 658
+ 648 --- 662
+ 648 <--x 11
+ 649 --- 657
+ 649 --- 661
+ 649 <--x 11
+ 650 --- 656
+ 650 --- 660
+ 650 <--x 11
+ 651 --- 655
+ 651 <--x 11
+ 654 --- 655
+ 654 --- 656
+ 654 --- 657
+ 654 --- 658
+ 654 --- 659
+ 654 --- 660
+ 654 --- 661
+ 654 --- 662
+ 660 <--x 656
+ 660 <--x 659
+ 661 <--x 657
+ 661 <--x 659
+ 662 <--x 658
+ 662 <--x 659
+ 663 --- 664
+ 663 --- 665
+ 663 --- 666
+ 663 --- 667
+ 663 --- 668
+ 663 ---- 670
+ 663 --- 669
+ 664 --- 674
+ 664 --- 678
+ 664 <--x 11
+ 665 --- 673
+ 665 --- 677
+ 665 <--x 11
666 --- 672
- 666 --- 673
- 666 --- 674
- 666 --- 675
666 --- 676
- 666 --- 677
- 666 --- 678
- 666 --- 679
- 680 --- 681
- 680 --- 682
- 680 --- 683
- 680 --- 684
- 680 --- 685
- 680 ---- 687
- 680 --- 686
- 681 --- 688
+ 666 <--x 11
+ 667 --- 671
+ 667 <--x 11
+ 670 --- 671
+ 670 --- 672
+ 670 --- 673
+ 670 --- 674
+ 670 --- 675
+ 670 --- 676
+ 670 --- 677
+ 670 --- 678
+ 676 <--x 672
+ 676 <--x 675
+ 677 <--x 673
+ 677 <--x 675
+ 678 <--x 674
+ 678 <--x 675
+ 679 --- 680
+ 679 --- 681
+ 679 --- 682
+ 679 --- 683
+ 679 --- 684
+ 679 ---- 686
+ 679 --- 685
+ 680 --- 690
+ 680 --- 694
+ 680 <--x 11
+ 681 --- 689
681 --- 693
- 681 --- 694
- 682 --- 689
- 682 --- 695
- 682 --- 696
- 683 --- 690
- 683 --- 697
- 683 --- 698
- 684 --- 691
- 684 --- 699
- 684 --- 700
- 687 --- 688
- 687 --- 689
- 687 --- 690
- 687 --- 691
- 687 --- 692
- 687 --- 693
- 687 --- 694
- 687 --- 695
- 687 --- 696
- 687 --- 697
- 687 --- 698
- 687 --- 699
- 687 --- 700
- 692 --- 701
- 701 --- 702
- 701 --- 703
- 701 --- 704
- 701 --- 705
- 701 --- 706
- 701 ---- 708
- 701 --- 707
+ 681 <--x 11
+ 682 --- 688
+ 682 --- 692
+ 682 <--x 11
+ 683 --- 687
+ 683 <--x 11
+ 686 --- 687
+ 686 --- 688
+ 686 --- 689
+ 686 --- 690
+ 686 --- 691
+ 686 --- 692
+ 686 --- 693
+ 686 --- 694
+ 692 <--x 688
+ 692 <--x 691
+ 693 <--x 689
+ 693 <--x 691
+ 694 <--x 690
+ 694 <--x 691
+ 695 --- 696
+ 695 --- 697
+ 695 --- 698
+ 695 --- 699
+ 695 --- 700
+ 695 ---- 702
+ 695 --- 701
+ 696 --- 706
+ 696 --- 710
+ 696 <--x 11
+ 697 --- 705
+ 697 --- 709
+ 697 <--x 11
+ 698 --- 704
+ 698 --- 708
+ 698 <--x 11
+ 699 --- 703
+ 699 <--x 11
+ 702 --- 703
+ 702 --- 704
+ 702 --- 705
+ 702 --- 706
+ 702 --- 707
+ 702 --- 708
702 --- 709
- 702 --- 714
- 702 --- 715
- 703 --- 710
- 703 --- 716
- 703 --- 717
- 704 --- 711
- 704 --- 718
- 704 --- 719
- 705 --- 712
- 705 --- 720
- 705 --- 721
- 708 --- 709
- 708 --- 710
- 708 --- 711
- 708 --- 712
- 708 --- 713
- 708 --- 714
- 708 --- 715
- 708 --- 716
- 708 --- 717
- 708 --- 718
- 708 --- 719
- 708 --- 720
- 708 --- 721
- 713 --- 722
- 722 --- 723
- 722 --- 724
- 722 --- 725
- 722 --- 726
- 722 --- 727
- 722 ---- 729
- 722 --- 728
- 723 --- 730
- 723 --- 735
- 723 --- 736
- 724 --- 731
- 724 --- 737
- 724 --- 738
- 725 --- 732
- 725 --- 739
- 725 --- 740
- 726 --- 733
- 726 --- 741
- 726 --- 742
- 729 --- 730
- 729 --- 731
- 729 --- 732
- 729 --- 733
- 729 --- 734
- 729 --- 735
- 729 --- 736
+ 702 --- 710
+ 708 <--x 704
+ 708 <--x 707
+ 709 <--x 705
+ 709 <--x 707
+ 710 <--x 706
+ 710 <--x 707
+ 711 --- 712
+ 711 --- 713
+ 711 --- 714
+ 711 --- 715
+ 711 --- 716
+ 711 ---- 718
+ 711 --- 717
+ 712 --- 722
+ 712 --- 726
+ 712 <--x 11
+ 713 --- 721
+ 713 --- 725
+ 713 <--x 11
+ 714 --- 720
+ 714 --- 724
+ 714 <--x 11
+ 715 --- 719
+ 715 <--x 11
+ 718 --- 719
+ 718 --- 720
+ 718 --- 721
+ 718 --- 722
+ 718 --- 723
+ 718 --- 724
+ 718 --- 725
+ 718 --- 726
+ 724 <--x 720
+ 724 <--x 723
+ 725 <--x 721
+ 725 <--x 723
+ 726 <--x 722
+ 726 <--x 723
+ 727 --- 728
+ 727 --- 729
+ 727 --- 730
+ 727 --- 731
+ 727 --- 732
+ 727 ---- 734
+ 727 --- 733
+ 728 --- 738
+ 728 --- 742
+ 728 <--x 11
729 --- 737
- 729 --- 738
- 729 --- 739
- 729 --- 740
729 --- 741
- 729 --- 742
- 734 --- 743
- 743 --- 744
- 743 --- 745
- 743 --- 746
- 743 --- 747
- 743 --- 748
- 743 ---- 750
- 743 --- 749
- 744 --- 751
- 744 --- 756
- 744 --- 757
- 745 --- 752
- 745 --- 758
- 745 --- 759
- 746 --- 753
- 746 --- 760
- 746 --- 761
- 747 --- 754
- 747 --- 762
- 747 --- 763
- 750 --- 751
- 750 --- 752
- 750 --- 753
- 750 --- 754
- 750 --- 755
- 750 --- 756
- 750 --- 757
- 750 --- 758
- 750 --- 759
- 750 --- 760
- 750 --- 761
- 750 --- 762
- 750 --- 763
- 764 --- 765
- 764 --- 766
- 764 --- 767
- 764 --- 768
- 764 --- 769
- 764 ---- 771
- 764 --- 770
- 765 --- 775
- 765 --- 783
- 765 --- 784
- 766 --- 774
- 766 --- 781
- 766 --- 782
- 767 --- 773
- 767 --- 779
- 767 --- 780
- 768 --- 772
- 768 --- 777
- 768 --- 778
- 771 --- 772
- 771 --- 773
- 771 --- 774
- 771 --- 775
- 771 --- 776
- 771 --- 777
- 771 --- 778
- 771 --- 779
- 771 --- 780
- 771 --- 781
- 771 --- 782
- 771 --- 783
- 771 --- 784
- 785 --- 786
- 785 --- 787
- 785 --- 788
- 785 --- 789
- 785 --- 790
- 785 ---- 792
- 785 --- 791
- 786 --- 796
- 786 --- 804
- 786 --- 805
- 787 --- 795
- 787 --- 802
- 787 --- 803
- 788 --- 794
- 788 --- 800
- 788 --- 801
- 789 --- 793
- 789 --- 798
- 789 --- 799
- 792 --- 793
- 792 --- 794
- 792 --- 795
- 792 --- 796
- 792 --- 797
- 792 --- 798
- 792 --- 799
- 792 --- 800
- 792 --- 801
- 792 --- 802
- 792 --- 803
- 792 --- 804
- 792 --- 805
- 806 --- 807
- 806 --- 808
- 806 --- 809
- 806 --- 810
- 806 --- 811
- 806 ---- 813
- 806 --- 812
- 807 --- 817
- 807 --- 825
- 807 --- 826
- 808 --- 816
- 808 --- 823
- 808 --- 824
- 809 --- 815
- 809 --- 821
- 809 --- 822
- 810 --- 814
- 810 --- 819
- 810 --- 820
- 813 --- 814
- 813 --- 815
- 813 --- 816
- 813 --- 817
- 813 --- 818
- 813 --- 819
- 813 --- 820
- 813 --- 821
- 813 --- 822
- 813 --- 823
- 813 --- 824
- 813 --- 825
- 813 --- 826
- 827 --- 828
- 827 --- 829
- 827 --- 830
- 827 --- 831
- 827 --- 832
- 827 ---- 834
- 827 --- 833
- 828 --- 838
- 828 --- 846
- 828 --- 847
- 829 --- 837
- 829 --- 844
- 829 --- 845
- 830 --- 836
- 830 --- 842
- 830 --- 843
- 831 --- 835
- 831 --- 840
- 831 --- 841
- 834 --- 835
- 834 --- 836
- 834 --- 837
- 834 --- 838
- 834 --- 839
- 834 --- 840
- 834 --- 841
- 834 --- 842
- 834 --- 843
- 834 --- 844
- 834 --- 845
- 834 --- 846
- 834 --- 847
- 848 --- 849
- 848 --- 850
- 848 --- 851
- 848 --- 852
- 848 --- 853
- 848 ---- 855
- 848 --- 854
- 849 --- 859
- 849 --- 867
- 849 --- 868
- 850 --- 858
- 850 --- 865
- 850 --- 866
- 851 --- 857
- 851 --- 863
- 851 --- 864
- 852 --- 856
- 852 --- 861
- 852 --- 862
- 855 --- 856
- 855 --- 857
- 855 --- 858
- 855 --- 859
- 855 --- 860
- 855 --- 861
- 855 --- 862
- 855 --- 863
- 855 --- 864
- 855 --- 865
- 855 --- 866
- 855 --- 867
- 855 --- 868
- 869 --- 870
- 869 --- 871
- 869 --- 872
- 869 --- 873
- 869 --- 874
- 869 ---- 876
- 869 --- 875
- 870 --- 880
- 870 --- 888
- 870 --- 889
- 871 --- 879
- 871 --- 886
- 871 --- 887
- 872 --- 878
- 872 --- 884
- 872 --- 885
- 873 --- 877
- 873 --- 882
- 873 --- 883
- 876 --- 877
- 876 --- 878
- 876 --- 879
- 876 --- 880
- 876 --- 881
- 876 --- 882
- 876 --- 883
- 876 --- 884
- 876 --- 885
- 876 --- 886
- 876 --- 887
- 876 --- 888
- 876 --- 889
- 890 --- 891
- 890 --- 892
- 890 --- 893
- 890 --- 894
- 890 --- 895
- 890 ---- 897
- 890 --- 896
- 891 --- 901
- 891 --- 909
- 891 --- 910
- 892 --- 900
- 892 --- 907
- 892 --- 908
- 893 --- 899
- 893 --- 905
- 893 --- 906
- 894 --- 898
- 894 --- 903
- 894 --- 904
- 897 --- 898
- 897 --- 899
- 897 --- 900
- 897 --- 901
- 897 --- 902
- 897 --- 903
- 897 --- 904
- 897 --- 905
- 897 --- 906
- 897 --- 907
- 897 --- 908
- 897 --- 909
- 897 --- 910
- 911 --- 912
- 911 --- 913
- 911 --- 914
- 911 --- 915
- 911 --- 916
- 911 ---- 918
- 911 --- 917
- 912 --- 922
- 912 --- 930
- 912 --- 931
- 913 --- 921
- 913 --- 928
- 913 --- 929
- 914 --- 920
- 914 --- 926
- 914 --- 927
- 915 --- 919
- 915 --- 924
- 915 --- 925
- 918 --- 919
- 918 --- 920
- 918 --- 921
- 918 --- 922
- 918 --- 923
- 918 --- 924
- 918 --- 925
- 918 --- 926
- 918 --- 927
- 918 --- 928
- 918 --- 929
- 918 --- 930
- 918 --- 931
- 932 --- 933
- 932 --- 934
- 932 --- 935
- 932 --- 936
- 932 --- 937
- 932 ---- 939
- 932 --- 938
- 933 --- 943
- 933 --- 951
- 933 --- 952
- 934 --- 942
- 934 --- 949
- 934 --- 950
- 935 --- 941
- 935 --- 947
- 935 --- 948
- 936 --- 940
- 936 --- 945
- 936 --- 946
- 939 --- 940
- 939 --- 941
- 939 --- 942
- 939 --- 943
- 939 --- 944
- 939 --- 945
- 939 --- 946
- 939 --- 947
- 939 --- 948
- 939 --- 949
- 939 --- 950
- 939 --- 951
- 939 --- 952
- 953 --- 954
- 953 --- 955
- 953 --- 956
- 953 --- 957
- 953 --- 958
- 953 ---- 960
- 953 --- 959
- 954 --- 964
- 954 --- 972
- 954 --- 973
- 955 --- 963
- 955 --- 970
- 955 --- 971
- 956 --- 962
- 956 --- 968
- 956 --- 969
- 957 --- 961
- 957 --- 966
- 957 --- 967
- 960 --- 961
- 960 --- 962
- 960 --- 963
- 960 --- 964
- 960 --- 965
- 960 --- 966
- 960 --- 967
- 960 --- 968
- 960 --- 969
- 960 --- 970
- 960 --- 971
- 960 --- 972
- 960 --- 973
- 15 <--x 974
- 36 <--x 975
- 73 <--x 976
- 73 <--x 977
- 73 <--x 978
- 73 <--x 979
- 73 <--x 980
- 73 <--x 981
- 73 <--x 982
- 73 <--x 983
- 73 <--x 984
- 15 <--x 985
- 331 <--x 986
- 331 <--x 987
- 331 <--x 988
- 331 <--x 989
- 15 <--x 990
- 331 <--x 991
- 331 <--x 992
- 331 <--x 993
- 522 <--x 994
- 566 <--x 995
- 12 <--x 996
- 608 <--x 997
- 629 <--x 998
- 650 <--x 999
- 12 <--x 1000
- 692 <--x 1001
- 713 <--x 1002
- 734 <--x 1003
- 11 <--x 1004
- 11 <--x 1005
- 11 <--x 1006
- 11 <--x 1007
- 11 <--x 1008
- 11 <--x 1009
- 11 <--x 1010
- 11 <--x 1011
- 11 <--x 1012
- 11 <--x 1013
+ 729 <--x 11
+ 730 --- 736
+ 730 --- 740
+ 730 <--x 11
+ 731 --- 735
+ 731 <--x 11
+ 734 --- 735
+ 734 --- 736
+ 734 --- 737
+ 734 --- 738
+ 734 --- 739
+ 734 --- 740
+ 734 --- 741
+ 734 --- 742
+ 740 <--x 736
+ 740 <--x 739
+ 741 <--x 737
+ 741 <--x 739
+ 742 <--x 738
+ 742 <--x 739
+ 15 <--x 743
+ 31 <--x 744
+ 63 <--x 745
+ 63 <--x 746
+ 63 <--x 747
+ 63 <--x 748
+ 63 <--x 749
+ 63 <--x 750
+ 63 <--x 751
+ 63 <--x 752
+ 63 <--x 753
+ 15 <--x 754
+ 255 <--x 755
+ 255 <--x 756
+ 255 <--x 757
+ 255 <--x 758
+ 15 <--x 759
+ 255 <--x 760
+ 255 <--x 761
+ 255 <--x 762
+ 401 <--x 763
+ 435 <--x 764
+ 12 <--x 765
+ 467 <--x 766
+ 483 <--x 767
+ 499 <--x 768
+ 12 <--x 769
+ 531 <--x 770
+ 547 <--x 771
+ 563 <--x 772
+ 11 <--x 773
+ 11 <--x 774
+ 11 <--x 775
+ 11 <--x 776
+ 11 <--x 777
+ 11 <--x 778
+ 11 <--x 779
+ 11 <--x 780
+ 11 <--x 781
+ 11 <--x 782
```
diff --git a/rust/kcl-lib/tests/kcl_samples/lego/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/lego/artifact_commands.snap
index e1a1191ed..21371f508 100644
--- a/rust/kcl-lib/tests/kcl_samples/lego/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/lego/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands lego.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands lego.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands lego.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -456,20 +564,27 @@ description: Artifact commands lego.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -492,6 +607,33 @@ description: Artifact commands lego.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -512,6 +654,80 @@ description: Artifact commands lego.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -833,45 +1049,7 @@ description: Artifact commands lego.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 45.72,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -880,20 +1058,18 @@ description: Artifact commands lego.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -967,45 +1143,7 @@ description: Artifact commands lego.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 45.72,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -1014,20 +1152,18 @@ description: Artifact commands lego.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -1097,6 +1233,33 @@ description: Artifact commands lego.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1164,6 +1327,221 @@ description: Artifact commands lego.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 45.72,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 45.72,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1353,6 +1731,33 @@ description: Artifact commands lego.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1419,5 +1824,32 @@ description: Artifact commands lego.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/kcl_samples/lego/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/lego/artifact_graph_flowchart.snap.md
index 2535c0501..6348d7c5f 100644
--- a/rust/kcl-lib/tests/kcl_samples/lego/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/lego/artifact_graph_flowchart.snap.md
@@ -8,23 +8,23 @@ flowchart LR
6["Segment
[1180, 1187, 0]"]
7[Solid2d]
end
- subgraph path23 [Path]
- 23["Path
[1434, 1521, 0]"]
- 24["Segment
[1527, 1564, 0]"]
- 25["Segment
[1570, 1608, 0]"]
- 26["Segment
[1614, 1654, 0]"]
- 27["Segment
[1660, 1667, 0]"]
- 28[Solid2d]
+ subgraph path18 [Path]
+ 18["Path
[1434, 1521, 0]"]
+ 19["Segment
[1527, 1564, 0]"]
+ 20["Segment
[1570, 1608, 0]"]
+ 21["Segment
[1614, 1654, 0]"]
+ 22["Segment
[1660, 1667, 0]"]
+ 23[Solid2d]
end
- subgraph path43 [Path]
- 43["Path
[1791, 1938, 0]"]
- 44["Segment
[1791, 1938, 0]"]
- 45[Solid2d]
+ subgraph path33 [Path]
+ 33["Path
[1791, 1938, 0]"]
+ 34["Segment
[1791, 1938, 0]"]
+ 35[Solid2d]
end
- subgraph path56 [Path]
- 56["Path
[2228, 2403, 0]"]
- 57["Segment
[2228, 2403, 0]"]
- 58[Solid2d]
+ subgraph path44 [Path]
+ 44["Path
[2228, 2403, 0]"]
+ 45["Segment
[2228, 2403, 0]"]
+ 46[Solid2d]
end
1["Plane
[996, 1013, 0]"]
8["Sweep Extrusion
[1193, 1217, 0]"]
@@ -35,46 +35,32 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 29["Sweep Extrusion
[1673, 1704, 0]"]
- 30[Wall]
- 31[Wall]
- 32[Wall]
- 33[Wall]
- 34["Cap Start"]
- 35["SweepEdge Opposite"]
- 36["SweepEdge Adjacent"]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
- 39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 41["SweepEdge Opposite"]
- 42["SweepEdge Adjacent"]
- 46["Sweep Extrusion
[2092, 2120, 0]"]
- 47[Wall]
- 48["Cap End"]
- 49["SweepEdge Opposite"]
- 50["SweepEdge Adjacent"]
- 51["Sweep Extrusion
[2092, 2120, 0]"]
- 52["Sweep Extrusion
[2092, 2120, 0]"]
- 53["Sweep Extrusion
[2092, 2120, 0]"]
- 54["Sweep Extrusion
[2092, 2120, 0]"]
- 55["Sweep Extrusion
[2092, 2120, 0]"]
- 59["Sweep Extrusion
[2565, 2593, 0]"]
- 60[Wall]
- 61["Cap End"]
- 62["SweepEdge Opposite"]
- 63["SweepEdge Adjacent"]
- 64["Sweep Extrusion
[2565, 2593, 0]"]
- 65["StartSketchOnFace
[1395, 1428, 0]"]
- 66["StartSketchOnFace
[1754, 1785, 0]"]
- 67["StartSketchOnFace
[2181, 2222, 0]"]
+ 24["Sweep Extrusion
[1673, 1704, 0]"]
+ 25[Wall]
+ 26[Wall]
+ 27[Wall]
+ 28[Wall]
+ 29["Cap Start"]
+ 30["SweepEdge Opposite"]
+ 31["SweepEdge Opposite"]
+ 32["SweepEdge Opposite"]
+ 36["Sweep Extrusion
[2092, 2120, 0]"]
+ 37[Wall]
+ 38["Cap End"]
+ 39["Sweep Extrusion
[2092, 2120, 0]"]
+ 40["Sweep Extrusion
[2092, 2120, 0]"]
+ 41["Sweep Extrusion
[2092, 2120, 0]"]
+ 42["Sweep Extrusion
[2092, 2120, 0]"]
+ 43["Sweep Extrusion
[2092, 2120, 0]"]
+ 47["Sweep Extrusion
[2565, 2593, 0]"]
+ 48[Wall]
+ 49["Cap End"]
+ 50["Sweep Extrusion
[2565, 2593, 0]"]
+ 51["StartSketchOnFace
[1395, 1428, 0]"]
+ 52["StartSketchOnFace
[1754, 1785, 0]"]
+ 53["StartSketchOnFace
[2181, 2222, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -83,17 +69,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 9
- 3 --- 15
- 3 --- 16
+ 3 x--> 13
4 --- 10
- 4 --- 17
- 4 --- 18
+ 4 --- 15
+ 4 x--> 13
5 --- 11
- 5 --- 19
- 5 --- 20
+ 5 --- 16
+ 5 x--> 13
6 --- 12
- 6 --- 21
- 6 --- 22
+ 6 --- 17
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -103,66 +88,61 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 13 --- 23
- 14 --- 43
- 23 --- 24
- 23 --- 25
- 23 --- 26
- 23 --- 27
- 23 ---- 29
- 23 --- 28
+ 13 --- 18
+ 14 --- 33
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 18 --- 19
+ 18 --- 20
+ 18 --- 21
+ 18 --- 22
+ 18 ---- 24
+ 18 --- 23
+ 19 --- 25
+ 19 <--x 13
+ 20 --- 26
+ 20 --- 30
+ 20 <--x 13
+ 21 --- 27
+ 21 --- 31
+ 21 <--x 13
+ 22 --- 28
+ 22 --- 32
+ 22 <--x 13
+ 24 --- 25
+ 24 --- 26
+ 24 --- 27
+ 24 --- 28
+ 24 --- 29
24 --- 30
- 24 --- 35
- 24 --- 36
- 25 --- 31
- 25 --- 37
- 25 --- 38
- 26 --- 32
- 26 --- 39
- 26 --- 40
- 27 --- 33
- 27 --- 41
- 27 --- 42
- 29 --- 30
- 29 --- 31
- 29 --- 32
- 29 --- 33
- 29 --- 34
- 29 --- 35
- 29 --- 36
- 29 --- 37
- 29 --- 38
- 29 --- 39
- 29 --- 40
- 29 --- 41
- 29 --- 42
- 34 --- 56
- 43 --- 44
- 43 ---- 46
- 43 --- 45
- 44 --- 47
- 44 --- 49
- 44 --- 50
- 46 --- 47
- 46 --- 48
- 46 --- 49
- 46 --- 50
- 56 --- 57
- 56 ---- 59
- 56 --- 58
- 57 --- 60
- 57 --- 62
- 57 --- 63
- 59 --- 60
- 59 --- 61
- 59 --- 62
- 59 --- 63
- 13 <--x 65
- 14 <--x 66
- 34 <--x 67
+ 24 --- 31
+ 24 --- 32
+ 29 --- 44
+ 30 <--x 26
+ 30 <--x 29
+ 31 <--x 27
+ 31 <--x 29
+ 32 <--x 28
+ 32 <--x 29
+ 33 --- 34
+ 33 ---- 36
+ 33 --- 35
+ 34 --- 37
+ 34 <--x 14
+ 36 --- 37
+ 36 --- 38
+ 44 --- 45
+ 44 ---- 47
+ 44 --- 46
+ 45 --- 48
+ 45 <--x 29
+ 47 --- 48
+ 47 --- 49
+ 13 <--x 51
+ 14 <--x 52
+ 29 <--x 53
```
diff --git a/rust/kcl-lib/tests/kcl_samples/makeup-mirror/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/makeup-mirror/artifact_commands.snap
index f53e58a35..88d5c7fdd 100644
--- a/rust/kcl-lib/tests/kcl_samples/makeup-mirror/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/makeup-mirror/artifact_commands.snap
@@ -215,6 +215,33 @@ description: Artifact commands makeup-mirror.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -401,6 +428,33 @@ description: Artifact commands makeup-mirror.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -587,6 +641,33 @@ description: Artifact commands makeup-mirror.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -773,6 +854,33 @@ description: Artifact commands makeup-mirror.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -959,6 +1067,33 @@ description: Artifact commands makeup-mirror.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1145,6 +1280,33 @@ description: Artifact commands makeup-mirror.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1331,6 +1493,33 @@ description: Artifact commands makeup-mirror.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1503,6 +1692,33 @@ description: Artifact commands makeup-mirror.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1675,6 +1891,33 @@ description: Artifact commands makeup-mirror.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1861,6 +2104,33 @@ description: Artifact commands makeup-mirror.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2065,20 +2335,27 @@ description: Artifact commands makeup-mirror.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2101,6 +2378,33 @@ description: Artifact commands makeup-mirror.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2121,6 +2425,80 @@ description: Artifact commands makeup-mirror.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/makeup-mirror/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/makeup-mirror/artifact_graph_flowchart.snap.md
index a8d8de6c7..377739175 100644
--- a/rust/kcl-lib/tests/kcl_samples/makeup-mirror/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/makeup-mirror/artifact_graph_flowchart.snap.md
@@ -5,313 +5,258 @@ flowchart LR
3["Segment
[583, 628, 0]"]
4[Solid2d]
end
- subgraph path12 [Path]
- 12["Path
[583, 628, 0]"]
- 13["Segment
[583, 628, 0]"]
- 14[Solid2d]
+ subgraph path10 [Path]
+ 10["Path
[583, 628, 0]"]
+ 11["Segment
[583, 628, 0]"]
+ 12[Solid2d]
end
- subgraph path22 [Path]
- 22["Path
[583, 628, 0]"]
- 23["Segment
[583, 628, 0]"]
- 24[Solid2d]
+ subgraph path18 [Path]
+ 18["Path
[583, 628, 0]"]
+ 19["Segment
[583, 628, 0]"]
+ 20[Solid2d]
end
- subgraph path32 [Path]
- 32["Path
[583, 628, 0]"]
- 33["Segment
[583, 628, 0]"]
- 34[Solid2d]
+ subgraph path26 [Path]
+ 26["Path
[583, 628, 0]"]
+ 27["Segment
[583, 628, 0]"]
+ 28[Solid2d]
+ end
+ subgraph path34 [Path]
+ 34["Path
[583, 628, 0]"]
+ 35["Segment
[583, 628, 0]"]
+ 36[Solid2d]
end
subgraph path42 [Path]
42["Path
[583, 628, 0]"]
43["Segment
[583, 628, 0]"]
44[Solid2d]
end
- subgraph path52 [Path]
- 52["Path
[583, 628, 0]"]
- 53["Segment
[583, 628, 0]"]
- 54[Solid2d]
+ subgraph path50 [Path]
+ 50["Path
[583, 628, 0]"]
+ 51["Segment
[583, 628, 0]"]
+ 52[Solid2d]
end
- subgraph path62 [Path]
- 62["Path
[583, 628, 0]"]
- 63["Segment
[583, 628, 0]"]
- 64[Solid2d]
+ subgraph path58 [Path]
+ 58["Path
[1228, 1283, 0]"]
+ 59["Segment
[1228, 1283, 0]"]
+ 60[Solid2d]
end
- subgraph path72 [Path]
- 72["Path
[1228, 1283, 0]"]
- 73["Segment
[1228, 1283, 0]"]
- 74[Solid2d]
+ subgraph path66 [Path]
+ 66["Path
[1228, 1283, 0]"]
+ 67["Segment
[1228, 1283, 0]"]
+ 68[Solid2d]
end
- subgraph path82 [Path]
- 82["Path
[1228, 1283, 0]"]
- 83["Segment
[1228, 1283, 0]"]
- 84[Solid2d]
+ subgraph path74 [Path]
+ 74["Path
[1676, 1739, 0]"]
+ 75["Segment
[1676, 1739, 0]"]
+ 76[Solid2d]
end
- subgraph path92 [Path]
- 92["Path
[1676, 1739, 0]"]
- 93["Segment
[1676, 1739, 0]"]
- 94[Solid2d]
- end
- subgraph path101 [Path]
- 101["Path
[1785, 1844, 0]"]
- 102["Segment
[1852, 1876, 0]"]
- 103["Segment
[1884, 1984, 0]"]
- 104["Segment
[1992, 2016, 0]"]
- 105["Segment
[2024, 2202, 0]"]
- 106["Segment
[2210, 2217, 0]"]
- 107[Solid2d]
+ subgraph path81 [Path]
+ 81["Path
[1785, 1844, 0]"]
+ 82["Segment
[1852, 1876, 0]"]
+ 83["Segment
[1884, 1984, 0]"]
+ 84["Segment
[1992, 2016, 0]"]
+ 85["Segment
[2024, 2202, 0]"]
+ 86["Segment
[2210, 2217, 0]"]
+ 87[Solid2d]
end
1["Plane
[547, 574, 0]"]
5["Sweep Extrusion
[636, 665, 0]"]
6[Wall]
7["Cap Start"]
8["Cap End"]
- 9["SweepEdge Opposite"]
- 10["SweepEdge Adjacent"]
- 11["Plane
[547, 574, 0]"]
- 15["Sweep Extrusion
[636, 665, 0]"]
- 16[Wall]
- 17["Cap Start"]
- 18["Cap End"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["Plane
[547, 574, 0]"]
- 25["Sweep Extrusion
[636, 665, 0]"]
- 26[Wall]
- 27["Cap Start"]
- 28["Cap End"]
- 29["SweepEdge Opposite"]
- 30["SweepEdge Adjacent"]
- 31["Plane
[547, 574, 0]"]
- 35["Sweep Extrusion
[636, 665, 0]"]
- 36[Wall]
- 37["Cap Start"]
- 38["Cap End"]
- 39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
+ 9["Plane
[547, 574, 0]"]
+ 13["Sweep Extrusion
[636, 665, 0]"]
+ 14[Wall]
+ 15["Cap Start"]
+ 16["Cap End"]
+ 17["Plane
[547, 574, 0]"]
+ 21["Sweep Extrusion
[636, 665, 0]"]
+ 22[Wall]
+ 23["Cap Start"]
+ 24["Cap End"]
+ 25["Plane
[547, 574, 0]"]
+ 29["Sweep Extrusion
[636, 665, 0]"]
+ 30[Wall]
+ 31["Cap Start"]
+ 32["Cap End"]
+ 33["Plane
[547, 574, 0]"]
+ 37["Sweep Extrusion
[636, 665, 0]"]
+ 38[Wall]
+ 39["Cap Start"]
+ 40["Cap End"]
41["Plane
[547, 574, 0]"]
45["Sweep Extrusion
[636, 665, 0]"]
46[Wall]
47["Cap Start"]
48["Cap End"]
- 49["SweepEdge Opposite"]
- 50["SweepEdge Adjacent"]
- 51["Plane
[547, 574, 0]"]
- 55["Sweep Extrusion
[636, 665, 0]"]
- 56[Wall]
- 57["Cap Start"]
- 58["Cap End"]
- 59["SweepEdge Opposite"]
- 60["SweepEdge Adjacent"]
- 61["Plane
[547, 574, 0]"]
- 65["Sweep Extrusion
[636, 665, 0]"]
- 66[Wall]
- 67["Cap Start"]
- 68["Cap End"]
- 69["SweepEdge Opposite"]
- 70["SweepEdge Adjacent"]
- 71["Plane
[1200, 1220, 0]"]
- 75["Sweep Extrusion
[1291, 1318, 0]"]
- 76[Wall]
- 77["Cap Start"]
- 78["Cap End"]
- 79["SweepEdge Opposite"]
- 80["SweepEdge Adjacent"]
- 81["Plane
[1200, 1220, 0]"]
- 85["Sweep Extrusion
[1291, 1318, 0]"]
- 86[Wall]
- 87["Cap Start"]
- 88["Cap End"]
- 89["SweepEdge Opposite"]
- 90["SweepEdge Adjacent"]
- 91["Plane
[1612, 1662, 0]"]
- 95["Sweep Extrusion
[1747, 1770, 0]"]
- 96[Wall]
- 97["Cap Start"]
- 98["Cap End"]
- 99["SweepEdge Opposite"]
- 100["SweepEdge Adjacent"]
- 108["Sweep Extrusion
[2225, 2248, 0]"]
- 109[Wall]
- 110[Wall]
- 111[Wall]
- 112[Wall]
- 113["Cap Start"]
- 114["Cap End"]
- 115["SweepEdge Opposite"]
- 116["SweepEdge Adjacent"]
- 117["SweepEdge Opposite"]
- 118["SweepEdge Adjacent"]
- 119["SweepEdge Opposite"]
- 120["SweepEdge Adjacent"]
- 121["SweepEdge Opposite"]
- 122["SweepEdge Adjacent"]
- 123["StartSketchOnPlane
[533, 575, 0]"]
- 124["StartSketchOnPlane
[533, 575, 0]"]
- 125["StartSketchOnPlane
[533, 575, 0]"]
- 126["StartSketchOnPlane
[533, 575, 0]"]
- 127["StartSketchOnPlane
[533, 575, 0]"]
- 128["StartSketchOnPlane
[533, 575, 0]"]
- 129["StartSketchOnPlane
[533, 575, 0]"]
- 130["StartSketchOnPlane
[1596, 1663, 0]"]
+ 49["Plane
[547, 574, 0]"]
+ 53["Sweep Extrusion
[636, 665, 0]"]
+ 54[Wall]
+ 55["Cap Start"]
+ 56["Cap End"]
+ 57["Plane
[1200, 1220, 0]"]
+ 61["Sweep Extrusion
[1291, 1318, 0]"]
+ 62[Wall]
+ 63["Cap Start"]
+ 64["Cap End"]
+ 65["Plane
[1200, 1220, 0]"]
+ 69["Sweep Extrusion
[1291, 1318, 0]"]
+ 70[Wall]
+ 71["Cap Start"]
+ 72["Cap End"]
+ 73["Plane
[1612, 1662, 0]"]
+ 77["Sweep Extrusion
[1747, 1770, 0]"]
+ 78[Wall]
+ 79["Cap Start"]
+ 80["Cap End"]
+ 88["Sweep Extrusion
[2225, 2248, 0]"]
+ 89[Wall]
+ 90[Wall]
+ 91[Wall]
+ 92[Wall]
+ 93["Cap Start"]
+ 94["Cap End"]
+ 95["SweepEdge Opposite"]
+ 96["SweepEdge Opposite"]
+ 97["SweepEdge Opposite"]
+ 98["StartSketchOnPlane
[533, 575, 0]"]
+ 99["StartSketchOnPlane
[533, 575, 0]"]
+ 100["StartSketchOnPlane
[533, 575, 0]"]
+ 101["StartSketchOnPlane
[533, 575, 0]"]
+ 102["StartSketchOnPlane
[533, 575, 0]"]
+ 103["StartSketchOnPlane
[533, 575, 0]"]
+ 104["StartSketchOnPlane
[533, 575, 0]"]
+ 105["StartSketchOnPlane
[1596, 1663, 0]"]
1 --- 2
2 --- 3
2 ---- 5
2 --- 4
3 --- 6
- 3 --- 9
- 3 --- 10
+ 3 x--> 7
5 --- 6
5 --- 7
5 --- 8
- 5 --- 9
- 5 --- 10
- 11 --- 12
- 12 --- 13
- 12 ---- 15
- 12 --- 14
+ 9 --- 10
+ 10 --- 11
+ 10 ---- 13
+ 10 --- 12
+ 11 --- 14
+ 11 x--> 15
+ 13 --- 14
+ 13 --- 15
13 --- 16
- 13 --- 19
- 13 --- 20
- 15 --- 16
- 15 --- 17
- 15 --- 18
- 15 --- 19
- 15 --- 20
+ 17 --- 18
+ 18 --- 19
+ 18 ---- 21
+ 18 --- 20
+ 19 --- 22
+ 19 x--> 23
21 --- 22
- 22 --- 23
- 22 ---- 25
- 22 --- 24
- 23 --- 26
- 23 --- 29
- 23 --- 30
+ 21 --- 23
+ 21 --- 24
25 --- 26
- 25 --- 27
- 25 --- 28
- 25 --- 29
- 25 --- 30
- 31 --- 32
- 32 --- 33
- 32 ---- 35
- 32 --- 34
- 33 --- 36
- 33 --- 39
- 33 --- 40
- 35 --- 36
- 35 --- 37
+ 26 --- 27
+ 26 ---- 29
+ 26 --- 28
+ 27 --- 30
+ 27 x--> 31
+ 29 --- 30
+ 29 --- 31
+ 29 --- 32
+ 33 --- 34
+ 34 --- 35
+ 34 ---- 37
+ 34 --- 36
35 --- 38
- 35 --- 39
- 35 --- 40
+ 35 x--> 39
+ 37 --- 38
+ 37 --- 39
+ 37 --- 40
41 --- 42
42 --- 43
42 ---- 45
42 --- 44
43 --- 46
- 43 --- 49
- 43 --- 50
+ 43 x--> 47
45 --- 46
45 --- 47
45 --- 48
- 45 --- 49
- 45 --- 50
- 51 --- 52
- 52 --- 53
- 52 ---- 55
- 52 --- 54
+ 49 --- 50
+ 50 --- 51
+ 50 ---- 53
+ 50 --- 52
+ 51 --- 54
+ 51 x--> 55
+ 53 --- 54
+ 53 --- 55
53 --- 56
- 53 --- 59
- 53 --- 60
- 55 --- 56
- 55 --- 57
- 55 --- 58
- 55 --- 59
- 55 --- 60
+ 57 --- 58
+ 58 --- 59
+ 58 ---- 61
+ 58 --- 60
+ 59 --- 62
+ 59 x--> 63
61 --- 62
- 62 --- 63
- 62 ---- 65
- 62 --- 64
- 63 --- 66
- 63 --- 69
- 63 --- 70
+ 61 --- 63
+ 61 --- 64
65 --- 66
- 65 --- 67
- 65 --- 68
- 65 --- 69
- 65 --- 70
- 71 --- 72
- 72 --- 73
- 72 ---- 75
- 72 --- 74
- 73 --- 76
- 73 --- 79
- 73 --- 80
- 75 --- 76
- 75 --- 77
+ 66 --- 67
+ 66 ---- 69
+ 66 --- 68
+ 67 --- 70
+ 67 x--> 71
+ 69 --- 70
+ 69 --- 71
+ 69 --- 72
+ 73 --- 74
+ 73 --- 81
+ 74 --- 75
+ 74 ---- 77
+ 74 --- 76
75 --- 78
- 75 --- 79
- 75 --- 80
+ 75 x--> 79
+ 77 --- 78
+ 77 --- 79
+ 77 --- 80
81 --- 82
- 82 --- 83
- 82 ---- 85
- 82 --- 84
- 83 --- 86
- 83 --- 89
- 83 --- 90
- 85 --- 86
- 85 --- 87
- 85 --- 88
+ 81 --- 83
+ 81 --- 84
+ 81 --- 85
+ 81 --- 86
+ 81 ---- 88
+ 81 --- 87
+ 82 --- 92
+ 82 --- 97
+ 82 x--> 93
+ 83 --- 91
+ 83 --- 96
+ 83 x--> 93
+ 84 --- 90
+ 84 --- 95
+ 84 x--> 93
85 --- 89
- 85 --- 90
- 91 --- 92
- 91 --- 101
- 92 --- 93
- 92 ---- 95
- 92 --- 94
- 93 --- 96
- 93 --- 99
- 93 --- 100
- 95 --- 96
- 95 --- 97
- 95 --- 98
- 95 --- 99
- 95 --- 100
- 101 --- 102
- 101 --- 103
- 101 --- 104
- 101 --- 105
- 101 --- 106
- 101 ---- 108
- 101 --- 107
- 102 --- 112
- 102 --- 121
- 102 --- 122
- 103 --- 111
- 103 --- 119
- 103 --- 120
- 104 --- 110
- 104 --- 117
- 104 --- 118
- 105 --- 109
- 105 --- 115
- 105 --- 116
- 108 --- 109
- 108 --- 110
- 108 --- 111
- 108 --- 112
- 108 --- 113
- 108 --- 114
- 108 --- 115
- 108 --- 116
- 108 --- 117
- 108 --- 118
- 108 --- 119
- 108 --- 120
- 108 --- 121
- 108 --- 122
- 1 <--x 123
- 11 <--x 124
- 21 <--x 125
- 31 <--x 126
- 41 <--x 127
- 51 <--x 128
- 61 <--x 129
- 91 <--x 130
+ 85 x--> 93
+ 88 --- 89
+ 88 --- 90
+ 88 --- 91
+ 88 --- 92
+ 88 --- 93
+ 88 --- 94
+ 88 --- 95
+ 88 --- 96
+ 88 --- 97
+ 95 <--x 90
+ 95 <--x 94
+ 96 <--x 91
+ 96 <--x 94
+ 97 <--x 92
+ 97 <--x 94
+ 1 <--x 98
+ 9 <--x 99
+ 17 <--x 100
+ 25 <--x 101
+ 33 <--x 102
+ 41 <--x 103
+ 49 <--x 104
+ 73 <--x 105
```
diff --git a/rust/kcl-lib/tests/kcl_samples/mounting-plate/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/mounting-plate/artifact_commands.snap
index 1dca4447d..dd7d323f0 100644
--- a/rust/kcl-lib/tests/kcl_samples/mounting-plate/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/mounting-plate/artifact_commands.snap
@@ -701,20 +701,27 @@ description: Artifact commands mounting-plate.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -741,20 +748,27 @@ description: Artifact commands mounting-plate.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -781,20 +795,27 @@ description: Artifact commands mounting-plate.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -821,20 +842,27 @@ description: Artifact commands mounting-plate.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -857,6 +885,221 @@ description: Artifact commands mounting-plate.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/mounting-plate/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/mounting-plate/artifact_graph_flowchart.snap.md
index 7b7b09688..8f2e9900d 100644
--- a/rust/kcl-lib/tests/kcl_samples/mounting-plate/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/mounting-plate/artifact_graph_flowchart.snap.md
@@ -42,17 +42,12 @@ flowchart LR
28["Cap Start"]
29["Cap End"]
30["SweepEdge Opposite"]
- 31["SweepEdge Adjacent"]
+ 31["SweepEdge Opposite"]
32["SweepEdge Opposite"]
- 33["SweepEdge Adjacent"]
- 34["SweepEdge Opposite"]
- 35["SweepEdge Adjacent"]
- 36["SweepEdge Opposite"]
- 37["SweepEdge Adjacent"]
- 38["EdgeCut Fillet
[1845, 2110, 0]"]
- 39["EdgeCut Fillet
[1845, 2110, 0]"]
- 40["EdgeCut Fillet
[1845, 2110, 0]"]
- 41["EdgeCut Fillet
[1845, 2110, 0]"]
+ 33["EdgeCut Fillet
[1845, 2110, 0]"]
+ 34["EdgeCut Fillet
[1845, 2110, 0]"]
+ 35["EdgeCut Fillet
[1845, 2110, 0]"]
+ 36["EdgeCut Fillet
[1845, 2110, 0]"]
1 --- 2
1 --- 8
1 --- 11
@@ -66,17 +61,16 @@ flowchart LR
2 ---- 23
2 --- 7
3 --- 24
- 3 --- 30
- 3 --- 31
+ 3 x--> 28
4 --- 25
- 4 --- 32
- 4 --- 33
+ 4 --- 30
+ 4 x--> 28
5 --- 26
- 5 --- 34
- 5 --- 35
+ 5 --- 31
+ 5 x--> 28
6 --- 27
- 6 --- 36
- 6 --- 37
+ 6 --- 32
+ 6 x--> 28
8 --- 9
8 --- 10
11 --- 12
@@ -96,13 +90,10 @@ flowchart LR
23 --- 30
23 --- 31
23 --- 32
- 23 --- 33
- 23 --- 34
- 23 --- 35
- 23 --- 36
- 23 --- 37
- 37 <--x 38
- 31 <--x 39
- 33 <--x 40
- 35 <--x 41
+ 30 <--x 25
+ 30 <--x 29
+ 31 <--x 26
+ 31 <--x 29
+ 32 <--x 27
+ 32 <--x 29
```
diff --git a/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/artifact_commands.snap
index fb99f7ec6..d7f2e56ec 100644
--- a/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/artifact_commands.snap
@@ -248,20 +248,27 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -284,6 +291,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -304,6 +338,80 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -531,6 +639,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -692,6 +827,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -856,45 +1018,7 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -12.7,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -903,20 +1027,18 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -986,6 +1108,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1053,6 +1202,127 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -12.7,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1217,45 +1487,7 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -12.7,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -1264,20 +1496,18 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -1347,6 +1577,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1414,6 +1671,127 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -12.7,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1654,6 +2032,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1908,20 +2313,27 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1944,6 +2356,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1964,6 +2403,80 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2103,6 +2616,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2289,45 +2829,7 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 5.08,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -2336,20 +2838,18 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -2419,6 +2919,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2486,6 +3013,127 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 5.08,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2625,6 +3273,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2824,6 +3499,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3110,20 +3812,27 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3146,6 +3855,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3166,6 +3902,80 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3305,6 +4115,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3466,6 +4303,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3652,45 +4516,7 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 3.8099999999999996,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -3699,20 +4525,18 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -3786,45 +4610,7 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 3.8099999999999996,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -3833,20 +4619,18 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -3920,45 +4704,7 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 3.8099999999999996,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -3967,20 +4713,18 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -4050,6 +4794,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4117,6 +4888,315 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 3.8099999999999996,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 3.8099999999999996,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 3.8099999999999996,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4281,45 +5361,7 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 3.8099999999999996,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -4328,20 +5370,18 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -4411,6 +5451,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4478,6 +5545,127 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 3.8099999999999996,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4617,6 +5805,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4878,20 +6093,27 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -4914,6 +6136,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4934,6 +6183,80 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5073,6 +6396,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5259,45 +6609,7 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 3.8099999999999996,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -5306,20 +6618,18 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -5393,45 +6703,7 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 3.8099999999999996,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -5440,20 +6712,18 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -5527,45 +6797,7 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 3.8099999999999996,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -5574,20 +6806,18 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -5657,6 +6887,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5724,6 +6981,315 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 3.8099999999999996,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 3.8099999999999996,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 3.8099999999999996,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -5863,6 +7429,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6002,6 +7595,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6141,6 +7761,33 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6386,20 +8033,27 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6426,20 +8080,27 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6466,20 +8127,27 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6502,6 +8170,174 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -6747,20 +8583,27 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6787,20 +8630,27 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6827,20 +8677,27 @@ description: Artifact commands multi-axis-robot.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -6863,6 +8720,174 @@ description: Artifact commands multi-axis-robot.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/artifact_graph_flowchart.snap.md
index 4ab1b351b..9b6498bde 100644
--- a/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/multi-axis-robot/artifact_graph_flowchart.snap.md
@@ -9,151 +9,151 @@ flowchart LR
7["Segment
[703, 710, 6]"]
8[Solid2d]
end
- subgraph path28 [Path]
- 28["Path
[1151, 1208, 6]"]
- 29["Segment
[1151, 1208, 6]"]
- 30[Solid2d]
+ subgraph path24 [Path]
+ 24["Path
[1151, 1208, 6]"]
+ 25["Segment
[1151, 1208, 6]"]
+ 26[Solid2d]
end
- subgraph path36 [Path]
- 36["Path
[1411, 1448, 6]"]
- 37["Segment
[1411, 1448, 6]"]
- 38[Solid2d]
+ subgraph path31 [Path]
+ 31["Path
[1411, 1448, 6]"]
+ 32["Segment
[1411, 1448, 6]"]
+ 33[Solid2d]
end
- subgraph path44 [Path]
- 44["Path
[1585, 1725, 6]"]
- 45["Segment
[1585, 1725, 6]"]
- 46[Solid2d]
+ subgraph path37 [Path]
+ 37["Path
[1585, 1725, 6]"]
+ 38["Segment
[1585, 1725, 6]"]
+ 39[Solid2d]
+ end
+ subgraph path45 [Path]
+ 45["Path
[1976, 2116, 6]"]
+ 46["Segment
[1976, 2116, 6]"]
+ 47[Solid2d]
end
subgraph path54 [Path]
- 54["Path
[1976, 2116, 6]"]
- 55["Segment
[1976, 2116, 6]"]
+ 54["Path
[203, 263, 7]"]
+ 55["Segment
[203, 263, 7]"]
56[Solid2d]
end
- subgraph path65 [Path]
- 65["Path
[203, 263, 7]"]
- 66["Segment
[203, 263, 7]"]
- 67[Solid2d]
+ subgraph path63 [Path]
+ 63["Path
[493, 529, 7]"]
+ 64["Segment
[535, 572, 7]"]
+ 65["Segment
[578, 633, 7]"]
+ 66["Segment
[639, 688, 7]"]
+ 67["Segment
[694, 750, 7]"]
+ 68["Segment
[756, 763, 7]"]
+ 69[Solid2d]
end
- subgraph path75 [Path]
- 75["Path
[493, 529, 7]"]
- 76["Segment
[535, 572, 7]"]
- 77["Segment
[578, 633, 7]"]
- 78["Segment
[639, 688, 7]"]
- 79["Segment
[694, 750, 7]"]
- 80["Segment
[756, 763, 7]"]
- 81[Solid2d]
+ subgraph path80 [Path]
+ 80["Path
[865, 1040, 7]"]
+ 81["Segment
[865, 1040, 7]"]
+ 82[Solid2d]
end
- subgraph path97 [Path]
- 97["Path
[865, 1040, 7]"]
- 98["Segment
[865, 1040, 7]"]
- 99[Solid2d]
+ subgraph path87 [Path]
+ 87["Path
[1249, 1396, 7]"]
+ 88["Segment
[1249, 1396, 7]"]
+ 89[Solid2d]
end
- subgraph path105 [Path]
- 105["Path
[1249, 1396, 7]"]
- 106["Segment
[1249, 1396, 7]"]
- 107[Solid2d]
+ subgraph path96 [Path]
+ 96["Path
[1718, 1892, 7]"]
+ 97["Segment
[1718, 1892, 7]"]
+ 98[Solid2d]
end
- subgraph path116 [Path]
- 116["Path
[1718, 1892, 7]"]
- 117["Segment
[1718, 1892, 7]"]
- 118[Solid2d]
+ subgraph path104 [Path]
+ 104["Path
[2117, 2157, 7]"]
+ 105["Segment
[2117, 2157, 7]"]
+ 106[Solid2d]
end
- subgraph path125 [Path]
- 125["Path
[2117, 2157, 7]"]
- 126["Segment
[2117, 2157, 7]"]
- 127[Solid2d]
+ subgraph path114 [Path]
+ 114["Path
[251, 394, 8]"]
+ 115["Segment
[400, 483, 8]"]
+ 116["Segment
[489, 541, 8]"]
+ 117["Segment
[547, 630, 8]"]
+ 118["Segment
[636, 692, 8]"]
+ 119["Segment
[698, 705, 8]"]
+ 120[Solid2d]
end
- subgraph path137 [Path]
- 137["Path
[251, 394, 8]"]
- 138["Segment
[400, 483, 8]"]
- 139["Segment
[489, 541, 8]"]
- 140["Segment
[547, 630, 8]"]
- 141["Segment
[636, 692, 8]"]
- 142["Segment
[698, 705, 8]"]
- 143[Solid2d]
+ subgraph path131 [Path]
+ 131["Path
[826, 890, 8]"]
+ 132["Segment
[826, 890, 8]"]
+ 133[Solid2d]
end
- subgraph path159 [Path]
- 159["Path
[826, 890, 8]"]
- 160["Segment
[826, 890, 8]"]
- 161[Solid2d]
+ subgraph path138 [Path]
+ 138["Path
[1064, 1272, 8]"]
+ 139["Segment
[1064, 1272, 8]"]
+ 140[Solid2d]
+ end
+ subgraph path145 [Path]
+ 145["Path
[1480, 1524, 8]"]
+ 146["Segment
[1480, 1524, 8]"]
+ 147[Solid2d]
+ end
+ subgraph path158 [Path]
+ 158["Path
[1767, 1959, 8]"]
+ 159["Segment
[1767, 1959, 8]"]
+ 160[Solid2d]
end
subgraph path167 [Path]
- 167["Path
[1064, 1272, 8]"]
- 168["Segment
[1064, 1272, 8]"]
+ 167["Path
[2317, 2492, 8]"]
+ 168["Segment
[2317, 2492, 8]"]
169[Solid2d]
end
- subgraph path175 [Path]
- 175["Path
[1480, 1524, 8]"]
- 176["Segment
[1480, 1524, 8]"]
- 177[Solid2d]
+ subgraph path174 [Path]
+ 174["Path
[271, 504, 9]"]
+ 175["Segment
[510, 596, 9]"]
+ 176["Segment
[602, 656, 9]"]
+ 177["Segment
[662, 748, 9]"]
+ 178["Segment
[754, 824, 9]"]
+ 179["Segment
[830, 837, 9]"]
+ 180[Solid2d]
end
- subgraph path190 [Path]
- 190["Path
[1767, 1959, 8]"]
- 191["Segment
[1767, 1959, 8]"]
- 192[Solid2d]
+ subgraph path191 [Path]
+ 191["Path
[956, 1165, 9]"]
+ 192["Segment
[956, 1165, 9]"]
+ 193[Solid2d]
end
- subgraph path201 [Path]
- 201["Path
[2317, 2492, 8]"]
- 202["Segment
[2317, 2492, 8]"]
- 203[Solid2d]
+ subgraph path198 [Path]
+ 198["Path
[1375, 1564, 9]"]
+ 199["Segment
[1375, 1564, 9]"]
+ 200[Solid2d]
end
- subgraph path210 [Path]
- 210["Path
[271, 504, 9]"]
- 211["Segment
[510, 596, 9]"]
- 212["Segment
[602, 656, 9]"]
- 213["Segment
[662, 748, 9]"]
- 214["Segment
[754, 824, 9]"]
- 215["Segment
[830, 837, 9]"]
- 216[Solid2d]
+ subgraph path211 [Path]
+ 211["Path
[1990, 2276, 9]"]
+ 212["Segment
[1990, 2276, 9]"]
+ 213[Solid2d]
+ end
+ subgraph path218 [Path]
+ 218["Path
[2380, 2664, 9]"]
+ 219["Segment
[2380, 2664, 9]"]
+ 220[Solid2d]
+ end
+ subgraph path225 [Path]
+ 225["Path
[2823, 2861, 9]"]
+ 226["Segment
[2823, 2861, 9]"]
+ 227[Solid2d]
end
subgraph path232 [Path]
- 232["Path
[956, 1165, 9]"]
- 233["Segment
[956, 1165, 9]"]
- 234[Solid2d]
+ 232["Path
[2996, 3221, 9]"]
+ 233["Segment
[3227, 3295, 9]"]
+ 234["Segment
[3301, 3411, 9]"]
+ 235["Segment
[3417, 3485, 9]"]
+ 236["Segment
[3491, 3567, 9]"]
+ 237["Segment
[3573, 3649, 9]"]
+ 238["Segment
[3655, 3729, 9]"]
+ 239["Segment
[3735, 3791, 9]"]
+ 240["Segment
[3797, 3804, 9]"]
+ 241[Solid2d]
end
- subgraph path240 [Path]
- 240["Path
[1375, 1564, 9]"]
- 241["Segment
[1375, 1564, 9]"]
- 242[Solid2d]
- end
- subgraph path255 [Path]
- 255["Path
[1990, 2276, 9]"]
- 256["Segment
[1990, 2276, 9]"]
- 257[Solid2d]
- end
- subgraph path264 [Path]
- 264["Path
[2380, 2664, 9]"]
- 265["Segment
[2380, 2664, 9]"]
- 266[Solid2d]
- end
- subgraph path273 [Path]
- 273["Path
[2823, 2861, 9]"]
- 274["Segment
[2823, 2861, 9]"]
- 275[Solid2d]
- end
- subgraph path282 [Path]
- 282["Path
[2996, 3221, 9]"]
- 283["Segment
[3227, 3295, 9]"]
- 284["Segment
[3301, 3411, 9]"]
- 285["Segment
[3417, 3485, 9]"]
- 286["Segment
[3491, 3567, 9]"]
- 287["Segment
[3573, 3649, 9]"]
- 288["Segment
[3655, 3729, 9]"]
- 289["Segment
[3735, 3791, 9]"]
- 290["Segment
[3797, 3804, 9]"]
- 291[Solid2d]
- end
- subgraph path316 [Path]
- 316["Path
[3938, 4163, 9]"]
- 317["Segment
[4169, 4239, 9]"]
- 318["Segment
[4245, 4360, 9]"]
- 319["Segment
[4366, 4436, 9]"]
- 320["Segment
[4442, 4520, 9]"]
- 321["Segment
[4526, 4604, 9]"]
- 322["Segment
[4610, 4686, 9]"]
- 323["Segment
[4692, 4748, 9]"]
- 324["Segment
[4754, 4761, 9]"]
- 325[Solid2d]
+ subgraph path258 [Path]
+ 258["Path
[3938, 4163, 9]"]
+ 259["Segment
[4169, 4239, 9]"]
+ 260["Segment
[4245, 4360, 9]"]
+ 261["Segment
[4366, 4436, 9]"]
+ 262["Segment
[4442, 4520, 9]"]
+ 263["Segment
[4526, 4604, 9]"]
+ 264["Segment
[4610, 4686, 9]"]
+ 265["Segment
[4692, 4748, 9]"]
+ 266["Segment
[4754, 4761, 9]"]
+ 267[Solid2d]
end
1["Plane
[201, 218, 6]"]
9["Sweep Extrusion
[724, 771, 6]"]
@@ -164,260 +164,194 @@ flowchart LR
14["Cap Start"]
15["Cap End"]
16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
+ 17["SweepEdge Opposite"]
18["SweepEdge Opposite"]
19["SweepEdge Adjacent"]
- 20["SweepEdge Opposite"]
- 21["SweepEdge Adjacent"]
- 22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
- 24["EdgeCut Chamfer
[777, 1054, 6]"]
- 25["EdgeCut Chamfer
[777, 1054, 6]"]
- 26["EdgeCut Chamfer
[777, 1054, 6]"]
- 27["EdgeCut Chamfer
[777, 1054, 6]"]
- 31["Sweep Extrusion
[1222, 1288, 6]"]
- 32[Wall]
- 33["Cap End"]
- 34["SweepEdge Opposite"]
- 35["SweepEdge Adjacent"]
- 39["Sweep Extrusion
[1462, 1492, 6]"]
- 40[Wall]
- 41["Cap End"]
- 42["SweepEdge Opposite"]
- 43["SweepEdge Adjacent"]
- 47["Sweep Extrusion
[1873, 1920, 6]"]
- 48[Wall]
- 49["SweepEdge Opposite"]
- 50["SweepEdge Adjacent"]
- 51["Sweep Extrusion
[1873, 1920, 6]"]
- 52["Sweep Extrusion
[1873, 1920, 6]"]
- 53["Sweep Extrusion
[1873, 1920, 6]"]
- 57["Sweep Extrusion
[2252, 2299, 6]"]
+ 20["EdgeCut Chamfer
[777, 1054, 6]"]
+ 21["EdgeCut Chamfer
[777, 1054, 6]"]
+ 22["EdgeCut Chamfer
[777, 1054, 6]"]
+ 23["EdgeCut Chamfer
[777, 1054, 6]"]
+ 27["Sweep Extrusion
[1222, 1288, 6]"]
+ 28[Wall]
+ 29["Cap End"]
+ 30["SweepEdge Opposite"]
+ 34["Sweep Extrusion
[1462, 1492, 6]"]
+ 35[Wall]
+ 36["Cap End"]
+ 40["Sweep Extrusion
[1873, 1920, 6]"]
+ 41[Wall]
+ 42["Sweep Extrusion
[1873, 1920, 6]"]
+ 43["Sweep Extrusion
[1873, 1920, 6]"]
+ 44["Sweep Extrusion
[1873, 1920, 6]"]
+ 48["Sweep Extrusion
[2252, 2299, 6]"]
+ 49[Wall]
+ 50["Sweep Extrusion
[2252, 2299, 6]"]
+ 51["Sweep Extrusion
[2252, 2299, 6]"]
+ 52["Sweep Extrusion
[2252, 2299, 6]"]
+ 53["Plane
[174, 197, 7]"]
+ 57["Sweep Extrusion
[277, 315, 7]"]
58[Wall]
- 59["SweepEdge Opposite"]
- 60["SweepEdge Adjacent"]
- 61["Sweep Extrusion
[2252, 2299, 6]"]
- 62["Sweep Extrusion
[2252, 2299, 6]"]
- 63["Sweep Extrusion
[2252, 2299, 6]"]
- 64["Plane
[174, 197, 7]"]
- 68["Sweep Extrusion
[277, 315, 7]"]
- 69[Wall]
- 70["Cap Start"]
- 71["Cap End"]
- 72["SweepEdge Opposite"]
- 73["SweepEdge Adjacent"]
- 74["Plane
[464, 487, 7]"]
- 82["Sweep Extrusion
[778, 808, 7]"]
- 83[Wall]
+ 59["Cap Start"]
+ 60["Cap End"]
+ 61["SweepEdge Opposite"]
+ 62["Plane
[464, 487, 7]"]
+ 70["Sweep Extrusion
[778, 808, 7]"]
+ 71[Wall]
+ 72[Wall]
+ 73[Wall]
+ 74[Wall]
+ 75["Cap Start"]
+ 76["Cap End"]
+ 77["SweepEdge Opposite"]
+ 78["SweepEdge Opposite"]
+ 79["SweepEdge Opposite"]
+ 83["Sweep Extrusion
[1054, 1086, 7]"]
84[Wall]
- 85[Wall]
- 86[Wall]
- 87["Cap Start"]
- 88["Cap End"]
- 89["SweepEdge Opposite"]
- 90["SweepEdge Adjacent"]
- 91["SweepEdge Opposite"]
- 92["SweepEdge Adjacent"]
- 93["SweepEdge Opposite"]
- 94["SweepEdge Adjacent"]
- 95["SweepEdge Opposite"]
- 96["SweepEdge Adjacent"]
- 100["Sweep Extrusion
[1054, 1086, 7]"]
- 101[Wall]
- 102["Cap End"]
- 103["SweepEdge Opposite"]
- 104["SweepEdge Adjacent"]
- 108["Sweep Extrusion
[1629, 1661, 7]"]
- 109[Wall]
+ 85["Cap End"]
+ 86["SweepEdge Opposite"]
+ 90["Sweep Extrusion
[1629, 1661, 7]"]
+ 91[Wall]
+ 92["Cap End"]
+ 93["Sweep Extrusion
[1629, 1661, 7]"]
+ 94["Sweep Extrusion
[1629, 1661, 7]"]
+ 95["Sweep Extrusion
[1629, 1661, 7]"]
+ 99["Sweep Extrusion
[1906, 1939, 7]"]
+ 100[Wall]
+ 101["Cap End"]
+ 102["SweepEdge Opposite"]
+ 103["Plane
[2088, 2111, 7]"]
+ 107["Sweep Extrusion
[2159, 2190, 7]"]
+ 108[Wall]
+ 109["Cap Start"]
110["Cap End"]
- 111["SweepEdge Opposite"]
- 112["SweepEdge Adjacent"]
- 113["Sweep Extrusion
[1629, 1661, 7]"]
- 114["Sweep Extrusion
[1629, 1661, 7]"]
- 115["Sweep Extrusion
[1629, 1661, 7]"]
- 119["Sweep Extrusion
[1906, 1939, 7]"]
- 120[Wall]
- 121["Cap End"]
- 122["SweepEdge Opposite"]
- 123["SweepEdge Adjacent"]
- 124["Plane
[2088, 2111, 7]"]
- 128["Sweep Extrusion
[2159, 2190, 7]"]
- 129[Wall]
- 130["Cap Start"]
- 131["Cap End"]
- 132["SweepEdge Opposite"]
- 133["SweepEdge Adjacent"]
- 134["EdgeCut Fillet
[321, 383, 7]"]
- 135["EdgeCut Fillet
[1945, 2007, 7]"]
- 136["Plane
[222, 245, 8]"]
- 144["Sweep Extrusion
[719, 767, 8]"]
- 145[Wall]
- 146[Wall]
- 147[Wall]
- 148[Wall]
- 149["Cap Start"]
+ 111["EdgeCut Fillet
[321, 383, 7]"]
+ 112["EdgeCut Fillet
[1945, 2007, 7]"]
+ 113["Plane
[222, 245, 8]"]
+ 121["Sweep Extrusion
[719, 767, 8]"]
+ 122[Wall]
+ 123[Wall]
+ 124[Wall]
+ 125[Wall]
+ 126["Cap Start"]
+ 127["Cap End"]
+ 128["SweepEdge Opposite"]
+ 129["SweepEdge Opposite"]
+ 130["SweepEdge Opposite"]
+ 134["Sweep Extrusion
[905, 938, 8]"]
+ 135[Wall]
+ 136["Cap End"]
+ 137["SweepEdge Opposite"]
+ 141["Sweep Extrusion
[1287, 1317, 8]"]
+ 142[Wall]
+ 143["Cap End"]
+ 144["SweepEdge Opposite"]
+ 148["Sweep Extrusion
[1677, 1710, 8]"]
+ 149[Wall]
150["Cap End"]
- 151["SweepEdge Opposite"]
- 152["SweepEdge Adjacent"]
- 153["SweepEdge Opposite"]
- 154["SweepEdge Adjacent"]
- 155["SweepEdge Opposite"]
- 156["SweepEdge Adjacent"]
- 157["SweepEdge Opposite"]
- 158["SweepEdge Adjacent"]
- 162["Sweep Extrusion
[905, 938, 8]"]
- 163[Wall]
- 164["Cap End"]
- 165["SweepEdge Opposite"]
- 166["SweepEdge Adjacent"]
- 170["Sweep Extrusion
[1287, 1317, 8]"]
+ 151["Sweep Extrusion
[1677, 1710, 8]"]
+ 152["Sweep Extrusion
[1677, 1710, 8]"]
+ 153["Sweep Extrusion
[1677, 1710, 8]"]
+ 154["Sweep Extrusion
[1677, 1710, 8]"]
+ 155["Sweep Extrusion
[1677, 1710, 8]"]
+ 156["Sweep Extrusion
[1677, 1710, 8]"]
+ 157["Sweep Extrusion
[1677, 1710, 8]"]
+ 161["Sweep Extrusion
[2227, 2260, 8]"]
+ 162[Wall]
+ 163["Cap End"]
+ 164["Sweep Extrusion
[2227, 2260, 8]"]
+ 165["Sweep Extrusion
[2227, 2260, 8]"]
+ 166["Sweep Extrusion
[2227, 2260, 8]"]
+ 170["Sweep Extrusion
[2494, 2524, 8]"]
171[Wall]
172["Cap End"]
- 173["SweepEdge Opposite"]
- 174["SweepEdge Adjacent"]
- 178["Sweep Extrusion
[1677, 1710, 8]"]
- 179[Wall]
- 180["Cap End"]
- 181["SweepEdge Opposite"]
- 182["SweepEdge Adjacent"]
- 183["Sweep Extrusion
[1677, 1710, 8]"]
- 184["Sweep Extrusion
[1677, 1710, 8]"]
- 185["Sweep Extrusion
[1677, 1710, 8]"]
- 186["Sweep Extrusion
[1677, 1710, 8]"]
- 187["Sweep Extrusion
[1677, 1710, 8]"]
- 188["Sweep Extrusion
[1677, 1710, 8]"]
- 189["Sweep Extrusion
[1677, 1710, 8]"]
- 193["Sweep Extrusion
[2227, 2260, 8]"]
- 194[Wall]
- 195["Cap End"]
- 196["SweepEdge Opposite"]
- 197["SweepEdge Adjacent"]
- 198["Sweep Extrusion
[2227, 2260, 8]"]
- 199["Sweep Extrusion
[2227, 2260, 8]"]
- 200["Sweep Extrusion
[2227, 2260, 8]"]
- 204["Sweep Extrusion
[2494, 2524, 8]"]
- 205[Wall]
- 206["Cap End"]
- 207["SweepEdge Opposite"]
- 208["SweepEdge Adjacent"]
- 209["Plane
[242, 265, 9]"]
- 217["Sweep Extrusion
[851, 899, 9]"]
- 218[Wall]
- 219[Wall]
- 220[Wall]
- 221[Wall]
- 222["Cap Start"]
- 223["Cap End"]
- 224["SweepEdge Opposite"]
- 225["SweepEdge Adjacent"]
- 226["SweepEdge Opposite"]
- 227["SweepEdge Adjacent"]
- 228["SweepEdge Opposite"]
- 229["SweepEdge Adjacent"]
- 230["SweepEdge Opposite"]
- 231["SweepEdge Adjacent"]
- 235["Sweep Extrusion
[1180, 1213, 9]"]
- 236[Wall]
- 237["Cap End"]
- 238["SweepEdge Opposite"]
- 239["SweepEdge Adjacent"]
- 243["Sweep Extrusion
[1829, 1862, 9]"]
+ 173["Plane
[242, 265, 9]"]
+ 181["Sweep Extrusion
[851, 899, 9]"]
+ 182[Wall]
+ 183[Wall]
+ 184[Wall]
+ 185[Wall]
+ 186["Cap Start"]
+ 187["Cap End"]
+ 188["SweepEdge Opposite"]
+ 189["SweepEdge Opposite"]
+ 190["SweepEdge Opposite"]
+ 194["Sweep Extrusion
[1180, 1213, 9]"]
+ 195[Wall]
+ 196["Cap End"]
+ 197["SweepEdge Opposite"]
+ 201["Sweep Extrusion
[1829, 1862, 9]"]
+ 202[Wall]
+ 203["Cap End"]
+ 204["Sweep Extrusion
[1829, 1862, 9]"]
+ 205["Sweep Extrusion
[1829, 1862, 9]"]
+ 206["Sweep Extrusion
[1829, 1862, 9]"]
+ 207["Sweep Extrusion
[1829, 1862, 9]"]
+ 208["Sweep Extrusion
[1829, 1862, 9]"]
+ 209["Sweep Extrusion
[1829, 1862, 9]"]
+ 210["Sweep Extrusion
[1829, 1862, 9]"]
+ 214["Sweep Extrusion
[2290, 2323, 9]"]
+ 215[Wall]
+ 216["Cap Start"]
+ 217["Cap End"]
+ 221["Sweep Extrusion
[2679, 2712, 9]"]
+ 222[Wall]
+ 223["Cap Start"]
+ 224["Cap End"]
+ 228["Sweep Extrusion
[2876, 2910, 9]"]
+ 229[Wall]
+ 230["Cap Start"]
+ 231["Cap End"]
+ 242["Sweep Extrusion
[3819, 3852, 9]"]
+ 243[Wall]
244[Wall]
- 245["Cap End"]
- 246["SweepEdge Opposite"]
- 247["SweepEdge Adjacent"]
- 248["Sweep Extrusion
[1829, 1862, 9]"]
- 249["Sweep Extrusion
[1829, 1862, 9]"]
- 250["Sweep Extrusion
[1829, 1862, 9]"]
- 251["Sweep Extrusion
[1829, 1862, 9]"]
- 252["Sweep Extrusion
[1829, 1862, 9]"]
- 253["Sweep Extrusion
[1829, 1862, 9]"]
- 254["Sweep Extrusion
[1829, 1862, 9]"]
- 258["Sweep Extrusion
[2290, 2323, 9]"]
- 259[Wall]
- 260["Cap Start"]
- 261["Cap End"]
- 262["SweepEdge Opposite"]
- 263["SweepEdge Adjacent"]
- 267["Sweep Extrusion
[2679, 2712, 9]"]
- 268[Wall]
- 269["Cap Start"]
- 270["Cap End"]
- 271["SweepEdge Opposite"]
- 272["SweepEdge Adjacent"]
- 276["Sweep Extrusion
[2876, 2910, 9]"]
- 277[Wall]
- 278["Cap Start"]
- 279["Cap End"]
+ 245[Wall]
+ 246[Wall]
+ 247[Wall]
+ 248[Wall]
+ 249[Wall]
+ 250["Cap Start"]
+ 251["Cap End"]
+ 252["SweepEdge Opposite"]
+ 253["SweepEdge Opposite"]
+ 254["SweepEdge Opposite"]
+ 255["SweepEdge Opposite"]
+ 256["SweepEdge Opposite"]
+ 257["SweepEdge Opposite"]
+ 268["Sweep Extrusion
[4763, 4796, 9]"]
+ 269[Wall]
+ 270[Wall]
+ 271[Wall]
+ 272[Wall]
+ 273[Wall]
+ 274[Wall]
+ 275[Wall]
+ 276["Cap Start"]
+ 277["Cap End"]
+ 278["SweepEdge Opposite"]
+ 279["SweepEdge Opposite"]
280["SweepEdge Opposite"]
- 281["SweepEdge Adjacent"]
- 292["Sweep Extrusion
[3819, 3852, 9]"]
- 293[Wall]
- 294[Wall]
- 295[Wall]
- 296[Wall]
- 297[Wall]
- 298[Wall]
- 299[Wall]
- 300["Cap Start"]
- 301["Cap End"]
- 302["SweepEdge Opposite"]
- 303["SweepEdge Adjacent"]
- 304["SweepEdge Opposite"]
- 305["SweepEdge Adjacent"]
- 306["SweepEdge Opposite"]
- 307["SweepEdge Adjacent"]
- 308["SweepEdge Opposite"]
- 309["SweepEdge Adjacent"]
- 310["SweepEdge Opposite"]
- 311["SweepEdge Adjacent"]
- 312["SweepEdge Opposite"]
- 313["SweepEdge Adjacent"]
- 314["SweepEdge Opposite"]
- 315["SweepEdge Adjacent"]
- 326["Sweep Extrusion
[4763, 4796, 9]"]
- 327[Wall]
- 328[Wall]
- 329[Wall]
- 330[Wall]
- 331[Wall]
- 332[Wall]
- 333[Wall]
- 334["Cap Start"]
- 335["Cap End"]
- 336["SweepEdge Opposite"]
- 337["SweepEdge Adjacent"]
- 338["SweepEdge Opposite"]
- 339["SweepEdge Adjacent"]
- 340["SweepEdge Opposite"]
- 341["SweepEdge Adjacent"]
- 342["SweepEdge Opposite"]
- 343["SweepEdge Adjacent"]
- 344["SweepEdge Opposite"]
- 345["SweepEdge Adjacent"]
- 346["SweepEdge Opposite"]
- 347["SweepEdge Adjacent"]
- 348["SweepEdge Opposite"]
- 349["SweepEdge Adjacent"]
- 350["StartSketchOnFace
[1108, 1145, 6]"]
- 351["StartSketchOnFace
[1368, 1405, 6]"]
- 352["StartSketchOnFace
[1542, 1579, 6]"]
- 353["StartSketchOnFace
[1933, 1970, 6]"]
- 354["StartSketchOnFace
[822, 859, 7]"]
- 355["StartSketchOnFace
[1206, 1243, 7]"]
- 356["StartSketchOnFace
[1675, 1712, 7]"]
- 357["StartSketchOnFace
[781, 820, 8]"]
- 358["StartSketchOnFace
[1019, 1058, 8]"]
- 359["StartSketchOnFace
[1437, 1474, 8]"]
- 360["StartSketchOnFace
[1724, 1761, 8]"]
- 361["StartSketchOnFace
[2274, 2311, 8]"]
- 362["StartSketchOnFace
[913, 950, 9]"]
- 363["StartSketchOnFace
[1332, 1369, 9]"]
- 364["StartSketchOnFace
[1945, 1984, 9]"]
- 365["StartSketchOnFace
[2337, 2374, 9]"]
- 366["StartSketchOnFace
[2778, 2817, 9]"]
- 367["StartSketchOnFace
[2951, 2990, 9]"]
- 368["StartSketchOnFace
[3893, 3932, 9]"]
+ 281["SweepEdge Opposite"]
+ 282["SweepEdge Opposite"]
+ 283["SweepEdge Opposite"]
+ 284["StartSketchOnFace
[1108, 1145, 6]"]
+ 285["StartSketchOnFace
[1368, 1405, 6]"]
+ 286["StartSketchOnFace
[1542, 1579, 6]"]
+ 287["StartSketchOnFace
[1933, 1970, 6]"]
+ 288["StartSketchOnFace
[822, 859, 7]"]
+ 289["StartSketchOnFace
[1206, 1243, 7]"]
+ 290["StartSketchOnFace
[1675, 1712, 7]"]
+ 291["StartSketchOnFace
[781, 820, 8]"]
+ 292["StartSketchOnFace
[1019, 1058, 8]"]
+ 293["StartSketchOnFace
[1437, 1474, 8]"]
+ 294["StartSketchOnFace
[1724, 1761, 8]"]
+ 295["StartSketchOnFace
[2274, 2311, 8]"]
+ 296["StartSketchOnFace
[913, 950, 9]"]
+ 297["StartSketchOnFace
[1332, 1369, 9]"]
+ 298["StartSketchOnFace
[1945, 1984, 9]"]
+ 299["StartSketchOnFace
[2337, 2374, 9]"]
+ 300["StartSketchOnFace
[2778, 2817, 9]"]
+ 301["StartSketchOnFace
[2951, 2990, 9]"]
+ 302["StartSketchOnFace
[3893, 3932, 9]"]
1 --- 2
2 --- 3
2 --- 4
@@ -427,17 +361,17 @@ flowchart LR
2 ---- 9
2 --- 8
3 --- 10
- 3 --- 16
- 3 --- 17
+ 3 --- 19
+ 3 x--> 14
4 --- 11
- 4 --- 18
- 4 --- 19
+ 4 --- 16
+ 4 x--> 14
5 --- 12
- 5 --- 20
- 5 --- 21
+ 5 --- 17
+ 5 x--> 14
6 --- 13
- 6 --- 22
- 6 --- 23
+ 6 --- 18
+ 6 x--> 14
9 --- 10
9 --- 11
9 --- 12
@@ -448,457 +382,419 @@ flowchart LR
9 --- 17
9 --- 18
9 --- 19
- 9 --- 20
- 9 --- 21
- 9 --- 22
- 9 --- 23
- 15 --- 28
- 15 --- 44
- 15 --- 54
- 17 <--x 24
- 19 <--x 25
- 21 <--x 26
- 23 <--x 27
- 28 --- 29
- 28 ---- 31
- 28 --- 30
- 29 --- 32
- 29 --- 34
- 29 --- 35
+ 15 --- 24
+ 15 --- 37
+ 15 --- 45
+ 16 <--x 11
+ 16 <--x 15
+ 17 <--x 12
+ 17 <--x 15
+ 18 <--x 13
+ 18 <--x 15
+ 19 <--x 20
+ 24 --- 25
+ 24 ---- 27
+ 24 --- 26
+ 25 --- 28
+ 25 --- 30
+ 25 <--x 15
+ 27 --- 28
+ 27 --- 29
+ 27 --- 30
+ 29 --- 31
31 --- 32
+ 31 ---- 34
31 --- 33
- 31 --- 34
- 31 --- 35
- 33 --- 36
- 36 --- 37
- 36 ---- 39
- 36 --- 38
- 37 --- 40
- 37 --- 42
- 37 --- 43
- 39 --- 40
- 39 --- 41
- 39 --- 42
- 39 --- 43
- 44 --- 45
- 44 ---- 47
- 44 --- 46
- 45 --- 48
- 45 --- 49
- 45 --- 50
- 47 --- 48
- 47 --- 49
- 47 --- 50
+ 32 --- 35
+ 32 <--x 29
+ 34 --- 35
+ 34 --- 36
+ 37 --- 38
+ 37 ---- 40
+ 37 --- 39
+ 38 --- 41
+ 38 <--x 15
+ 40 --- 41
+ 45 --- 46
+ 45 ---- 48
+ 45 --- 47
+ 46 --- 49
+ 46 <--x 15
+ 48 --- 49
+ 53 --- 54
54 --- 55
54 ---- 57
54 --- 56
55 --- 58
- 55 --- 59
- 55 --- 60
+ 55 --- 61
+ 55 x--> 59
57 --- 58
57 --- 59
57 --- 60
- 64 --- 65
- 65 --- 66
- 65 ---- 68
- 65 --- 67
- 66 --- 69
- 66 --- 72
+ 57 --- 61
+ 62 --- 63
+ 63 --- 64
+ 63 --- 65
+ 63 --- 66
+ 63 --- 67
+ 63 --- 68
+ 63 ---- 70
+ 63 --- 69
+ 64 --- 71
+ 64 x--> 75
+ 65 --- 72
+ 65 --- 77
+ 65 x--> 75
66 --- 73
- 68 --- 69
- 68 --- 70
- 68 --- 71
- 68 --- 72
- 68 --- 73
- 74 --- 75
- 75 --- 76
- 75 --- 77
- 75 --- 78
- 75 --- 79
- 75 --- 80
- 75 ---- 82
- 75 --- 81
- 76 --- 83
- 76 --- 89
- 76 --- 90
- 77 --- 84
- 77 --- 91
- 77 --- 92
- 78 --- 85
- 78 --- 93
- 78 --- 94
- 79 --- 86
- 79 --- 95
- 79 --- 96
- 82 --- 83
- 82 --- 84
- 82 --- 85
- 82 --- 86
- 82 --- 87
- 82 --- 88
- 82 --- 89
- 82 --- 90
- 82 --- 91
- 82 --- 92
- 82 --- 93
- 82 --- 94
- 82 --- 95
- 82 --- 96
- 88 --- 97
- 97 --- 98
- 97 ---- 100
- 97 --- 99
- 98 --- 101
- 98 --- 103
- 98 --- 104
- 100 --- 101
- 100 --- 102
- 100 --- 103
- 100 --- 104
- 102 --- 105
- 102 --- 116
- 105 --- 106
- 105 ---- 108
- 105 --- 107
- 106 --- 109
- 106 --- 111
- 106 --- 112
- 108 --- 109
- 108 --- 110
- 108 --- 111
- 108 --- 112
- 116 --- 117
- 116 ---- 119
- 116 --- 118
- 117 --- 120
- 117 --- 122
- 117 --- 123
- 119 --- 120
- 119 --- 121
- 119 --- 122
- 119 --- 123
- 124 --- 125
- 125 --- 126
- 125 ---- 128
- 125 --- 127
- 126 --- 129
- 126 --- 132
- 126 --- 133
- 128 --- 129
- 128 --- 130
- 128 --- 131
- 128 --- 132
- 128 --- 133
- 72 <--x 134
- 122 <--x 135
- 136 --- 137
- 137 --- 138
- 137 --- 139
- 137 --- 140
- 137 --- 141
- 137 --- 142
- 137 ---- 144
- 137 --- 143
- 138 --- 145
- 138 --- 151
- 138 --- 152
- 139 --- 146
- 139 --- 153
- 139 --- 154
- 140 --- 147
- 140 --- 155
- 140 --- 156
- 141 --- 148
- 141 --- 157
- 141 --- 158
- 144 --- 145
- 144 --- 146
- 144 --- 147
- 144 --- 148
- 144 --- 149
- 144 --- 150
- 144 --- 151
- 144 --- 152
- 144 --- 153
- 144 --- 154
- 144 --- 155
- 144 --- 156
- 144 --- 157
- 144 --- 158
- 149 --- 159
- 149 --- 167
- 150 --- 201
- 159 --- 160
- 159 ---- 162
- 159 --- 161
- 160 --- 163
- 160 --- 165
- 160 --- 166
- 162 --- 163
- 162 --- 164
- 162 --- 165
- 162 --- 166
- 164 --- 175
+ 66 --- 78
+ 66 x--> 75
+ 67 --- 74
+ 67 --- 79
+ 67 x--> 75
+ 70 --- 71
+ 70 --- 72
+ 70 --- 73
+ 70 --- 74
+ 70 --- 75
+ 70 --- 76
+ 70 --- 77
+ 70 --- 78
+ 70 --- 79
+ 76 --- 80
+ 77 <--x 72
+ 77 <--x 76
+ 78 <--x 73
+ 78 <--x 76
+ 79 <--x 74
+ 79 <--x 76
+ 80 --- 81
+ 80 ---- 83
+ 80 --- 82
+ 81 --- 84
+ 81 --- 86
+ 81 <--x 76
+ 83 --- 84
+ 83 --- 85
+ 83 --- 86
+ 85 --- 87
+ 85 --- 96
+ 87 --- 88
+ 87 ---- 90
+ 87 --- 89
+ 88 --- 91
+ 88 <--x 85
+ 90 --- 91
+ 90 --- 92
+ 96 --- 97
+ 96 ---- 99
+ 96 --- 98
+ 97 --- 100
+ 97 --- 102
+ 97 <--x 85
+ 99 --- 100
+ 99 --- 101
+ 99 --- 102
+ 103 --- 104
+ 104 --- 105
+ 104 ---- 107
+ 104 --- 106
+ 105 --- 108
+ 105 x--> 110
+ 107 --- 108
+ 107 --- 109
+ 107 --- 110
+ 61 <--x 111
+ 102 <--x 112
+ 113 --- 114
+ 114 --- 115
+ 114 --- 116
+ 114 --- 117
+ 114 --- 118
+ 114 --- 119
+ 114 ---- 121
+ 114 --- 120
+ 115 --- 122
+ 115 x--> 127
+ 116 --- 123
+ 116 --- 128
+ 116 x--> 127
+ 117 --- 124
+ 117 --- 129
+ 117 x--> 127
+ 118 --- 125
+ 118 --- 130
+ 118 x--> 127
+ 121 --- 122
+ 121 --- 123
+ 121 --- 124
+ 121 --- 125
+ 121 --- 126
+ 121 --- 127
+ 121 --- 128
+ 121 --- 129
+ 121 --- 130
+ 126 --- 131
+ 126 --- 138
+ 127 --- 167
+ 128 <--x 123
+ 128 <--x 126
+ 129 <--x 124
+ 129 <--x 126
+ 130 <--x 125
+ 130 <--x 126
+ 131 --- 132
+ 131 ---- 134
+ 131 --- 133
+ 132 --- 135
+ 132 --- 137
+ 132 <--x 126
+ 134 --- 135
+ 134 --- 136
+ 134 --- 137
+ 136 --- 145
+ 138 --- 139
+ 138 ---- 141
+ 138 --- 140
+ 139 --- 142
+ 139 --- 144
+ 139 <--x 126
+ 141 --- 142
+ 141 --- 143
+ 141 --- 144
+ 143 --- 158
+ 145 --- 146
+ 145 ---- 148
+ 145 --- 147
+ 146 --- 149
+ 146 <--x 136
+ 148 --- 149
+ 148 --- 150
+ 158 --- 159
+ 158 ---- 161
+ 158 --- 160
+ 159 --- 162
+ 159 <--x 143
+ 161 --- 162
+ 161 --- 163
167 --- 168
167 ---- 170
167 --- 169
168 --- 171
- 168 --- 173
- 168 --- 174
+ 168 <--x 127
170 --- 171
170 --- 172
- 170 --- 173
- 170 --- 174
- 172 --- 190
- 175 --- 176
- 175 ---- 178
- 175 --- 177
- 176 --- 179
- 176 --- 181
- 176 --- 182
- 178 --- 179
- 178 --- 180
- 178 --- 181
- 178 --- 182
- 190 --- 191
- 190 ---- 193
- 190 --- 192
- 191 --- 194
- 191 --- 196
- 191 --- 197
- 193 --- 194
- 193 --- 195
- 193 --- 196
- 193 --- 197
+ 173 --- 174
+ 174 --- 175
+ 174 --- 176
+ 174 --- 177
+ 174 --- 178
+ 174 --- 179
+ 174 ---- 181
+ 174 --- 180
+ 175 --- 182
+ 175 x--> 186
+ 176 --- 183
+ 176 --- 188
+ 176 x--> 186
+ 177 --- 184
+ 177 --- 189
+ 177 x--> 186
+ 178 --- 185
+ 178 --- 190
+ 178 x--> 186
+ 181 --- 182
+ 181 --- 183
+ 181 --- 184
+ 181 --- 185
+ 181 --- 186
+ 181 --- 187
+ 181 --- 188
+ 181 --- 189
+ 181 --- 190
+ 186 --- 211
+ 187 --- 191
+ 187 --- 218
+ 188 <--x 183
+ 188 <--x 187
+ 189 <--x 184
+ 189 <--x 187
+ 190 <--x 185
+ 190 <--x 187
+ 191 --- 192
+ 191 ---- 194
+ 191 --- 193
+ 192 --- 195
+ 192 --- 197
+ 192 <--x 187
+ 194 --- 195
+ 194 --- 196
+ 194 --- 197
+ 196 --- 198
+ 198 --- 199
+ 198 ---- 201
+ 198 --- 200
+ 199 --- 202
+ 199 <--x 196
201 --- 202
- 201 ---- 204
201 --- 203
- 202 --- 205
- 202 --- 207
- 202 --- 208
- 204 --- 205
- 204 --- 206
- 204 --- 207
- 204 --- 208
- 209 --- 210
- 210 --- 211
- 210 --- 212
- 210 --- 213
- 210 --- 214
- 210 --- 215
- 210 ---- 217
- 210 --- 216
- 211 --- 218
- 211 --- 224
- 211 --- 225
- 212 --- 219
- 212 --- 226
- 212 --- 227
- 213 --- 220
- 213 --- 228
- 213 --- 229
- 214 --- 221
- 214 --- 230
- 214 --- 231
- 217 --- 218
- 217 --- 219
- 217 --- 220
- 217 --- 221
- 217 --- 222
- 217 --- 223
- 217 --- 224
- 217 --- 225
- 217 --- 226
- 217 --- 227
- 217 --- 228
- 217 --- 229
- 217 --- 230
- 217 --- 231
- 222 --- 255
- 223 --- 232
- 223 --- 264
+ 211 --- 212
+ 211 ---- 214
+ 211 --- 213
+ 212 --- 215
+ 212 x--> 217
+ 214 --- 215
+ 214 --- 216
+ 214 --- 217
+ 218 --- 219
+ 218 ---- 221
+ 218 --- 220
+ 219 --- 222
+ 219 x--> 224
+ 221 --- 222
+ 221 --- 223
+ 221 --- 224
+ 223 --- 225
+ 225 --- 226
+ 225 ---- 228
+ 225 --- 227
+ 226 --- 229
+ 226 x--> 231
+ 228 --- 229
+ 228 --- 230
+ 228 --- 231
+ 230 --- 232
+ 230 --- 258
232 --- 233
- 232 ---- 235
232 --- 234
- 233 --- 236
- 233 --- 238
- 233 --- 239
- 235 --- 236
- 235 --- 237
- 235 --- 238
- 235 --- 239
- 237 --- 240
- 240 --- 241
- 240 ---- 243
- 240 --- 242
- 241 --- 244
- 241 --- 246
- 241 --- 247
- 243 --- 244
- 243 --- 245
- 243 --- 246
- 243 --- 247
- 255 --- 256
- 255 ---- 258
- 255 --- 257
- 256 --- 259
- 256 --- 262
- 256 --- 263
+ 232 --- 235
+ 232 --- 236
+ 232 --- 237
+ 232 --- 238
+ 232 --- 239
+ 232 --- 240
+ 232 ---- 242
+ 232 --- 241
+ 233 --- 243
+ 233 x--> 251
+ 234 --- 244
+ 234 --- 252
+ 234 x--> 251
+ 235 --- 245
+ 235 --- 253
+ 235 x--> 251
+ 236 --- 246
+ 236 --- 254
+ 236 x--> 251
+ 237 --- 247
+ 237 --- 255
+ 237 x--> 251
+ 238 --- 248
+ 238 --- 256
+ 238 x--> 251
+ 239 --- 249
+ 239 --- 257
+ 239 x--> 251
+ 242 --- 243
+ 242 --- 244
+ 242 --- 245
+ 242 --- 246
+ 242 --- 247
+ 242 --- 248
+ 242 --- 249
+ 242 --- 250
+ 242 --- 251
+ 242 --- 252
+ 242 --- 253
+ 242 --- 254
+ 242 --- 255
+ 242 --- 256
+ 242 --- 257
+ 252 <--x 244
+ 252 <--x 250
+ 253 <--x 245
+ 253 <--x 250
+ 254 <--x 246
+ 254 <--x 250
+ 255 <--x 247
+ 255 <--x 250
+ 256 <--x 248
+ 256 <--x 250
+ 257 <--x 249
+ 257 <--x 250
258 --- 259
258 --- 260
258 --- 261
258 --- 262
258 --- 263
- 264 --- 265
- 264 ---- 267
- 264 --- 266
- 265 --- 268
- 265 --- 271
- 265 --- 272
- 267 --- 268
- 267 --- 269
- 267 --- 270
- 267 --- 271
- 267 --- 272
- 269 --- 273
- 273 --- 274
- 273 ---- 276
- 273 --- 275
- 274 --- 277
- 274 --- 280
- 274 --- 281
- 276 --- 277
- 276 --- 278
- 276 --- 279
- 276 --- 280
- 276 --- 281
- 278 --- 282
- 278 --- 316
- 282 --- 283
- 282 --- 284
- 282 --- 285
- 282 --- 286
- 282 --- 287
- 282 --- 288
- 282 --- 289
- 282 --- 290
- 282 ---- 292
- 282 --- 291
- 283 --- 293
- 283 --- 302
- 283 --- 303
- 284 --- 294
- 284 --- 304
- 284 --- 305
- 285 --- 295
- 285 --- 306
- 285 --- 307
- 286 --- 296
- 286 --- 308
- 286 --- 309
- 287 --- 297
- 287 --- 310
- 287 --- 311
- 288 --- 298
- 288 --- 312
- 288 --- 313
- 289 --- 299
- 289 --- 314
- 289 --- 315
- 292 --- 293
- 292 --- 294
- 292 --- 295
- 292 --- 296
- 292 --- 297
- 292 --- 298
- 292 --- 299
- 292 --- 300
- 292 --- 301
- 292 --- 302
- 292 --- 303
- 292 --- 304
- 292 --- 305
- 292 --- 306
- 292 --- 307
- 292 --- 308
- 292 --- 309
- 292 --- 310
- 292 --- 311
- 292 --- 312
- 292 --- 313
- 292 --- 314
- 292 --- 315
- 316 --- 317
- 316 --- 318
- 316 --- 319
- 316 --- 320
- 316 --- 321
- 316 --- 322
- 316 --- 323
- 316 --- 324
- 316 ---- 326
- 316 --- 325
- 317 --- 333
- 317 --- 348
- 317 --- 349
- 318 --- 332
- 318 --- 346
- 318 --- 347
- 319 --- 331
- 319 --- 344
- 319 --- 345
- 320 --- 330
- 320 --- 342
- 320 --- 343
- 321 --- 329
- 321 --- 340
- 321 --- 341
- 322 --- 328
- 322 --- 338
- 322 --- 339
- 323 --- 327
- 323 --- 336
- 323 --- 337
- 326 --- 327
- 326 --- 328
- 326 --- 329
- 326 --- 330
- 326 --- 331
- 326 --- 332
- 326 --- 333
- 326 --- 334
- 326 --- 335
- 326 --- 336
- 326 --- 337
- 326 --- 338
- 326 --- 339
- 326 --- 340
- 326 --- 341
- 326 --- 342
- 326 --- 343
- 326 --- 344
- 326 --- 345
- 326 --- 346
- 326 --- 347
- 326 --- 348
- 326 --- 349
- 15 <--x 350
- 33 <--x 351
- 15 <--x 352
- 15 <--x 353
- 88 <--x 354
- 102 <--x 355
- 102 <--x 356
- 149 <--x 357
- 149 <--x 358
- 164 <--x 359
- 172 <--x 360
- 150 <--x 361
- 223 <--x 362
- 237 <--x 363
- 222 <--x 364
- 223 <--x 365
- 269 <--x 366
- 278 <--x 367
- 278 <--x 368
+ 258 --- 264
+ 258 --- 265
+ 258 --- 266
+ 258 ---- 268
+ 258 --- 267
+ 259 --- 275
+ 259 --- 283
+ 259 x--> 277
+ 260 --- 274
+ 260 --- 282
+ 260 x--> 277
+ 261 --- 273
+ 261 --- 281
+ 261 x--> 277
+ 262 --- 272
+ 262 --- 280
+ 262 x--> 277
+ 263 --- 271
+ 263 --- 279
+ 263 x--> 277
+ 264 --- 270
+ 264 --- 278
+ 264 x--> 277
+ 265 --- 269
+ 265 x--> 277
+ 268 --- 269
+ 268 --- 270
+ 268 --- 271
+ 268 --- 272
+ 268 --- 273
+ 268 --- 274
+ 268 --- 275
+ 268 --- 276
+ 268 --- 277
+ 268 --- 278
+ 268 --- 279
+ 268 --- 280
+ 268 --- 281
+ 268 --- 282
+ 268 --- 283
+ 278 <--x 270
+ 278 <--x 276
+ 279 <--x 271
+ 279 <--x 276
+ 280 <--x 272
+ 280 <--x 276
+ 281 <--x 273
+ 281 <--x 276
+ 282 <--x 274
+ 282 <--x 276
+ 283 <--x 275
+ 283 <--x 276
+ 15 <--x 284
+ 29 <--x 285
+ 15 <--x 286
+ 15 <--x 287
+ 76 <--x 288
+ 85 <--x 289
+ 85 <--x 290
+ 126 <--x 291
+ 126 <--x 292
+ 136 <--x 293
+ 143 <--x 294
+ 127 <--x 295
+ 187 <--x 296
+ 196 <--x 297
+ 186 <--x 298
+ 187 <--x 299
+ 223 <--x 300
+ 230 <--x 301
+ 230 <--x 302
```
diff --git a/rust/kcl-lib/tests/kcl_samples/parametric-bearing-pillow-block/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/parametric-bearing-pillow-block/artifact_commands.snap
index 5d09be1fd..b0999173e 100644
--- a/rust/kcl-lib/tests/kcl_samples/parametric-bearing-pillow-block/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/parametric-bearing-pillow-block/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands parametric-bearing-pillow-block.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands parametric-bearing-pillow-block.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands parametric-bearing-pillow-block.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -550,45 +658,7 @@ description: Artifact commands parametric-bearing-pillow-block.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -6.35,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -597,20 +667,18 @@ description: Artifact commands parametric-bearing-pillow-block.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -680,6 +748,33 @@ description: Artifact commands parametric-bearing-pillow-block.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -747,6 +842,127 @@ description: Artifact commands parametric-bearing-pillow-block.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -6.35,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1010,45 +1226,7 @@ description: Artifact commands parametric-bearing-pillow-block.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -19.049999999999997,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -1057,20 +1235,18 @@ description: Artifact commands parametric-bearing-pillow-block.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -1140,6 +1316,33 @@ description: Artifact commands parametric-bearing-pillow-block.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1207,6 +1410,127 @@ description: Artifact commands parametric-bearing-pillow-block.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -19.049999999999997,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1345,5 +1669,32 @@ description: Artifact commands parametric-bearing-pillow-block.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/kcl_samples/parametric-bearing-pillow-block/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/parametric-bearing-pillow-block/artifact_graph_flowchart.snap.md
index dbba7c720..c98c19fd9 100644
--- a/rust/kcl-lib/tests/kcl_samples/parametric-bearing-pillow-block/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/parametric-bearing-pillow-block/artifact_graph_flowchart.snap.md
@@ -8,20 +8,20 @@ flowchart LR
6["Segment
[972, 979, 0]"]
7[Solid2d]
end
- subgraph path23 [Path]
- 23["Path
[1066, 1213, 0]"]
- 24["Segment
[1066, 1213, 0]"]
- 25[Solid2d]
+ subgraph path18 [Path]
+ 18["Path
[1066, 1213, 0]"]
+ 19["Segment
[1066, 1213, 0]"]
+ 20[Solid2d]
end
- subgraph path34 [Path]
- 34["Path
[1460, 1609, 0]"]
- 35["Segment
[1460, 1609, 0]"]
- 36[Solid2d]
+ subgraph path27 [Path]
+ 27["Path
[1460, 1609, 0]"]
+ 28["Segment
[1460, 1609, 0]"]
+ 29[Solid2d]
end
- subgraph path44 [Path]
- 44["Path
[1861, 1909, 0]"]
- 45["Segment
[1861, 1909, 0]"]
- 46[Solid2d]
+ subgraph path35 [Path]
+ 35["Path
[1861, 1909, 0]"]
+ 36["Segment
[1861, 1909, 0]"]
+ 37[Solid2d]
end
1["Plane
[750, 767, 0]"]
8["Sweep Extrusion
[985, 1009, 0]"]
@@ -32,35 +32,24 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
+ 21["Sweep Extrusion
[1378, 1407, 0]"]
+ 22[Wall]
+ 23["Cap Start"]
+ 24["Sweep Extrusion
[1378, 1407, 0]"]
+ 25["Sweep Extrusion
[1378, 1407, 0]"]
26["Sweep Extrusion
[1378, 1407, 0]"]
- 27[Wall]
- 28["Cap Start"]
- 29["SweepEdge Opposite"]
- 30["SweepEdge Adjacent"]
- 31["Sweep Extrusion
[1378, 1407, 0]"]
- 32["Sweep Extrusion
[1378, 1407, 0]"]
- 33["Sweep Extrusion
[1378, 1407, 0]"]
- 37["Sweep Extrusion
[1774, 1809, 0]"]
- 38[Wall]
- 39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 41["Sweep Extrusion
[1774, 1809, 0]"]
- 42["Sweep Extrusion
[1774, 1809, 0]"]
- 43["Sweep Extrusion
[1774, 1809, 0]"]
- 47["Sweep Extrusion
[1915, 1940, 0]"]
- 48[Wall]
- 49["SweepEdge Opposite"]
- 50["SweepEdge Adjacent"]
- 51["StartSketchOnFace
[1029, 1060, 0]"]
- 52["StartSketchOnFace
[1421, 1454, 0]"]
- 53["StartSketchOnFace
[1824, 1855, 0]"]
+ 30["Sweep Extrusion
[1774, 1809, 0]"]
+ 31[Wall]
+ 32["Sweep Extrusion
[1774, 1809, 0]"]
+ 33["Sweep Extrusion
[1774, 1809, 0]"]
+ 34["Sweep Extrusion
[1774, 1809, 0]"]
+ 38["Sweep Extrusion
[1915, 1940, 0]"]
+ 39[Wall]
+ 40["StartSketchOnFace
[1029, 1060, 0]"]
+ 41["StartSketchOnFace
[1421, 1454, 0]"]
+ 42["StartSketchOnFace
[1824, 1855, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -69,17 +58,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 9
- 3 --- 15
- 3 --- 16
+ 3 x--> 13
4 --- 10
- 4 --- 17
- 4 --- 18
+ 4 --- 15
+ 4 x--> 13
5 --- 11
- 5 --- 19
- 5 --- 20
+ 5 --- 16
+ 5 x--> 13
6 --- 12
- 6 --- 21
- 6 --- 22
+ 6 --- 17
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -89,43 +77,35 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 13 --- 34
- 14 --- 23
- 14 --- 44
- 23 --- 24
- 23 ---- 26
- 23 --- 25
- 24 --- 27
- 24 --- 29
- 24 --- 30
- 26 --- 27
- 26 --- 28
- 26 --- 29
- 26 --- 30
- 34 --- 35
- 34 ---- 37
- 34 --- 36
- 35 --- 38
- 35 --- 39
- 35 --- 40
- 37 --- 38
- 37 --- 39
- 37 --- 40
- 44 --- 45
- 44 ---- 47
- 44 --- 46
- 45 --- 48
- 45 --- 49
- 45 --- 50
- 47 --- 48
- 47 --- 49
- 47 --- 50
- 14 <--x 51
- 13 <--x 52
- 14 <--x 53
+ 13 --- 27
+ 14 --- 18
+ 14 --- 35
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 18 --- 19
+ 18 ---- 21
+ 18 --- 20
+ 19 --- 22
+ 19 <--x 14
+ 21 --- 22
+ 21 --- 23
+ 27 --- 28
+ 27 ---- 30
+ 27 --- 29
+ 28 --- 31
+ 28 <--x 13
+ 30 --- 31
+ 35 --- 36
+ 35 ---- 38
+ 35 --- 37
+ 36 --- 39
+ 36 <--x 14
+ 38 --- 39
+ 14 <--x 40
+ 13 <--x 41
+ 14 <--x 42
```
diff --git a/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/artifact_commands.snap
index 424964a19..8130297a5 100644
--- a/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/artifact_commands.snap
@@ -689,6 +689,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -828,6 +855,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1215,20 +1269,27 @@ description: Artifact commands pipe-flange-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1255,20 +1316,27 @@ description: Artifact commands pipe-flange-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1291,6 +1359,127 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1430,6 +1619,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1569,6 +1785,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1708,6 +1951,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2095,20 +2365,27 @@ description: Artifact commands pipe-flange-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2135,20 +2412,27 @@ description: Artifact commands pipe-flange-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2171,6 +2455,127 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2310,6 +2715,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2449,6 +2881,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2588,6 +3047,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2777,6 +3263,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2916,6 +3429,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3105,6 +3645,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3342,20 +3909,27 @@ description: Artifact commands pipe-flange-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3382,20 +3956,27 @@ description: Artifact commands pipe-flange-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3418,6 +3999,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3438,6 +4046,127 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3577,6 +4306,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3830,20 +4586,27 @@ description: Artifact commands pipe-flange-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3870,20 +4633,27 @@ description: Artifact commands pipe-flange-assembly.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -3906,6 +4676,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3926,6 +4723,127 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4065,6 +4983,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4254,6 +5199,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4393,6 +5365,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4582,6 +5581,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -4721,6 +5747,33 @@ description: Artifact commands pipe-flange-assembly.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/artifact_graph_flowchart.snap.md
index eeb04f04d..e70358999 100644
--- a/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/pipe-flange-assembly/artifact_graph_flowchart.snap.md
@@ -10,120 +10,120 @@ flowchart LR
7["Segment
[917, 972, 8]"]
8[Solid2d]
end
- subgraph path15 [Path]
- 15["Path
[1192, 1251, 8]"]
- 16["Segment
[1192, 1251, 8]"]
- 17[Solid2d]
+ subgraph path13 [Path]
+ 13["Path
[1192, 1251, 8]"]
+ 14["Segment
[1192, 1251, 8]"]
+ 15[Solid2d]
end
- subgraph path23 [Path]
- 23["Path
[1358, 1418, 8]"]
- 24["Segment
[1358, 1418, 8]"]
- 25[Solid2d]
+ subgraph path19 [Path]
+ 19["Path
[1358, 1418, 8]"]
+ 20["Segment
[1358, 1418, 8]"]
+ 21[Solid2d]
+ end
+ subgraph path25 [Path]
+ 25["Path
[1580, 1633, 8]"]
+ 26["Segment
[1580, 1633, 8]"]
+ 27[Solid2d]
end
subgraph path31 [Path]
- 31["Path
[1580, 1633, 8]"]
- 32["Segment
[1580, 1633, 8]"]
+ 31["Path
[595, 688, 8]"]
+ 32["Segment
[595, 688, 8]"]
33[Solid2d]
end
- subgraph path39 [Path]
- 39["Path
[595, 688, 8]"]
- 40["Segment
[595, 688, 8]"]
- 41[Solid2d]
+ subgraph path35 [Path]
+ 35["Path
[917, 972, 8]"]
+ 36["Segment
[917, 972, 8]"]
+ 37[Solid2d]
end
- subgraph path43 [Path]
- 43["Path
[917, 972, 8]"]
- 44["Segment
[917, 972, 8]"]
- 45[Solid2d]
+ subgraph path42 [Path]
+ 42["Path
[1192, 1251, 8]"]
+ 43["Segment
[1192, 1251, 8]"]
+ 44[Solid2d]
end
- subgraph path52 [Path]
- 52["Path
[1192, 1251, 8]"]
- 53["Segment
[1192, 1251, 8]"]
- 54[Solid2d]
+ subgraph path48 [Path]
+ 48["Path
[1358, 1418, 8]"]
+ 49["Segment
[1358, 1418, 8]"]
+ 50[Solid2d]
+ end
+ subgraph path54 [Path]
+ 54["Path
[1580, 1633, 8]"]
+ 55["Segment
[1580, 1633, 8]"]
+ 56[Solid2d]
end
subgraph path60 [Path]
- 60["Path
[1358, 1418, 8]"]
- 61["Segment
[1358, 1418, 8]"]
+ 60["Path
[422, 484, 7]"]
+ 61["Segment
[422, 484, 7]"]
62[Solid2d]
end
- subgraph path68 [Path]
- 68["Path
[1580, 1633, 8]"]
- 69["Segment
[1580, 1633, 8]"]
- 70[Solid2d]
+ subgraph path67 [Path]
+ 67["Path
[622, 682, 7]"]
+ 68["Segment
[622, 682, 7]"]
+ 69[Solid2d]
end
- subgraph path76 [Path]
- 76["Path
[422, 484, 7]"]
- 77["Segment
[422, 484, 7]"]
- 78[Solid2d]
+ subgraph path73 [Path]
+ 73["Path
[411, 463, 9]"]
+ 74["Segment
[411, 463, 9]"]
+ 75[Solid2d]
end
- subgraph path85 [Path]
- 85["Path
[622, 682, 7]"]
- 86["Segment
[622, 682, 7]"]
- 87[Solid2d]
+ subgraph path80 [Path]
+ 80["Path
[601, 653, 9]"]
+ 81["Segment
[601, 653, 9]"]
+ 82[Solid2d]
end
- subgraph path93 [Path]
- 93["Path
[411, 463, 9]"]
- 94["Segment
[411, 463, 9]"]
- 95[Solid2d]
+ subgraph path86 [Path]
+ 86["Path
[439, 509, 10]"]
+ 87["Segment
[439, 509, 10]"]
+ 88[Solid2d]
end
- subgraph path102 [Path]
- 102["Path
[601, 653, 9]"]
- 103["Segment
[601, 653, 9]"]
- 104[Solid2d]
+ subgraph path96 [Path]
+ 96["Path
[778, 865, 10]"]
+ 97["Segment
[873, 924, 10]"]
+ 98["Segment
[932, 983, 10]"]
+ 99["Segment
[991, 1042, 10]"]
+ 100["Segment
[1050, 1100, 10]"]
+ 101["Segment
[1108, 1158, 10]"]
+ 102["Segment
[1166, 1173, 10]"]
+ 103[Solid2d]
end
- subgraph path110 [Path]
- 110["Path
[439, 509, 10]"]
- 111["Segment
[439, 509, 10]"]
- 112[Solid2d]
+ subgraph path117 [Path]
+ 117["Path
[1312, 1381, 10]"]
+ 118["Segment
[1312, 1381, 10]"]
+ 119[Solid2d]
end
- subgraph path121 [Path]
- 121["Path
[778, 865, 10]"]
- 122["Segment
[873, 924, 10]"]
- 123["Segment
[932, 983, 10]"]
- 124["Segment
[991, 1042, 10]"]
- 125["Segment
[1050, 1100, 10]"]
- 126["Segment
[1108, 1158, 10]"]
- 127["Segment
[1166, 1173, 10]"]
- 128[Solid2d]
+ subgraph path124 [Path]
+ 124["Path
[425, 515, 11]"]
+ 125["Segment
[523, 573, 11]"]
+ 126["Segment
[581, 631, 11]"]
+ 127["Segment
[639, 689, 11]"]
+ 128["Segment
[697, 746, 11]"]
+ 129["Segment
[754, 803, 11]"]
+ 130["Segment
[811, 818, 11]"]
+ 131[Solid2d]
end
- subgraph path149 [Path]
- 149["Path
[1312, 1381, 10]"]
- 150["Segment
[1312, 1381, 10]"]
- 151[Solid2d]
+ subgraph path146 [Path]
+ 146["Path
[967, 1019, 11]"]
+ 147["Segment
[967, 1019, 11]"]
+ 148[Solid2d]
end
- subgraph path158 [Path]
- 158["Path
[425, 515, 11]"]
- 159["Segment
[523, 573, 11]"]
- 160["Segment
[581, 631, 11]"]
- 161["Segment
[639, 689, 11]"]
- 162["Segment
[697, 746, 11]"]
- 163["Segment
[754, 803, 11]"]
- 164["Segment
[811, 818, 11]"]
- 165[Solid2d]
+ subgraph path152 [Path]
+ 152["Path
[325, 383, 12]"]
+ 153["Segment
[325, 383, 12]"]
+ 154[Solid2d]
end
- subgraph path187 [Path]
- 187["Path
[967, 1019, 11]"]
- 188["Segment
[967, 1019, 11]"]
- 189[Solid2d]
+ subgraph path159 [Path]
+ 159["Path
[527, 582, 12]"]
+ 160["Segment
[527, 582, 12]"]
+ 161[Solid2d]
end
- subgraph path195 [Path]
- 195["Path
[325, 383, 12]"]
- 196["Segment
[325, 383, 12]"]
- 197[Solid2d]
+ subgraph path165 [Path]
+ 165["Path
[325, 383, 12]"]
+ 166["Segment
[325, 383, 12]"]
+ 167[Solid2d]
end
- subgraph path204 [Path]
- 204["Path
[527, 582, 12]"]
- 205["Segment
[527, 582, 12]"]
- 206[Solid2d]
- end
- subgraph path212 [Path]
- 212["Path
[325, 383, 12]"]
- 213["Segment
[325, 383, 12]"]
- 214[Solid2d]
- end
- subgraph path221 [Path]
- 221["Path
[527, 582, 12]"]
- 222["Segment
[527, 582, 12]"]
- 223[Solid2d]
+ subgraph path172 [Path]
+ 172["Path
[527, 582, 12]"]
+ 173["Segment
[527, 582, 12]"]
+ 174[Solid2d]
end
1["Plane
[570, 587, 8]"]
5["Plane
[892, 909, 8]"]
@@ -131,161 +131,110 @@ flowchart LR
10[Wall]
11["Cap Start"]
12["Cap End"]
- 13["SweepEdge Opposite"]
- 14["SweepEdge Adjacent"]
- 18["Sweep Extrusion
[1259, 1296, 8]"]
- 19[Wall]
- 20["Cap End"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 26["Sweep Extrusion
[1426, 1464, 8]"]
- 27[Wall]
- 28["Cap End"]
- 29["SweepEdge Opposite"]
- 30["SweepEdge Adjacent"]
- 34["Sweep Extrusion
[1641, 1683, 8]"]
- 35[Wall]
- 36["SweepEdge Opposite"]
- 37["SweepEdge Adjacent"]
- 38["Plane
[570, 587, 8]"]
- 42["Plane
[892, 909, 8]"]
- 46["Sweep Extrusion
[1010, 1050, 8]"]
- 47[Wall]
- 48["Cap Start"]
- 49["Cap End"]
- 50["SweepEdge Opposite"]
- 51["SweepEdge Adjacent"]
- 55["Sweep Extrusion
[1259, 1296, 8]"]
- 56[Wall]
- 57["Cap End"]
- 58["SweepEdge Opposite"]
- 59["SweepEdge Adjacent"]
- 63["Sweep Extrusion
[1426, 1464, 8]"]
+ 16["Sweep Extrusion
[1259, 1296, 8]"]
+ 17[Wall]
+ 18["Cap End"]
+ 22["Sweep Extrusion
[1426, 1464, 8]"]
+ 23[Wall]
+ 24["Cap End"]
+ 28["Sweep Extrusion
[1641, 1683, 8]"]
+ 29[Wall]
+ 30["Plane
[570, 587, 8]"]
+ 34["Plane
[892, 909, 8]"]
+ 38["Sweep Extrusion
[1010, 1050, 8]"]
+ 39[Wall]
+ 40["Cap Start"]
+ 41["Cap End"]
+ 45["Sweep Extrusion
[1259, 1296, 8]"]
+ 46[Wall]
+ 47["Cap End"]
+ 51["Sweep Extrusion
[1426, 1464, 8]"]
+ 52[Wall]
+ 53["Cap End"]
+ 57["Sweep Extrusion
[1641, 1683, 8]"]
+ 58[Wall]
+ 59["Plane
[399, 416, 7]"]
+ 63["Sweep Extrusion
[490, 526, 7]"]
64[Wall]
- 65["Cap End"]
- 66["SweepEdge Opposite"]
- 67["SweepEdge Adjacent"]
- 71["Sweep Extrusion
[1641, 1683, 8]"]
- 72[Wall]
- 73["SweepEdge Opposite"]
- 74["SweepEdge Adjacent"]
- 75["Plane
[399, 416, 7]"]
- 79["Sweep Extrusion
[490, 526, 7]"]
- 80[Wall]
- 81["Cap Start"]
- 82["Cap End"]
- 83["SweepEdge Opposite"]
- 84["SweepEdge Adjacent"]
- 88["Sweep Extrusion
[688, 725, 7]"]
- 89[Wall]
- 90["SweepEdge Opposite"]
- 91["SweepEdge Adjacent"]
- 92["Plane
[386, 403, 9]"]
- 96["Sweep Extrusion
[471, 504, 9]"]
- 97[Wall]
- 98["Cap Start"]
- 99["Cap End"]
- 100["SweepEdge Opposite"]
- 101["SweepEdge Adjacent"]
- 105["Sweep Extrusion
[661, 698, 9]"]
+ 65["Cap Start"]
+ 66["Cap End"]
+ 70["Sweep Extrusion
[688, 725, 7]"]
+ 71[Wall]
+ 72["Plane
[386, 403, 9]"]
+ 76["Sweep Extrusion
[471, 504, 9]"]
+ 77[Wall]
+ 78["Cap Start"]
+ 79["Cap End"]
+ 83["Sweep Extrusion
[661, 698, 9]"]
+ 84[Wall]
+ 85["Plane
[414, 431, 10]"]
+ 89["Sweep Extrusion
[517, 550, 10]"]
+ 90[Wall]
+ 91["Cap Start"]
+ 92["Cap End"]
+ 93["SweepEdge Opposite"]
+ 94["EdgeCut Fillet
[558, 624, 10]"]
+ 95["EdgeCut Fillet
[558, 624, 10]"]
+ 104["Sweep Extrusion
[1181, 1221, 10]"]
+ 105[Wall]
106[Wall]
- 107["SweepEdge Opposite"]
- 108["SweepEdge Adjacent"]
- 109["Plane
[414, 431, 10]"]
- 113["Sweep Extrusion
[517, 550, 10]"]
- 114[Wall]
- 115["Cap Start"]
- 116["Cap End"]
- 117["SweepEdge Opposite"]
- 118["SweepEdge Adjacent"]
- 119["EdgeCut Fillet
[558, 624, 10]"]
- 120["EdgeCut Fillet
[558, 624, 10]"]
- 129["Sweep Extrusion
[1181, 1221, 10]"]
- 130[Wall]
- 131[Wall]
- 132[Wall]
+ 107[Wall]
+ 108[Wall]
+ 109[Wall]
+ 110[Wall]
+ 111["Cap Start"]
+ 112["SweepEdge Opposite"]
+ 113["SweepEdge Opposite"]
+ 114["SweepEdge Opposite"]
+ 115["SweepEdge Opposite"]
+ 116["SweepEdge Opposite"]
+ 120["Sweep Extrusion
[1389, 1417, 10]"]
+ 121[Wall]
+ 122["Cap End"]
+ 123["Plane
[400, 417, 11]"]
+ 132["Sweep Extrusion
[826, 859, 11]"]
133[Wall]
134[Wall]
135[Wall]
- 136["Cap Start"]
- 137["SweepEdge Opposite"]
- 138["SweepEdge Adjacent"]
- 139["SweepEdge Opposite"]
- 140["SweepEdge Adjacent"]
+ 136[Wall]
+ 137[Wall]
+ 138[Wall]
+ 139["Cap Start"]
+ 140["Cap End"]
141["SweepEdge Opposite"]
- 142["SweepEdge Adjacent"]
+ 142["SweepEdge Opposite"]
143["SweepEdge Opposite"]
- 144["SweepEdge Adjacent"]
+ 144["SweepEdge Opposite"]
145["SweepEdge Opposite"]
- 146["SweepEdge Adjacent"]
- 147["SweepEdge Opposite"]
- 148["SweepEdge Adjacent"]
- 152["Sweep Extrusion
[1389, 1417, 10]"]
- 153[Wall]
- 154["Cap End"]
- 155["SweepEdge Opposite"]
- 156["SweepEdge Adjacent"]
- 157["Plane
[400, 417, 11]"]
- 166["Sweep Extrusion
[826, 859, 11]"]
- 167[Wall]
- 168[Wall]
+ 149["Sweep Extrusion
[1027, 1064, 11]"]
+ 150[Wall]
+ 151["Plane
[300, 317, 12]"]
+ 155["Sweep Extrusion
[391, 422, 12]"]
+ 156[Wall]
+ 157["Cap Start"]
+ 158["Cap End"]
+ 162["Sweep Extrusion
[590, 622, 12]"]
+ 163[Wall]
+ 164["Plane
[300, 317, 12]"]
+ 168["Sweep Extrusion
[391, 422, 12]"]
169[Wall]
- 170[Wall]
- 171[Wall]
- 172[Wall]
- 173["Cap Start"]
- 174["Cap End"]
- 175["SweepEdge Opposite"]
- 176["SweepEdge Adjacent"]
- 177["SweepEdge Opposite"]
- 178["SweepEdge Adjacent"]
- 179["SweepEdge Opposite"]
- 180["SweepEdge Adjacent"]
- 181["SweepEdge Opposite"]
- 182["SweepEdge Adjacent"]
- 183["SweepEdge Opposite"]
- 184["SweepEdge Adjacent"]
- 185["SweepEdge Opposite"]
- 186["SweepEdge Adjacent"]
- 190["Sweep Extrusion
[1027, 1064, 11]"]
- 191[Wall]
- 192["SweepEdge Opposite"]
- 193["SweepEdge Adjacent"]
- 194["Plane
[300, 317, 12]"]
- 198["Sweep Extrusion
[391, 422, 12]"]
- 199[Wall]
- 200["Cap Start"]
- 201["Cap End"]
- 202["SweepEdge Opposite"]
- 203["SweepEdge Adjacent"]
- 207["Sweep Extrusion
[590, 622, 12]"]
- 208[Wall]
- 209["SweepEdge Opposite"]
- 210["SweepEdge Adjacent"]
- 211["Plane
[300, 317, 12]"]
- 215["Sweep Extrusion
[391, 422, 12]"]
- 216[Wall]
- 217["Cap Start"]
- 218["Cap End"]
- 219["SweepEdge Opposite"]
- 220["SweepEdge Adjacent"]
- 224["Sweep Extrusion
[590, 622, 12]"]
- 225[Wall]
- 226["SweepEdge Opposite"]
- 227["SweepEdge Adjacent"]
- 228["StartSketchOnFace
[1145, 1184, 8]"]
- 229["StartSketchOnFace
[1313, 1350, 8]"]
- 230["StartSketchOnFace
[1534, 1572, 8]"]
- 231["StartSketchOnFace
[1145, 1184, 8]"]
- 232["StartSketchOnFace
[1313, 1350, 8]"]
- 233["StartSketchOnFace
[1534, 1572, 8]"]
- 234["StartSketchOnFace
[579, 616, 7]"]
- 235["StartSketchOnFace
[556, 593, 9]"]
- 236["StartSketchOnFace
[733, 770, 10]"]
- 237["StartSketchOnFace
[1269, 1304, 10]"]
- 238["StartSketchOnFace
[922, 959, 11]"]
- 239["StartSketchOnFace
[484, 519, 12]"]
- 240["StartSketchOnFace
[484, 519, 12]"]
+ 170["Cap Start"]
+ 171["Cap End"]
+ 175["Sweep Extrusion
[590, 622, 12]"]
+ 176[Wall]
+ 177["StartSketchOnFace
[1145, 1184, 8]"]
+ 178["StartSketchOnFace
[1313, 1350, 8]"]
+ 179["StartSketchOnFace
[1534, 1572, 8]"]
+ 180["StartSketchOnFace
[1145, 1184, 8]"]
+ 181["StartSketchOnFace
[1313, 1350, 8]"]
+ 182["StartSketchOnFace
[1534, 1572, 8]"]
+ 183["StartSketchOnFace
[579, 616, 7]"]
+ 184["StartSketchOnFace
[556, 593, 9]"]
+ 185["StartSketchOnFace
[733, 770, 10]"]
+ 186["StartSketchOnFace
[1269, 1304, 10]"]
+ 187["StartSketchOnFace
[922, 959, 11]"]
+ 188["StartSketchOnFace
[484, 519, 12]"]
+ 189["StartSketchOnFace
[484, 519, 12]"]
1 --- 2
2 --- 3
2 --- 4
@@ -294,319 +243,268 @@ flowchart LR
6 ---- 9
6 --- 8
7 --- 10
- 7 --- 13
- 7 --- 14
+ 7 x--> 11
9 --- 10
9 --- 11
9 --- 12
- 9 --- 13
- 9 --- 14
- 11 --- 15
- 12 --- 23
- 15 --- 16
- 15 ---- 18
- 15 --- 17
- 16 --- 19
- 16 --- 21
- 16 --- 22
- 18 --- 19
- 18 --- 20
- 18 --- 21
- 18 --- 22
- 23 --- 24
- 23 ---- 26
- 23 --- 25
- 24 --- 27
- 24 --- 29
- 24 --- 30
- 26 --- 27
- 26 --- 28
+ 11 --- 13
+ 12 --- 19
+ 13 --- 14
+ 13 ---- 16
+ 13 --- 15
+ 14 --- 17
+ 14 <--x 11
+ 16 --- 17
+ 16 --- 18
+ 19 --- 20
+ 19 ---- 22
+ 19 --- 21
+ 20 --- 23
+ 20 <--x 12
+ 22 --- 23
+ 22 --- 24
+ 24 --- 25
+ 25 --- 26
+ 25 ---- 28
+ 25 --- 27
26 --- 29
- 26 --- 30
- 28 --- 31
+ 26 <--x 24
+ 28 --- 29
+ 30 --- 31
31 --- 32
- 31 ---- 34
31 --- 33
- 32 --- 35
- 32 --- 36
- 32 --- 37
34 --- 35
- 34 --- 36
- 34 --- 37
+ 35 --- 36
+ 35 ---- 38
+ 35 --- 37
+ 36 --- 39
+ 36 x--> 40
38 --- 39
- 39 --- 40
- 39 --- 41
+ 38 --- 40
+ 38 --- 41
+ 40 --- 42
+ 41 --- 48
42 --- 43
- 43 --- 44
- 43 ---- 46
- 43 --- 45
- 44 --- 47
- 44 --- 50
- 44 --- 51
- 46 --- 47
- 46 --- 48
- 46 --- 49
- 46 --- 50
- 46 --- 51
- 48 --- 52
- 49 --- 60
- 52 --- 53
- 52 ---- 55
- 52 --- 54
- 53 --- 56
- 53 --- 58
- 53 --- 59
- 55 --- 56
- 55 --- 57
+ 42 ---- 45
+ 42 --- 44
+ 43 --- 46
+ 43 <--x 40
+ 45 --- 46
+ 45 --- 47
+ 48 --- 49
+ 48 ---- 51
+ 48 --- 50
+ 49 --- 52
+ 49 <--x 41
+ 51 --- 52
+ 51 --- 53
+ 53 --- 54
+ 54 --- 55
+ 54 ---- 57
+ 54 --- 56
55 --- 58
- 55 --- 59
+ 55 <--x 53
+ 57 --- 58
+ 59 --- 60
60 --- 61
60 ---- 63
60 --- 62
61 --- 64
- 61 --- 66
- 61 --- 67
+ 61 x--> 65
63 --- 64
63 --- 65
63 --- 66
- 63 --- 67
- 65 --- 68
- 68 --- 69
- 68 ---- 71
- 68 --- 70
- 69 --- 72
- 69 --- 73
- 69 --- 74
- 71 --- 72
- 71 --- 73
- 71 --- 74
- 75 --- 76
+ 66 --- 67
+ 67 --- 68
+ 67 ---- 70
+ 67 --- 69
+ 68 --- 71
+ 68 <--x 66
+ 70 --- 71
+ 72 --- 73
+ 73 --- 74
+ 73 ---- 76
+ 73 --- 75
+ 74 --- 77
+ 74 x--> 78
76 --- 77
- 76 ---- 79
76 --- 78
- 77 --- 80
- 77 --- 83
- 77 --- 84
+ 76 --- 79
79 --- 80
- 79 --- 81
- 79 --- 82
- 79 --- 83
- 79 --- 84
- 82 --- 85
+ 80 --- 81
+ 80 ---- 83
+ 80 --- 82
+ 81 --- 84
+ 81 <--x 79
+ 83 --- 84
85 --- 86
- 85 ---- 88
- 85 --- 87
- 86 --- 89
- 86 --- 90
- 86 --- 91
- 88 --- 89
- 88 --- 90
- 88 --- 91
- 92 --- 93
- 93 --- 94
- 93 ---- 96
- 93 --- 95
- 94 --- 97
- 94 --- 100
- 94 --- 101
+ 86 --- 87
+ 86 ---- 89
+ 86 --- 88
+ 87 --- 90
+ 87 --- 93
+ 87 --- 94
+ 87 x--> 92
+ 89 --- 90
+ 89 --- 91
+ 89 --- 92
+ 89 --- 93
+ 91 --- 96
+ 92 --- 117
+ 93 <--x 95
96 --- 97
96 --- 98
96 --- 99
96 --- 100
96 --- 101
- 99 --- 102
- 102 --- 103
- 102 ---- 105
- 102 --- 104
- 103 --- 106
- 103 --- 107
- 103 --- 108
- 105 --- 106
- 105 --- 107
- 105 --- 108
- 109 --- 110
- 110 --- 111
- 110 ---- 113
- 110 --- 112
- 111 --- 114
- 111 --- 117
- 111 --- 118
- 111 --- 119
- 113 --- 114
- 113 --- 115
- 113 --- 116
- 113 --- 117
- 113 --- 118
- 115 --- 121
- 116 --- 149
- 117 <--x 120
- 121 --- 122
- 121 --- 123
- 121 --- 124
- 121 --- 125
- 121 --- 126
- 121 --- 127
- 121 ---- 129
- 121 --- 128
- 122 --- 135
- 122 --- 147
- 122 --- 148
- 123 --- 134
- 123 --- 145
- 123 --- 146
- 124 --- 133
- 124 --- 143
- 124 --- 144
- 125 --- 132
- 125 --- 141
- 125 --- 142
- 126 --- 131
- 126 --- 139
- 126 --- 140
- 127 --- 130
- 127 --- 137
- 127 --- 138
- 129 --- 130
- 129 --- 131
- 129 --- 132
- 129 --- 133
+ 96 --- 102
+ 96 ---- 104
+ 96 --- 103
+ 97 --- 110
+ 97 --- 116
+ 97 <--x 91
+ 98 --- 109
+ 98 --- 115
+ 98 <--x 91
+ 99 --- 108
+ 99 --- 114
+ 99 <--x 91
+ 100 --- 107
+ 100 --- 113
+ 100 <--x 91
+ 101 --- 106
+ 101 --- 112
+ 101 <--x 91
+ 102 --- 105
+ 102 <--x 91
+ 104 --- 105
+ 104 --- 106
+ 104 --- 107
+ 104 --- 108
+ 104 --- 109
+ 104 --- 110
+ 104 --- 111
+ 104 --- 112
+ 104 --- 113
+ 104 --- 114
+ 104 --- 115
+ 104 --- 116
+ 112 <--x 106
+ 112 <--x 111
+ 113 <--x 107
+ 113 <--x 111
+ 114 <--x 108
+ 114 <--x 111
+ 115 <--x 109
+ 115 <--x 111
+ 116 <--x 110
+ 116 <--x 111
+ 117 --- 118
+ 117 ---- 120
+ 117 --- 119
+ 118 --- 121
+ 118 <--x 92
+ 120 --- 121
+ 120 --- 122
+ 123 --- 124
+ 124 --- 125
+ 124 --- 126
+ 124 --- 127
+ 124 --- 128
+ 124 --- 129
+ 124 --- 130
+ 124 ---- 132
+ 124 --- 131
+ 125 --- 138
+ 125 --- 145
+ 125 x--> 139
+ 126 --- 137
+ 126 --- 144
+ 126 x--> 139
+ 127 --- 136
+ 127 --- 143
+ 127 x--> 139
+ 128 --- 135
+ 128 --- 142
+ 128 x--> 139
129 --- 134
- 129 --- 135
- 129 --- 136
- 129 --- 137
- 129 --- 138
- 129 --- 139
- 129 --- 140
129 --- 141
- 129 --- 142
- 129 --- 143
- 129 --- 144
- 129 --- 145
- 129 --- 146
- 129 --- 147
- 129 --- 148
+ 129 x--> 139
+ 130 --- 133
+ 130 x--> 139
+ 132 --- 133
+ 132 --- 134
+ 132 --- 135
+ 132 --- 136
+ 132 --- 137
+ 132 --- 138
+ 132 --- 139
+ 132 --- 140
+ 132 --- 141
+ 132 --- 142
+ 132 --- 143
+ 132 --- 144
+ 132 --- 145
+ 140 --- 146
+ 141 <--x 134
+ 141 <--x 140
+ 142 <--x 135
+ 142 <--x 140
+ 143 <--x 136
+ 143 <--x 140
+ 144 <--x 137
+ 144 <--x 140
+ 145 <--x 138
+ 145 <--x 140
+ 146 --- 147
+ 146 ---- 149
+ 146 --- 148
+ 147 --- 150
+ 147 <--x 140
149 --- 150
- 149 ---- 152
- 149 --- 151
- 150 --- 153
- 150 --- 155
- 150 --- 156
+ 151 --- 152
152 --- 153
+ 152 ---- 155
152 --- 154
- 152 --- 155
- 152 --- 156
- 157 --- 158
+ 153 --- 156
+ 153 x--> 157
+ 155 --- 156
+ 155 --- 157
+ 155 --- 158
158 --- 159
- 158 --- 160
- 158 --- 161
- 158 --- 162
- 158 --- 163
- 158 --- 164
- 158 ---- 166
- 158 --- 165
- 159 --- 172
- 159 --- 185
- 159 --- 186
- 160 --- 171
- 160 --- 183
- 160 --- 184
- 161 --- 170
- 161 --- 181
- 161 --- 182
- 162 --- 169
- 162 --- 179
- 162 --- 180
- 163 --- 168
- 163 --- 177
- 163 --- 178
- 164 --- 167
- 164 --- 175
- 164 --- 176
- 166 --- 167
- 166 --- 168
+ 159 --- 160
+ 159 ---- 162
+ 159 --- 161
+ 160 --- 163
+ 160 <--x 158
+ 162 --- 163
+ 164 --- 165
+ 165 --- 166
+ 165 ---- 168
+ 165 --- 167
166 --- 169
- 166 --- 170
- 166 --- 171
- 166 --- 172
- 166 --- 173
- 166 --- 174
- 166 --- 175
- 166 --- 176
- 166 --- 177
- 166 --- 178
- 166 --- 179
- 166 --- 180
- 166 --- 181
- 166 --- 182
- 166 --- 183
- 166 --- 184
- 166 --- 185
- 166 --- 186
- 174 --- 187
- 187 --- 188
- 187 ---- 190
- 187 --- 189
- 188 --- 191
- 188 --- 192
- 188 --- 193
- 190 --- 191
- 190 --- 192
- 190 --- 193
- 194 --- 195
- 195 --- 196
- 195 ---- 198
- 195 --- 197
- 196 --- 199
- 196 --- 202
- 196 --- 203
- 198 --- 199
- 198 --- 200
- 198 --- 201
- 198 --- 202
- 198 --- 203
- 201 --- 204
- 204 --- 205
- 204 ---- 207
- 204 --- 206
- 205 --- 208
- 205 --- 209
- 205 --- 210
- 207 --- 208
- 207 --- 209
- 207 --- 210
- 211 --- 212
- 212 --- 213
- 212 ---- 215
- 212 --- 214
- 213 --- 216
- 213 --- 219
- 213 --- 220
- 215 --- 216
- 215 --- 217
- 215 --- 218
- 215 --- 219
- 215 --- 220
- 218 --- 221
- 221 --- 222
- 221 ---- 224
- 221 --- 223
- 222 --- 225
- 222 --- 226
- 222 --- 227
- 224 --- 225
- 224 --- 226
- 224 --- 227
- 11 <--x 228
- 12 <--x 229
- 28 <--x 230
- 48 <--x 231
- 49 <--x 232
- 65 <--x 233
- 82 <--x 234
- 99 <--x 235
- 115 <--x 236
- 116 <--x 237
- 174 <--x 238
- 201 <--x 239
- 218 <--x 240
+ 166 x--> 170
+ 168 --- 169
+ 168 --- 170
+ 168 --- 171
+ 171 --- 172
+ 172 --- 173
+ 172 ---- 175
+ 172 --- 174
+ 173 --- 176
+ 173 <--x 171
+ 175 --- 176
+ 11 <--x 177
+ 12 <--x 178
+ 24 <--x 179
+ 40 <--x 180
+ 41 <--x 181
+ 53 <--x 182
+ 66 <--x 183
+ 79 <--x 184
+ 91 <--x 185
+ 92 <--x 186
+ 140 <--x 187
+ 158 <--x 188
+ 171 <--x 189
```
diff --git a/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/artifact_commands.snap
index b2c106261..084352010 100644
--- a/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/artifact_commands.snap
@@ -285,5 +285,32 @@ description: Artifact commands pipe-with-bend.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/artifact_graph_flowchart.snap.md
index 4d206ad5e..5ba203730 100644
--- a/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/pipe-with-bend/artifact_graph_flowchart.snap.md
@@ -15,21 +15,16 @@ flowchart LR
9[Wall]
10["Cap Start"]
11["Cap End"]
- 12["SweepEdge Opposite"]
- 13["SweepEdge Adjacent"]
1 --- 2
1 --- 5
2 --- 3
2 ---- 8
2 --- 4
3 --- 9
- 3 --- 12
- 3 --- 13
+ 3 x--> 10
5 --- 6
5 --- 7
8 --- 9
8 --- 10
8 --- 11
- 8 --- 12
- 8 --- 13
```
diff --git a/rust/kcl-lib/tests/kcl_samples/pipe/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/pipe/artifact_commands.snap
index 09628bfec..143f8e6cd 100644
--- a/rust/kcl-lib/tests/kcl_samples/pipe/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/pipe/artifact_commands.snap
@@ -201,6 +201,33 @@ description: Artifact commands pipe.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -340,6 +367,33 @@ description: Artifact commands pipe.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/pipe/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/pipe/artifact_graph_flowchart.snap.md
index 6a3460025..0e153940d 100644
--- a/rust/kcl-lib/tests/kcl_samples/pipe/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/pipe/artifact_graph_flowchart.snap.md
@@ -5,44 +5,34 @@ flowchart LR
3["Segment
[241, 299, 0]"]
4[Solid2d]
end
- subgraph path11 [Path]
- 11["Path
[435, 490, 0]"]
- 12["Segment
[435, 490, 0]"]
- 13[Solid2d]
+ subgraph path9 [Path]
+ 9["Path
[435, 490, 0]"]
+ 10["Segment
[435, 490, 0]"]
+ 11[Solid2d]
end
1["Plane
[218, 235, 0]"]
5["Sweep Extrusion
[305, 336, 0]"]
6[Wall]
7["Cap Start"]
8["Cap End"]
- 9["SweepEdge Opposite"]
- 10["SweepEdge Adjacent"]
- 14["Sweep Extrusion
[496, 528, 0]"]
- 15[Wall]
- 16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
- 18["StartSketchOnFace
[394, 429, 0]"]
+ 12["Sweep Extrusion
[496, 528, 0]"]
+ 13[Wall]
+ 14["StartSketchOnFace
[394, 429, 0]"]
1 --- 2
2 --- 3
2 ---- 5
2 --- 4
3 --- 6
- 3 --- 9
- 3 --- 10
+ 3 x--> 7
5 --- 6
5 --- 7
5 --- 8
- 5 --- 9
- 5 --- 10
- 8 --- 11
- 11 --- 12
- 11 ---- 14
- 11 --- 13
- 12 --- 15
- 12 --- 16
- 12 --- 17
- 14 --- 15
- 14 --- 16
- 14 --- 17
- 8 <--x 18
+ 8 --- 9
+ 9 --- 10
+ 9 ---- 12
+ 9 --- 11
+ 10 --- 13
+ 10 <--x 8
+ 12 --- 13
+ 8 <--x 14
```
diff --git a/rust/kcl-lib/tests/kcl_samples/poopy-shoe/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/poopy-shoe/artifact_commands.snap
index 777b6d89c..60833984f 100644
--- a/rust/kcl-lib/tests/kcl_samples/poopy-shoe/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/poopy-shoe/artifact_commands.snap
@@ -375,20 +375,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -415,20 +422,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -455,20 +469,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -495,20 +516,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -535,20 +563,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -575,20 +610,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -611,6 +653,315 @@ description: Artifact commands poopy-shoe.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -966,20 +1317,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1006,20 +1364,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1046,20 +1411,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1086,20 +1458,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1126,20 +1505,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1166,20 +1552,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1202,6 +1595,315 @@ description: Artifact commands poopy-shoe.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1386,20 +2088,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1422,6 +2131,80 @@ description: Artifact commands poopy-shoe.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1727,20 +2510,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1767,20 +2557,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1807,20 +2604,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1847,20 +2651,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1887,20 +2698,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1923,6 +2741,33 @@ description: Artifact commands poopy-shoe.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1943,6 +2788,268 @@ description: Artifact commands poopy-shoe.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2179,20 +3286,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2219,20 +3333,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2255,6 +3376,33 @@ description: Artifact commands poopy-shoe.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2275,6 +3423,127 @@ description: Artifact commands poopy-shoe.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2444,20 +3713,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2480,6 +3756,33 @@ description: Artifact commands poopy-shoe.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2500,6 +3803,80 @@ description: Artifact commands poopy-shoe.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2669,20 +4046,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2705,6 +4089,33 @@ description: Artifact commands poopy-shoe.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2725,6 +4136,80 @@ description: Artifact commands poopy-shoe.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2927,20 +4412,27 @@ description: Artifact commands poopy-shoe.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -2963,6 +4455,33 @@ description: Artifact commands poopy-shoe.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2983,6 +4502,80 @@ description: Artifact commands poopy-shoe.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/poopy-shoe/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/poopy-shoe/artifact_graph_flowchart.snap.md
index 4554c2fa2..62f6b81ec 100644
--- a/rust/kcl-lib/tests/kcl_samples/poopy-shoe/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/poopy-shoe/artifact_graph_flowchart.snap.md
@@ -17,79 +17,79 @@ flowchart LR
15["Segment
[957, 964, 0]"]
16[Solid2d]
end
- subgraph path59 [Path]
- 59["Path
[1129, 1167, 0]"]
- 60["Segment
[1173, 1206, 0]"]
- 61["Segment
[1212, 1275, 0]"]
- 62["Segment
[1281, 1308, 0]"]
- 63["Segment
[1314, 1344, 0]"]
- 64["Segment
[1350, 1385, 0]"]
- 65["Segment
[1391, 1464, 0]"]
- 66["Segment
[1470, 1500, 0]"]
- 67["Segment
[1506, 1564, 0]"]
- 68["Segment
[1570, 1597, 0]"]
- 69["Segment
[1603, 1625, 0]"]
- 70["Segment
[1631, 1666, 0]"]
- 71["Segment
[1672, 1718, 0]"]
- 72["Segment
[1724, 1731, 0]"]
- 73[Solid2d]
+ subgraph path45 [Path]
+ 45["Path
[1129, 1167, 0]"]
+ 46["Segment
[1173, 1206, 0]"]
+ 47["Segment
[1212, 1275, 0]"]
+ 48["Segment
[1281, 1308, 0]"]
+ 49["Segment
[1314, 1344, 0]"]
+ 50["Segment
[1350, 1385, 0]"]
+ 51["Segment
[1391, 1464, 0]"]
+ 52["Segment
[1470, 1500, 0]"]
+ 53["Segment
[1506, 1564, 0]"]
+ 54["Segment
[1570, 1597, 0]"]
+ 55["Segment
[1603, 1625, 0]"]
+ 56["Segment
[1631, 1666, 0]"]
+ 57["Segment
[1672, 1718, 0]"]
+ 58["Segment
[1724, 1731, 0]"]
+ 59[Solid2d]
end
- subgraph path117 [Path]
- 117["Path
[1995, 2020, 0]"]
- 118["Segment
[2026, 2068, 0]"]
- 119["Segment
[2074, 2114, 0]"]
- 120["Segment
[2120, 2127, 0]"]
- 121[Solid2d]
+ subgraph path89 [Path]
+ 89["Path
[1995, 2020, 0]"]
+ 90["Segment
[2026, 2068, 0]"]
+ 91["Segment
[2074, 2114, 0]"]
+ 92["Segment
[2120, 2127, 0]"]
+ 93[Solid2d]
end
- subgraph path134 [Path]
- 134["Path
[2261, 2286, 0]"]
- 135["Segment
[2292, 2319, 0]"]
- 136["Segment
[2325, 2359, 0]"]
- 137["Segment
[2365, 2400, 0]"]
- 138["Segment
[2406, 2487, 0]"]
- 139["Segment
[2493, 2522, 0]"]
- 140["Segment
[2528, 2581, 0]"]
- 141["Segment
[2587, 2614, 0]"]
- 142["Segment
[2620, 2649, 0]"]
- 143["Segment
[2655, 2788, 0]"]
- 144["Segment
[2794, 2848, 0]"]
- 145["Segment
[2854, 2876, 0]"]
- 146["Segment
[2882, 2901, 0]"]
- 147[Solid2d]
+ subgraph path102 [Path]
+ 102["Path
[2261, 2286, 0]"]
+ 103["Segment
[2292, 2319, 0]"]
+ 104["Segment
[2325, 2359, 0]"]
+ 105["Segment
[2365, 2400, 0]"]
+ 106["Segment
[2406, 2487, 0]"]
+ 107["Segment
[2493, 2522, 0]"]
+ 108["Segment
[2528, 2581, 0]"]
+ 109["Segment
[2587, 2614, 0]"]
+ 110["Segment
[2620, 2649, 0]"]
+ 111["Segment
[2655, 2788, 0]"]
+ 112["Segment
[2794, 2848, 0]"]
+ 113["Segment
[2854, 2876, 0]"]
+ 114["Segment
[2882, 2901, 0]"]
+ 115[Solid2d]
end
- subgraph path188 [Path]
- 188["Path
[3161, 3186, 0]"]
- 189["Segment
[3192, 3219, 0]"]
- 190["Segment
[3225, 3257, 0]"]
- 191["Segment
[3263, 3403, 0]"]
- 192["Segment
[3409, 3464, 0]"]
- 193["Segment
[3470, 3506, 0]"]
- 194["Segment
[3512, 3519, 0]"]
- 195[Solid2d]
+ subgraph path143 [Path]
+ 143["Path
[3161, 3186, 0]"]
+ 144["Segment
[3192, 3219, 0]"]
+ 145["Segment
[3225, 3257, 0]"]
+ 146["Segment
[3263, 3403, 0]"]
+ 147["Segment
[3409, 3464, 0]"]
+ 148["Segment
[3470, 3506, 0]"]
+ 149["Segment
[3512, 3519, 0]"]
+ 150[Solid2d]
end
- subgraph path217 [Path]
- 217["Path
[3614, 3664, 0]"]
- 218["Segment
[3670, 3702, 0]"]
- 219["Segment
[3708, 3735, 0]"]
- 220["Segment
[3741, 3763, 0]"]
- 221["Segment
[3769, 3776, 0]"]
- 222[Solid2d]
+ subgraph path165 [Path]
+ 165["Path
[3614, 3664, 0]"]
+ 166["Segment
[3670, 3702, 0]"]
+ 167["Segment
[3708, 3735, 0]"]
+ 168["Segment
[3741, 3763, 0]"]
+ 169["Segment
[3769, 3776, 0]"]
+ 170[Solid2d]
end
- subgraph path238 [Path]
- 238["Path
[3869, 3894, 0]"]
- 239["Segment
[3900, 3934, 0]"]
- 240["Segment
[3940, 3967, 0]"]
- 241["Segment
[3973, 3995, 0]"]
- 242["Segment
[4001, 4008, 0]"]
- 243[Solid2d]
+ subgraph path181 [Path]
+ 181["Path
[3869, 3894, 0]"]
+ 182["Segment
[3900, 3934, 0]"]
+ 183["Segment
[3940, 3967, 0]"]
+ 184["Segment
[3973, 3995, 0]"]
+ 185["Segment
[4001, 4008, 0]"]
+ 186[Solid2d]
end
- subgraph path260 [Path]
- 260["Path
[4301, 4350, 0]"]
- 261["Segment
[4356, 4388, 0]"]
- 262["Segment
[4394, 4442, 0]"]
- 263["Segment
[4448, 4482, 0]"]
- 264["Segment
[4488, 4495, 0]"]
- 265[Solid2d]
+ subgraph path198 [Path]
+ 198["Path
[4301, 4350, 0]"]
+ 199["Segment
[4356, 4388, 0]"]
+ 200["Segment
[4394, 4442, 0]"]
+ 201["Segment
[4448, 4482, 0]"]
+ 202["Segment
[4488, 4495, 0]"]
+ 203[Solid2d]
end
1["Plane
[338, 356, 0]"]
17["Sweep Revolve
[975, 1091, 0]"]
@@ -108,197 +108,130 @@ flowchart LR
30[Wall]
31["Cap Start"]
32["SweepEdge Opposite"]
- 33["SweepEdge Adjacent"]
+ 33["SweepEdge Opposite"]
34["SweepEdge Opposite"]
- 35["SweepEdge Adjacent"]
+ 35["SweepEdge Opposite"]
36["SweepEdge Opposite"]
- 37["SweepEdge Adjacent"]
+ 37["SweepEdge Opposite"]
38["SweepEdge Opposite"]
- 39["SweepEdge Adjacent"]
+ 39["SweepEdge Opposite"]
40["SweepEdge Opposite"]
- 41["SweepEdge Adjacent"]
+ 41["SweepEdge Opposite"]
42["SweepEdge Opposite"]
- 43["SweepEdge Adjacent"]
- 44["SweepEdge Opposite"]
- 45["SweepEdge Adjacent"]
- 46["SweepEdge Opposite"]
- 47["SweepEdge Adjacent"]
- 48["SweepEdge Opposite"]
- 49["SweepEdge Adjacent"]
- 50["SweepEdge Opposite"]
- 51["SweepEdge Adjacent"]
- 52["SweepEdge Opposite"]
- 53["SweepEdge Adjacent"]
- 54["SweepEdge Opposite"]
- 55["SweepEdge Adjacent"]
- 56["SweepEdge Opposite"]
- 57["SweepEdge Adjacent"]
- 58["Plane
[1105, 1123, 0]"]
- 74["Sweep Extrusion
[1737, 1774, 0]"]
- 75[Wall]
- 76[Wall]
- 77[Wall]
- 78[Wall]
- 79[Wall]
- 80[Wall]
- 81[Wall]
- 82[Wall]
- 83[Wall]
- 84[Wall]
- 85[Wall]
- 86[Wall]
- 87[Wall]
- 88["Cap Start"]
- 89["Cap End"]
- 90["SweepEdge Opposite"]
- 91["SweepEdge Adjacent"]
- 92["SweepEdge Opposite"]
- 93["SweepEdge Adjacent"]
- 94["SweepEdge Opposite"]
- 95["SweepEdge Adjacent"]
- 96["SweepEdge Opposite"]
- 97["SweepEdge Adjacent"]
- 98["SweepEdge Opposite"]
- 99["SweepEdge Adjacent"]
+ 43["SweepEdge Opposite"]
+ 44["Plane
[1105, 1123, 0]"]
+ 60["Sweep Extrusion
[1737, 1774, 0]"]
+ 61[Wall]
+ 62[Wall]
+ 63[Wall]
+ 64[Wall]
+ 65[Wall]
+ 66[Wall]
+ 67[Wall]
+ 68[Wall]
+ 69[Wall]
+ 70[Wall]
+ 71[Wall]
+ 72[Wall]
+ 73[Wall]
+ 74["Cap Start"]
+ 75["Cap End"]
+ 76["SweepEdge Opposite"]
+ 77["SweepEdge Opposite"]
+ 78["SweepEdge Opposite"]
+ 79["SweepEdge Opposite"]
+ 80["SweepEdge Opposite"]
+ 81["SweepEdge Opposite"]
+ 82["SweepEdge Opposite"]
+ 83["SweepEdge Opposite"]
+ 84["SweepEdge Opposite"]
+ 85["SweepEdge Opposite"]
+ 86["SweepEdge Opposite"]
+ 87["SweepEdge Opposite"]
+ 88["Plane
[1963, 1989, 0]"]
+ 94["Sweep Extrusion
[2133, 2164, 0]"]
+ 95[Wall]
+ 96[Wall]
+ 97[Wall]
+ 98["Cap Start"]
+ 99["Cap End"]
100["SweepEdge Opposite"]
- 101["SweepEdge Adjacent"]
- 102["SweepEdge Opposite"]
- 103["SweepEdge Adjacent"]
- 104["SweepEdge Opposite"]
- 105["SweepEdge Adjacent"]
- 106["SweepEdge Opposite"]
- 107["SweepEdge Adjacent"]
- 108["SweepEdge Opposite"]
- 109["SweepEdge Adjacent"]
- 110["SweepEdge Opposite"]
- 111["SweepEdge Adjacent"]
- 112["SweepEdge Opposite"]
- 113["SweepEdge Adjacent"]
- 114["SweepEdge Opposite"]
- 115["SweepEdge Adjacent"]
- 116["Plane
[1963, 1989, 0]"]
- 122["Sweep Extrusion
[2133, 2164, 0]"]
+ 101["SweepEdge Opposite"]
+ 116["Sweep Extrusion
[2907, 2938, 0]"]
+ 117[Wall]
+ 118[Wall]
+ 119[Wall]
+ 120[Wall]
+ 121[Wall]
+ 122[Wall]
123[Wall]
124[Wall]
125[Wall]
- 126["Cap Start"]
- 127["Cap End"]
- 128["SweepEdge Opposite"]
- 129["SweepEdge Adjacent"]
- 130["SweepEdge Opposite"]
- 131["SweepEdge Adjacent"]
+ 126[Wall]
+ 127[Wall]
+ 128[Wall]
+ 129["Cap Start"]
+ 130["Cap End"]
+ 131["SweepEdge Opposite"]
132["SweepEdge Opposite"]
- 133["SweepEdge Adjacent"]
- 148["Sweep Extrusion
[2907, 2938, 0]"]
- 149[Wall]
- 150[Wall]
- 151[Wall]
+ 133["SweepEdge Opposite"]
+ 134["SweepEdge Opposite"]
+ 135["SweepEdge Opposite"]
+ 136["SweepEdge Opposite"]
+ 137["SweepEdge Opposite"]
+ 138["SweepEdge Opposite"]
+ 139["SweepEdge Opposite"]
+ 140["SweepEdge Opposite"]
+ 141["SweepEdge Opposite"]
+ 142["Plane
[3128, 3155, 0]"]
+ 151["Sweep Extrusion
[3525, 3556, 0]"]
152[Wall]
153[Wall]
154[Wall]
155[Wall]
156[Wall]
157[Wall]
- 158[Wall]
- 159[Wall]
- 160[Wall]
- 161["Cap Start"]
- 162["Cap End"]
+ 158["Cap Start"]
+ 159["Cap End"]
+ 160["SweepEdge Opposite"]
+ 161["SweepEdge Opposite"]
+ 162["SweepEdge Opposite"]
163["SweepEdge Opposite"]
- 164["SweepEdge Adjacent"]
- 165["SweepEdge Opposite"]
- 166["SweepEdge Adjacent"]
- 167["SweepEdge Opposite"]
- 168["SweepEdge Adjacent"]
- 169["SweepEdge Opposite"]
- 170["SweepEdge Adjacent"]
- 171["SweepEdge Opposite"]
- 172["SweepEdge Adjacent"]
- 173["SweepEdge Opposite"]
- 174["SweepEdge Adjacent"]
- 175["SweepEdge Opposite"]
- 176["SweepEdge Adjacent"]
- 177["SweepEdge Opposite"]
- 178["SweepEdge Adjacent"]
+ 164["SweepEdge Opposite"]
+ 171["Sweep Extrusion
[3782, 3813, 0]"]
+ 172[Wall]
+ 173[Wall]
+ 174[Wall]
+ 175[Wall]
+ 176["Cap Start"]
+ 177["Cap End"]
+ 178["SweepEdge Opposite"]
179["SweepEdge Opposite"]
- 180["SweepEdge Adjacent"]
- 181["SweepEdge Opposite"]
- 182["SweepEdge Adjacent"]
- 183["SweepEdge Opposite"]
- 184["SweepEdge Adjacent"]
- 185["SweepEdge Opposite"]
- 186["SweepEdge Adjacent"]
- 187["Plane
[3128, 3155, 0]"]
- 196["Sweep Extrusion
[3525, 3556, 0]"]
- 197[Wall]
- 198[Wall]
- 199[Wall]
- 200[Wall]
- 201[Wall]
- 202[Wall]
- 203["Cap Start"]
- 204["Cap End"]
- 205["SweepEdge Opposite"]
- 206["SweepEdge Adjacent"]
- 207["SweepEdge Opposite"]
- 208["SweepEdge Adjacent"]
- 209["SweepEdge Opposite"]
- 210["SweepEdge Adjacent"]
+ 180["SweepEdge Opposite"]
+ 187["Sweep Extrusion
[4014, 4064, 0]"]
+ 188[Wall]
+ 189[Wall]
+ 190[Wall]
+ 191[Wall]
+ 192["Cap Start"]
+ 193["Cap End"]
+ 194["SweepEdge Opposite"]
+ 195["SweepEdge Opposite"]
+ 196["SweepEdge Opposite"]
+ 197["Plane
[4268, 4295, 0]"]
+ 204["Sweep Extrusion
[4501, 4533, 0]"]
+ 205[Wall]
+ 206[Wall]
+ 207[Wall]
+ 208[Wall]
+ 209["Cap Start"]
+ 210["Cap End"]
211["SweepEdge Opposite"]
- 212["SweepEdge Adjacent"]
+ 212["SweepEdge Opposite"]
213["SweepEdge Opposite"]
- 214["SweepEdge Adjacent"]
- 215["SweepEdge Opposite"]
- 216["SweepEdge Adjacent"]
- 223["Sweep Extrusion
[3782, 3813, 0]"]
- 224[Wall]
- 225[Wall]
- 226[Wall]
- 227[Wall]
- 228["Cap Start"]
- 229["Cap End"]
- 230["SweepEdge Opposite"]
- 231["SweepEdge Adjacent"]
- 232["SweepEdge Opposite"]
- 233["SweepEdge Adjacent"]
- 234["SweepEdge Opposite"]
- 235["SweepEdge Adjacent"]
- 236["SweepEdge Opposite"]
- 237["SweepEdge Adjacent"]
- 244["Sweep Extrusion
[4014, 4064, 0]"]
- 245[Wall]
- 246[Wall]
- 247[Wall]
- 248[Wall]
- 249["Cap Start"]
- 250["Cap End"]
- 251["SweepEdge Opposite"]
- 252["SweepEdge Adjacent"]
- 253["SweepEdge Opposite"]
- 254["SweepEdge Adjacent"]
- 255["SweepEdge Opposite"]
- 256["SweepEdge Adjacent"]
- 257["SweepEdge Opposite"]
- 258["SweepEdge Adjacent"]
- 259["Plane
[4268, 4295, 0]"]
- 266["Sweep Extrusion
[4501, 4533, 0]"]
- 267[Wall]
- 268[Wall]
- 269[Wall]
- 270[Wall]
- 271["Cap Start"]
- 272["Cap End"]
- 273["SweepEdge Opposite"]
- 274["SweepEdge Adjacent"]
- 275["SweepEdge Opposite"]
- 276["SweepEdge Adjacent"]
- 277["SweepEdge Opposite"]
- 278["SweepEdge Adjacent"]
- 279["SweepEdge Opposite"]
- 280["SweepEdge Adjacent"]
- 281["StartSketchOnFace
[2219, 2255, 0]"]
- 282["StartSketchOnFace
[3570, 3608, 0]"]
- 283["StartSketchOnFace
[3827, 3863, 0]"]
+ 214["StartSketchOnFace
[2219, 2255, 0]"]
+ 215["StartSketchOnFace
[3570, 3608, 0]"]
+ 216["StartSketchOnFace
[3827, 3863, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -316,44 +249,43 @@ flowchart LR
2 ---- 17
2 --- 16
3 --- 18
- 3 --- 32
- 3 --- 33
+ 3 x--> 31
4 --- 19
- 4 --- 34
- 4 --- 35
+ 4 --- 32
+ 4 x--> 31
5 --- 20
- 5 --- 36
- 5 --- 37
+ 5 --- 33
+ 5 x--> 31
6 --- 21
- 6 --- 38
- 6 --- 39
+ 6 --- 34
+ 6 x--> 31
7 --- 22
- 7 --- 40
- 7 --- 41
+ 7 --- 35
+ 7 x--> 31
8 --- 23
- 8 --- 42
- 8 --- 43
+ 8 --- 36
+ 8 x--> 31
9 --- 24
- 9 --- 44
- 9 --- 45
+ 9 --- 37
+ 9 x--> 31
10 --- 25
- 10 --- 46
- 10 --- 47
+ 10 --- 38
+ 10 x--> 31
11 --- 26
- 11 --- 48
- 11 --- 49
+ 11 --- 39
+ 11 x--> 31
12 --- 27
- 12 --- 50
- 12 --- 51
+ 12 --- 40
+ 12 x--> 31
13 --- 28
- 13 --- 52
- 13 --- 53
+ 13 --- 41
+ 13 x--> 31
14 --- 29
- 14 --- 54
- 14 --- 55
+ 14 --- 42
+ 14 x--> 31
15 --- 30
- 15 --- 56
- 15 --- 57
+ 15 --- 43
+ 15 x--> 31
17 --- 18
17 --- 19
17 --- 20
@@ -380,378 +312,394 @@ flowchart LR
17 --- 41
17 --- 42
17 --- 43
- 17 --- 44
- 17 --- 45
- 17 --- 46
- 17 --- 47
- 17 --- 48
- 17 --- 49
- 17 --- 50
- 17 --- 51
- 17 --- 52
- 17 --- 53
- 17 --- 54
- 17 --- 55
- 17 --- 56
- 17 --- 57
- 58 --- 59
- 59 --- 60
- 59 --- 61
- 59 --- 62
- 59 --- 63
- 59 --- 64
- 59 --- 65
- 59 --- 66
- 59 --- 67
- 59 --- 68
- 59 --- 69
- 59 --- 70
- 59 --- 71
- 59 --- 72
- 59 ---- 74
- 59 --- 73
+ 32 <--x 19
+ 33 <--x 20
+ 34 <--x 21
+ 35 <--x 22
+ 36 <--x 23
+ 37 <--x 24
+ 38 <--x 25
+ 39 <--x 26
+ 40 <--x 27
+ 41 <--x 28
+ 42 <--x 29
+ 43 <--x 30
+ 44 --- 45
+ 45 --- 46
+ 45 --- 47
+ 45 --- 48
+ 45 --- 49
+ 45 --- 50
+ 45 --- 51
+ 45 --- 52
+ 45 --- 53
+ 45 --- 54
+ 45 --- 55
+ 45 --- 56
+ 45 --- 57
+ 45 --- 58
+ 45 ---- 60
+ 45 --- 59
+ 46 --- 61
+ 46 x--> 74
+ 47 --- 62
+ 47 --- 76
+ 47 x--> 74
+ 48 --- 63
+ 48 --- 77
+ 48 x--> 74
+ 49 --- 64
+ 49 --- 78
+ 49 x--> 74
+ 50 --- 65
+ 50 --- 79
+ 50 x--> 74
+ 51 --- 66
+ 51 --- 80
+ 51 x--> 74
+ 52 --- 67
+ 52 --- 81
+ 52 x--> 74
+ 53 --- 68
+ 53 --- 82
+ 53 x--> 74
+ 54 --- 69
+ 54 --- 83
+ 54 x--> 74
+ 55 --- 70
+ 55 --- 84
+ 55 x--> 74
+ 56 --- 71
+ 56 --- 85
+ 56 x--> 74
+ 57 --- 72
+ 57 --- 86
+ 57 x--> 74
+ 58 --- 73
+ 58 --- 87
+ 58 x--> 74
+ 60 --- 61
+ 60 --- 62
+ 60 --- 63
+ 60 --- 64
+ 60 --- 65
+ 60 --- 66
+ 60 --- 67
+ 60 --- 68
+ 60 --- 69
+ 60 --- 70
+ 60 --- 71
+ 60 --- 72
+ 60 --- 73
+ 60 --- 74
60 --- 75
- 60 --- 90
- 60 --- 91
- 61 --- 76
- 61 --- 92
- 61 --- 93
- 62 --- 77
- 62 --- 94
- 62 --- 95
- 63 --- 78
- 63 --- 96
- 63 --- 97
- 64 --- 79
- 64 --- 98
- 64 --- 99
- 65 --- 80
- 65 --- 100
- 65 --- 101
- 66 --- 81
- 66 --- 102
- 66 --- 103
- 67 --- 82
- 67 --- 104
- 67 --- 105
- 68 --- 83
- 68 --- 106
- 68 --- 107
- 69 --- 84
- 69 --- 108
- 69 --- 109
- 70 --- 85
- 70 --- 110
- 70 --- 111
- 71 --- 86
- 71 --- 112
- 71 --- 113
- 72 --- 87
- 72 --- 114
- 72 --- 115
- 74 --- 75
- 74 --- 76
- 74 --- 77
- 74 --- 78
- 74 --- 79
- 74 --- 80
- 74 --- 81
- 74 --- 82
- 74 --- 83
- 74 --- 84
- 74 --- 85
- 74 --- 86
- 74 --- 87
- 74 --- 88
- 74 --- 89
- 74 --- 90
- 74 --- 91
- 74 --- 92
- 74 --- 93
- 74 --- 94
- 74 --- 95
- 74 --- 96
- 74 --- 97
- 74 --- 98
- 74 --- 99
- 74 --- 100
- 74 --- 101
- 74 --- 102
- 74 --- 103
- 74 --- 104
- 74 --- 105
- 74 --- 106
- 74 --- 107
- 74 --- 108
- 74 --- 109
- 74 --- 110
- 74 --- 111
- 74 --- 112
- 74 --- 113
- 74 --- 114
- 74 --- 115
- 89 --- 134
+ 60 --- 76
+ 60 --- 77
+ 60 --- 78
+ 60 --- 79
+ 60 --- 80
+ 60 --- 81
+ 60 --- 82
+ 60 --- 83
+ 60 --- 84
+ 60 --- 85
+ 60 --- 86
+ 60 --- 87
+ 75 --- 102
+ 76 <--x 62
+ 76 <--x 75
+ 77 <--x 63
+ 77 <--x 75
+ 78 <--x 64
+ 78 <--x 75
+ 79 <--x 65
+ 79 <--x 75
+ 80 <--x 66
+ 80 <--x 75
+ 81 <--x 67
+ 81 <--x 75
+ 82 <--x 68
+ 82 <--x 75
+ 83 <--x 69
+ 83 <--x 75
+ 84 <--x 70
+ 84 <--x 75
+ 85 <--x 71
+ 85 <--x 75
+ 86 <--x 72
+ 86 <--x 75
+ 87 <--x 73
+ 87 <--x 75
+ 88 --- 89
+ 89 --- 90
+ 89 --- 91
+ 89 --- 92
+ 89 ---- 94
+ 89 --- 93
+ 90 --- 97
+ 90 --- 101
+ 90 x--> 98
+ 91 --- 96
+ 91 --- 100
+ 91 x--> 98
+ 92 --- 95
+ 92 x--> 98
+ 94 --- 95
+ 94 --- 96
+ 94 --- 97
+ 94 --- 98
+ 94 --- 99
+ 94 --- 100
+ 94 --- 101
+ 100 <--x 96
+ 100 <--x 99
+ 101 <--x 97
+ 101 <--x 99
+ 102 --- 103
+ 102 --- 104
+ 102 --- 105
+ 102 --- 106
+ 102 --- 107
+ 102 --- 108
+ 102 --- 109
+ 102 --- 110
+ 102 --- 111
+ 102 --- 112
+ 102 --- 113
+ 102 --- 114
+ 102 ---- 116
+ 102 --- 115
+ 103 --- 128
+ 103 --- 141
+ 103 x--> 129
+ 104 --- 127
+ 104 --- 140
+ 104 x--> 129
+ 105 --- 126
+ 105 --- 139
+ 105 x--> 129
+ 106 --- 125
+ 106 --- 138
+ 106 x--> 129
+ 107 --- 124
+ 107 --- 137
+ 107 x--> 129
+ 108 --- 123
+ 108 --- 136
+ 108 x--> 129
+ 109 --- 122
+ 109 --- 135
+ 109 x--> 129
+ 110 --- 121
+ 110 --- 134
+ 110 x--> 129
+ 111 --- 120
+ 111 --- 133
+ 111 x--> 129
+ 112 --- 119
+ 112 --- 132
+ 112 x--> 129
+ 113 --- 118
+ 113 --- 131
+ 113 x--> 129
+ 114 --- 117
+ 114 x--> 129
116 --- 117
- 117 --- 118
- 117 --- 119
- 117 --- 120
- 117 ---- 122
- 117 --- 121
- 118 --- 125
- 118 --- 132
- 118 --- 133
- 119 --- 124
- 119 --- 130
- 119 --- 131
- 120 --- 123
- 120 --- 128
- 120 --- 129
- 122 --- 123
- 122 --- 124
- 122 --- 125
- 122 --- 126
- 122 --- 127
- 122 --- 128
- 122 --- 129
- 122 --- 130
- 122 --- 131
- 122 --- 132
- 122 --- 133
- 134 --- 135
- 134 --- 136
- 134 --- 137
- 134 --- 138
- 134 --- 139
- 134 --- 140
- 134 --- 141
- 134 --- 142
- 134 --- 143
- 134 --- 144
- 134 --- 145
- 134 --- 146
- 134 ---- 148
- 134 --- 147
- 135 --- 160
- 135 --- 185
- 135 --- 186
- 136 --- 159
- 136 --- 183
- 136 --- 184
- 137 --- 158
- 137 --- 181
- 137 --- 182
- 138 --- 157
- 138 --- 179
- 138 --- 180
- 139 --- 156
- 139 --- 177
- 139 --- 178
- 140 --- 155
- 140 --- 175
- 140 --- 176
- 141 --- 154
- 141 --- 173
- 141 --- 174
- 142 --- 153
- 142 --- 171
- 142 --- 172
- 143 --- 152
- 143 --- 169
- 143 --- 170
- 144 --- 151
- 144 --- 167
- 144 --- 168
- 145 --- 150
- 145 --- 165
- 145 --- 166
- 146 --- 149
- 146 --- 163
- 146 --- 164
- 148 --- 149
- 148 --- 150
- 148 --- 151
- 148 --- 152
- 148 --- 153
- 148 --- 154
- 148 --- 155
+ 116 --- 118
+ 116 --- 119
+ 116 --- 120
+ 116 --- 121
+ 116 --- 122
+ 116 --- 123
+ 116 --- 124
+ 116 --- 125
+ 116 --- 126
+ 116 --- 127
+ 116 --- 128
+ 116 --- 129
+ 116 --- 130
+ 116 --- 131
+ 116 --- 132
+ 116 --- 133
+ 116 --- 134
+ 116 --- 135
+ 116 --- 136
+ 116 --- 137
+ 116 --- 138
+ 116 --- 139
+ 116 --- 140
+ 116 --- 141
+ 130 --- 181
+ 131 <--x 118
+ 131 <--x 130
+ 132 <--x 119
+ 132 <--x 130
+ 133 <--x 120
+ 133 <--x 130
+ 134 <--x 121
+ 134 <--x 130
+ 135 <--x 122
+ 135 <--x 130
+ 136 <--x 123
+ 136 <--x 130
+ 137 <--x 124
+ 137 <--x 130
+ 138 <--x 125
+ 138 <--x 130
+ 139 <--x 126
+ 139 <--x 130
+ 140 <--x 127
+ 140 <--x 130
+ 141 <--x 128
+ 141 <--x 130
+ 142 --- 143
+ 143 --- 144
+ 143 --- 145
+ 143 --- 146
+ 143 --- 147
+ 143 --- 148
+ 143 --- 149
+ 143 ---- 151
+ 143 --- 150
+ 144 --- 152
+ 144 x--> 158
+ 145 --- 153
+ 145 --- 160
+ 145 x--> 158
+ 146 --- 154
+ 146 --- 161
+ 146 x--> 158
+ 147 --- 155
+ 147 --- 162
+ 147 x--> 158
148 --- 156
- 148 --- 157
- 148 --- 158
- 148 --- 159
- 148 --- 160
- 148 --- 161
- 148 --- 162
148 --- 163
- 148 --- 164
- 148 --- 165
- 148 --- 166
- 148 --- 167
- 148 --- 168
- 148 --- 169
- 148 --- 170
- 148 --- 171
- 148 --- 172
- 148 --- 173
- 148 --- 174
- 148 --- 175
- 148 --- 176
- 148 --- 177
- 148 --- 178
- 148 --- 179
- 148 --- 180
- 148 --- 181
- 148 --- 182
- 148 --- 183
- 148 --- 184
- 148 --- 185
- 148 --- 186
- 162 --- 238
+ 148 x--> 158
+ 149 --- 157
+ 149 --- 164
+ 149 x--> 158
+ 151 --- 152
+ 151 --- 153
+ 151 --- 154
+ 151 --- 155
+ 151 --- 156
+ 151 --- 157
+ 151 --- 158
+ 151 --- 159
+ 151 --- 160
+ 151 --- 161
+ 151 --- 162
+ 151 --- 163
+ 151 --- 164
+ 156 --- 165
+ 160 <--x 153
+ 160 <--x 159
+ 161 <--x 154
+ 161 <--x 159
+ 162 <--x 155
+ 162 <--x 159
+ 163 <--x 156
+ 163 <--x 159
+ 164 <--x 157
+ 164 <--x 159
+ 165 --- 166
+ 165 --- 167
+ 165 --- 168
+ 165 --- 169
+ 165 ---- 171
+ 165 --- 170
+ 166 --- 172
+ 166 x--> 176
+ 167 --- 173
+ 167 --- 178
+ 167 x--> 176
+ 168 --- 174
+ 168 --- 179
+ 168 x--> 176
+ 169 --- 175
+ 169 --- 180
+ 169 x--> 176
+ 171 --- 172
+ 171 --- 173
+ 171 --- 174
+ 171 --- 175
+ 171 --- 176
+ 171 --- 177
+ 171 --- 178
+ 171 --- 179
+ 171 --- 180
+ 178 <--x 173
+ 178 <--x 177
+ 179 <--x 174
+ 179 <--x 177
+ 180 <--x 175
+ 180 <--x 177
+ 181 --- 182
+ 181 --- 183
+ 181 --- 184
+ 181 --- 185
+ 181 ---- 187
+ 181 --- 186
+ 182 --- 188
+ 182 x--> 192
+ 183 --- 189
+ 183 --- 194
+ 183 x--> 192
+ 184 --- 190
+ 184 --- 195
+ 184 x--> 192
+ 185 --- 191
+ 185 --- 196
+ 185 x--> 192
187 --- 188
- 188 --- 189
- 188 --- 190
- 188 --- 191
- 188 --- 192
- 188 --- 193
- 188 --- 194
- 188 ---- 196
- 188 --- 195
- 189 --- 197
- 189 --- 205
- 189 --- 206
- 190 --- 198
- 190 --- 207
- 190 --- 208
- 191 --- 199
- 191 --- 209
- 191 --- 210
- 192 --- 200
- 192 --- 211
- 192 --- 212
- 193 --- 201
- 193 --- 213
- 193 --- 214
- 194 --- 202
- 194 --- 215
- 194 --- 216
- 196 --- 197
- 196 --- 198
- 196 --- 199
- 196 --- 200
- 196 --- 201
- 196 --- 202
- 196 --- 203
- 196 --- 204
- 196 --- 205
- 196 --- 206
- 196 --- 207
- 196 --- 208
- 196 --- 209
- 196 --- 210
- 196 --- 211
- 196 --- 212
- 196 --- 213
- 196 --- 214
- 196 --- 215
- 196 --- 216
- 201 --- 217
- 217 --- 218
- 217 --- 219
- 217 --- 220
- 217 --- 221
- 217 ---- 223
- 217 --- 222
- 218 --- 224
- 218 --- 230
- 218 --- 231
- 219 --- 225
- 219 --- 232
- 219 --- 233
- 220 --- 226
- 220 --- 234
- 220 --- 235
- 221 --- 227
- 221 --- 236
- 221 --- 237
- 223 --- 224
- 223 --- 225
- 223 --- 226
- 223 --- 227
- 223 --- 228
- 223 --- 229
- 223 --- 230
- 223 --- 231
- 223 --- 232
- 223 --- 233
- 223 --- 234
- 223 --- 235
- 223 --- 236
- 223 --- 237
- 238 --- 239
- 238 --- 240
- 238 --- 241
- 238 --- 242
- 238 ---- 244
- 238 --- 243
- 239 --- 245
- 239 --- 251
- 239 --- 252
- 240 --- 246
- 240 --- 253
- 240 --- 254
- 241 --- 247
- 241 --- 255
- 241 --- 256
- 242 --- 248
- 242 --- 257
- 242 --- 258
- 244 --- 245
- 244 --- 246
- 244 --- 247
- 244 --- 248
- 244 --- 249
- 244 --- 250
- 244 --- 251
- 244 --- 252
- 244 --- 253
- 244 --- 254
- 244 --- 255
- 244 --- 256
- 244 --- 257
- 244 --- 258
- 259 --- 260
- 260 --- 261
- 260 --- 262
- 260 --- 263
- 260 --- 264
- 260 ---- 266
- 260 --- 265
- 261 --- 267
- 261 --- 273
- 261 --- 274
- 262 --- 268
- 262 --- 275
- 262 --- 276
- 263 --- 269
- 263 --- 277
- 263 --- 278
- 264 --- 270
- 264 --- 279
- 264 --- 280
- 266 --- 267
- 266 --- 268
- 266 --- 269
- 266 --- 270
- 266 --- 271
- 266 --- 272
- 266 --- 273
- 266 --- 274
- 266 --- 275
- 266 --- 276
- 266 --- 277
- 266 --- 278
- 266 --- 279
- 266 --- 280
- 89 <--x 281
- 201 <--x 282
- 162 <--x 283
+ 187 --- 189
+ 187 --- 190
+ 187 --- 191
+ 187 --- 192
+ 187 --- 193
+ 187 --- 194
+ 187 --- 195
+ 187 --- 196
+ 194 <--x 189
+ 194 <--x 193
+ 195 <--x 190
+ 195 <--x 193
+ 196 <--x 191
+ 196 <--x 193
+ 197 --- 198
+ 198 --- 199
+ 198 --- 200
+ 198 --- 201
+ 198 --- 202
+ 198 ---- 204
+ 198 --- 203
+ 199 --- 205
+ 199 x--> 210
+ 200 --- 206
+ 200 --- 211
+ 200 x--> 210
+ 201 --- 207
+ 201 --- 212
+ 201 x--> 210
+ 202 --- 208
+ 202 --- 213
+ 202 x--> 210
+ 204 --- 205
+ 204 --- 206
+ 204 --- 207
+ 204 --- 208
+ 204 --- 209
+ 204 --- 210
+ 204 --- 211
+ 204 --- 212
+ 204 --- 213
+ 211 <--x 206
+ 211 <--x 209
+ 212 <--x 207
+ 212 <--x 209
+ 213 <--x 208
+ 213 <--x 209
+ 75 <--x 214
+ 156 <--x 215
+ 130 <--x 216
```
diff --git a/rust/kcl-lib/tests/kcl_samples/router-template-cross-bar/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/router-template-cross-bar/artifact_commands.snap
index 076ac10f4..852f8764b 100644
--- a/rust/kcl-lib/tests/kcl_samples/router-template-cross-bar/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/router-template-cross-bar/artifact_commands.snap
@@ -536,20 +536,27 @@ description: Artifact commands router-template-cross-bar.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -576,20 +583,27 @@ description: Artifact commands router-template-cross-bar.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -616,20 +630,27 @@ description: Artifact commands router-template-cross-bar.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -656,20 +677,27 @@ description: Artifact commands router-template-cross-bar.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -696,20 +724,27 @@ description: Artifact commands router-template-cross-bar.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -736,20 +771,27 @@ description: Artifact commands router-template-cross-bar.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -776,20 +818,27 @@ description: Artifact commands router-template-cross-bar.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -816,20 +865,27 @@ description: Artifact commands router-template-cross-bar.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -856,20 +912,27 @@ description: Artifact commands router-template-cross-bar.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -892,6 +955,456 @@ description: Artifact commands router-template-cross-bar.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1078,20 +1591,27 @@ description: Artifact commands router-template-cross-bar.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1114,6 +1634,33 @@ description: Artifact commands router-template-cross-bar.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1134,6 +1681,80 @@ description: Artifact commands router-template-cross-bar.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1320,20 +1941,27 @@ description: Artifact commands router-template-cross-bar.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1356,6 +1984,33 @@ description: Artifact commands router-template-cross-bar.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1376,6 +2031,80 @@ description: Artifact commands router-template-cross-bar.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1562,20 +2291,27 @@ description: Artifact commands router-template-cross-bar.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1598,6 +2334,33 @@ description: Artifact commands router-template-cross-bar.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1617,5 +2380,79 @@ description: Artifact commands router-template-cross-bar.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/kcl_samples/router-template-cross-bar/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/router-template-cross-bar/artifact_graph_flowchart.snap.md
index eec94c025..202c4cddb 100644
--- a/rust/kcl-lib/tests/kcl_samples/router-template-cross-bar/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/router-template-cross-bar/artifact_graph_flowchart.snap.md
@@ -25,32 +25,32 @@ flowchart LR
23["Segment
[1703, 1710, 0]"]
24[Solid2d]
end
- subgraph path85 [Path]
- 85["Path
[1870, 1914, 0]"]
- 86["Segment
[1920, 2000, 0]"]
- 87["Segment
[2006, 2116, 0]"]
- 88["Segment
[2122, 2239, 0]"]
- 89["Segment
[2245, 2301, 0]"]
- 90["Segment
[2307, 2314, 0]"]
- 91[Solid2d]
+ subgraph path65 [Path]
+ 65["Path
[1870, 1914, 0]"]
+ 66["Segment
[1920, 2000, 0]"]
+ 67["Segment
[2006, 2116, 0]"]
+ 68["Segment
[2122, 2239, 0]"]
+ 69["Segment
[2245, 2301, 0]"]
+ 70["Segment
[2307, 2314, 0]"]
+ 71[Solid2d]
end
- subgraph path107 [Path]
- 107["Path
[2475, 2520, 0]"]
- 108["Segment
[2526, 2604, 0]"]
- 109["Segment
[2610, 2720, 0]"]
- 110["Segment
[2726, 2843, 0]"]
- 111["Segment
[2849, 2905, 0]"]
- 112["Segment
[2911, 2918, 0]"]
- 113[Solid2d]
+ subgraph path82 [Path]
+ 82["Path
[2475, 2520, 0]"]
+ 83["Segment
[2526, 2604, 0]"]
+ 84["Segment
[2610, 2720, 0]"]
+ 85["Segment
[2726, 2843, 0]"]
+ 86["Segment
[2849, 2905, 0]"]
+ 87["Segment
[2911, 2918, 0]"]
+ 88[Solid2d]
end
- subgraph path129 [Path]
- 129["Path
[3077, 3122, 0]"]
- 130["Segment
[3128, 3213, 0]"]
- 131["Segment
[3219, 3329, 0]"]
- 132["Segment
[3335, 3452, 0]"]
- 133["Segment
[3458, 3514, 0]"]
- 134["Segment
[3520, 3527, 0]"]
- 135[Solid2d]
+ subgraph path99 [Path]
+ 99["Path
[3077, 3122, 0]"]
+ 100["Segment
[3128, 3213, 0]"]
+ 101["Segment
[3219, 3329, 0]"]
+ 102["Segment
[3335, 3452, 0]"]
+ 103["Segment
[3458, 3514, 0]"]
+ 104["Segment
[3520, 3527, 0]"]
+ 105[Solid2d]
end
1["Plane
[515, 532, 0]"]
25["Sweep Extrusion
[1753, 1783, 0]"]
@@ -76,91 +76,56 @@ flowchart LR
45["Cap Start"]
46["Cap End"]
47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
+ 48["SweepEdge Opposite"]
49["SweepEdge Opposite"]
- 50["SweepEdge Adjacent"]
+ 50["SweepEdge Opposite"]
51["SweepEdge Opposite"]
- 52["SweepEdge Adjacent"]
+ 52["SweepEdge Opposite"]
53["SweepEdge Opposite"]
- 54["SweepEdge Adjacent"]
+ 54["SweepEdge Opposite"]
55["SweepEdge Opposite"]
- 56["SweepEdge Adjacent"]
+ 56["SweepEdge Opposite"]
57["SweepEdge Opposite"]
- 58["SweepEdge Adjacent"]
+ 58["SweepEdge Opposite"]
59["SweepEdge Opposite"]
- 60["SweepEdge Adjacent"]
+ 60["SweepEdge Opposite"]
61["SweepEdge Opposite"]
- 62["SweepEdge Adjacent"]
+ 62["SweepEdge Opposite"]
63["SweepEdge Opposite"]
- 64["SweepEdge Adjacent"]
- 65["SweepEdge Opposite"]
- 66["SweepEdge Adjacent"]
- 67["SweepEdge Opposite"]
- 68["SweepEdge Adjacent"]
- 69["SweepEdge Opposite"]
- 70["SweepEdge Adjacent"]
- 71["SweepEdge Opposite"]
- 72["SweepEdge Adjacent"]
- 73["SweepEdge Opposite"]
- 74["SweepEdge Adjacent"]
- 75["SweepEdge Opposite"]
- 76["SweepEdge Adjacent"]
- 77["SweepEdge Opposite"]
- 78["SweepEdge Adjacent"]
+ 64["SweepEdge Opposite"]
+ 72["Sweep Extrusion
[2358, 2389, 0]"]
+ 73[Wall]
+ 74[Wall]
+ 75[Wall]
+ 76[Wall]
+ 77["Cap Start"]
+ 78["Cap End"]
79["SweepEdge Opposite"]
- 80["SweepEdge Adjacent"]
+ 80["SweepEdge Opposite"]
81["SweepEdge Opposite"]
- 82["SweepEdge Adjacent"]
- 83["SweepEdge Opposite"]
- 84["SweepEdge Adjacent"]
- 92["Sweep Extrusion
[2358, 2389, 0]"]
+ 89["Sweep Extrusion
[2961, 2992, 0]"]
+ 90[Wall]
+ 91[Wall]
+ 92[Wall]
93[Wall]
- 94[Wall]
- 95[Wall]
- 96[Wall]
- 97["Cap Start"]
- 98["Cap End"]
- 99["SweepEdge Opposite"]
- 100["SweepEdge Adjacent"]
- 101["SweepEdge Opposite"]
- 102["SweepEdge Adjacent"]
- 103["SweepEdge Opposite"]
- 104["SweepEdge Adjacent"]
- 105["SweepEdge Opposite"]
- 106["SweepEdge Adjacent"]
- 114["Sweep Extrusion
[2961, 2992, 0]"]
- 115[Wall]
- 116[Wall]
- 117[Wall]
- 118[Wall]
- 119["Cap Start"]
- 120["Cap End"]
- 121["SweepEdge Opposite"]
- 122["SweepEdge Adjacent"]
- 123["SweepEdge Opposite"]
- 124["SweepEdge Adjacent"]
- 125["SweepEdge Opposite"]
- 126["SweepEdge Adjacent"]
- 127["SweepEdge Opposite"]
- 128["SweepEdge Adjacent"]
- 136["Sweep Extrusion
[3571, 3601, 0]"]
- 137[Wall]
- 138[Wall]
- 139[Wall]
- 140[Wall]
- 141["Cap Start"]
- 142["Cap End"]
- 143["SweepEdge Opposite"]
- 144["SweepEdge Adjacent"]
- 145["SweepEdge Opposite"]
- 146["SweepEdge Adjacent"]
- 147["SweepEdge Opposite"]
- 148["SweepEdge Adjacent"]
- 149["SweepEdge Opposite"]
- 150["SweepEdge Adjacent"]
- 151["StartSketchOnFace
[1825, 1864, 0]"]
- 152["StartSketchOnFace
[2430, 2469, 0]"]
- 153["StartSketchOnFace
[3034, 3071, 0]"]
+ 94["Cap Start"]
+ 95["Cap End"]
+ 96["SweepEdge Opposite"]
+ 97["SweepEdge Opposite"]
+ 98["SweepEdge Opposite"]
+ 106["Sweep Extrusion
[3571, 3601, 0]"]
+ 107[Wall]
+ 108[Wall]
+ 109[Wall]
+ 110[Wall]
+ 111["Cap Start"]
+ 112["Cap End"]
+ 113["SweepEdge Opposite"]
+ 114["SweepEdge Opposite"]
+ 115["SweepEdge Opposite"]
+ 116["StartSketchOnFace
[1825, 1864, 0]"]
+ 117["StartSketchOnFace
[2430, 2469, 0]"]
+ 118["StartSketchOnFace
[3034, 3071, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -186,62 +151,61 @@ flowchart LR
2 ---- 25
2 --- 24
3 --- 26
- 3 --- 47
- 3 --- 48
+ 3 x--> 45
4 --- 27
- 4 --- 49
- 4 --- 50
+ 4 --- 47
+ 4 x--> 45
5 --- 28
- 5 --- 51
- 5 --- 52
+ 5 --- 48
+ 5 x--> 45
6 --- 29
- 6 --- 53
- 6 --- 54
+ 6 --- 49
+ 6 x--> 45
7 --- 30
- 7 --- 55
- 7 --- 56
+ 7 --- 50
+ 7 x--> 45
8 --- 31
- 8 --- 57
- 8 --- 58
+ 8 --- 51
+ 8 x--> 45
9 --- 32
- 9 --- 59
- 9 --- 60
+ 9 --- 52
+ 9 x--> 45
10 --- 33
- 10 --- 61
- 10 --- 62
+ 10 --- 53
+ 10 x--> 45
11 --- 34
- 11 --- 63
- 11 --- 64
+ 11 --- 54
+ 11 x--> 45
12 --- 35
- 12 --- 65
- 12 --- 66
+ 12 --- 55
+ 12 x--> 45
14 --- 36
- 14 --- 67
- 14 --- 68
+ 14 --- 56
+ 14 x--> 45
15 --- 37
- 15 --- 69
- 15 --- 70
+ 15 --- 57
+ 15 x--> 45
16 --- 38
- 16 --- 71
- 16 --- 72
+ 16 --- 58
+ 16 x--> 45
17 --- 39
- 17 --- 73
- 17 --- 74
+ 17 --- 59
+ 17 x--> 45
18 --- 40
- 18 --- 75
- 18 --- 76
+ 18 --- 60
+ 18 x--> 45
19 --- 41
- 19 --- 77
- 19 --- 78
+ 19 --- 61
+ 19 x--> 45
20 --- 42
- 20 --- 79
- 20 --- 80
+ 20 --- 62
+ 20 x--> 45
21 --- 43
- 21 --- 81
- 21 --- 82
+ 21 --- 63
+ 21 x--> 45
22 --- 44
- 22 --- 83
- 22 --- 84
+ 22 --- 64
+ 22 x--> 45
25 --- 26
25 --- 27
25 --- 28
@@ -281,129 +245,145 @@ flowchart LR
25 --- 62
25 --- 63
25 --- 64
- 25 --- 65
- 25 --- 66
- 25 --- 67
- 25 --- 68
- 25 --- 69
- 25 --- 70
- 25 --- 71
- 25 --- 72
- 25 --- 73
- 25 --- 74
- 25 --- 75
- 25 --- 76
- 25 --- 77
- 25 --- 78
- 25 --- 79
- 25 --- 80
- 25 --- 81
- 25 --- 82
- 25 --- 83
- 25 --- 84
- 45 --- 85
- 45 --- 107
- 85 --- 86
- 85 --- 87
- 85 --- 88
- 85 --- 89
- 85 --- 90
- 85 ---- 92
+ 45 --- 65
+ 45 --- 82
+ 47 <--x 27
+ 47 <--x 46
+ 48 <--x 28
+ 48 <--x 46
+ 49 <--x 29
+ 49 <--x 46
+ 50 <--x 30
+ 50 <--x 46
+ 51 <--x 31
+ 51 <--x 46
+ 52 <--x 32
+ 52 <--x 46
+ 53 <--x 33
+ 53 <--x 46
+ 54 <--x 34
+ 54 <--x 46
+ 55 <--x 35
+ 55 <--x 46
+ 56 <--x 36
+ 56 <--x 46
+ 57 <--x 37
+ 57 <--x 46
+ 58 <--x 38
+ 58 <--x 46
+ 59 <--x 39
+ 59 <--x 46
+ 60 <--x 40
+ 60 <--x 46
+ 61 <--x 41
+ 61 <--x 46
+ 62 <--x 42
+ 62 <--x 46
+ 63 <--x 43
+ 63 <--x 46
+ 64 <--x 44
+ 64 <--x 46
+ 65 --- 66
+ 65 --- 67
+ 65 --- 68
+ 65 --- 69
+ 65 --- 70
+ 65 ---- 72
+ 65 --- 71
+ 66 --- 73
+ 66 x--> 77
+ 67 --- 74
+ 67 --- 79
+ 67 x--> 77
+ 68 --- 75
+ 68 --- 80
+ 68 x--> 77
+ 69 --- 76
+ 69 --- 81
+ 69 x--> 77
+ 72 --- 73
+ 72 --- 74
+ 72 --- 75
+ 72 --- 76
+ 72 --- 77
+ 72 --- 78
+ 72 --- 79
+ 72 --- 80
+ 72 --- 81
+ 78 --- 99
+ 79 <--x 74
+ 79 <--x 78
+ 80 <--x 75
+ 80 <--x 78
+ 81 <--x 76
+ 81 <--x 78
+ 82 --- 83
+ 82 --- 84
+ 82 --- 85
+ 82 --- 86
+ 82 --- 87
+ 82 ---- 89
+ 82 --- 88
+ 83 --- 93
+ 83 --- 98
+ 83 x--> 94
+ 84 --- 92
+ 84 --- 97
+ 84 x--> 94
85 --- 91
- 86 --- 93
- 86 --- 99
- 86 --- 100
- 87 --- 94
- 87 --- 101
- 87 --- 102
- 88 --- 95
- 88 --- 103
- 88 --- 104
+ 85 --- 96
+ 85 x--> 94
+ 86 --- 90
+ 86 x--> 94
+ 89 --- 90
+ 89 --- 91
+ 89 --- 92
+ 89 --- 93
+ 89 --- 94
+ 89 --- 95
89 --- 96
- 89 --- 105
- 89 --- 106
- 92 --- 93
- 92 --- 94
- 92 --- 95
- 92 --- 96
- 92 --- 97
- 92 --- 98
- 92 --- 99
- 92 --- 100
- 92 --- 101
- 92 --- 102
- 92 --- 103
- 92 --- 104
- 92 --- 105
- 92 --- 106
- 98 --- 129
- 107 --- 108
- 107 --- 109
- 107 --- 110
- 107 --- 111
- 107 --- 112
- 107 ---- 114
- 107 --- 113
- 108 --- 118
- 108 --- 127
- 108 --- 128
- 109 --- 117
- 109 --- 125
- 109 --- 126
- 110 --- 116
- 110 --- 123
- 110 --- 124
- 111 --- 115
- 111 --- 121
- 111 --- 122
- 114 --- 115
- 114 --- 116
- 114 --- 117
- 114 --- 118
- 114 --- 119
- 114 --- 120
- 114 --- 121
- 114 --- 122
- 114 --- 123
- 114 --- 124
- 114 --- 125
- 114 --- 126
- 114 --- 127
- 114 --- 128
- 129 --- 130
- 129 --- 131
- 129 --- 132
- 129 --- 133
- 129 --- 134
- 129 ---- 136
- 129 --- 135
- 130 --- 140
- 130 --- 149
- 130 --- 150
- 131 --- 139
- 131 --- 147
- 131 --- 148
- 132 --- 138
- 132 --- 145
- 132 --- 146
- 133 --- 137
- 133 --- 143
- 133 --- 144
- 136 --- 137
- 136 --- 138
- 136 --- 139
- 136 --- 140
- 136 --- 141
- 136 --- 142
- 136 --- 143
- 136 --- 144
- 136 --- 145
- 136 --- 146
- 136 --- 147
- 136 --- 148
- 136 --- 149
- 136 --- 150
- 45 <--x 151
- 45 <--x 152
- 98 <--x 153
+ 89 --- 97
+ 89 --- 98
+ 96 <--x 91
+ 96 <--x 95
+ 97 <--x 92
+ 97 <--x 95
+ 98 <--x 93
+ 98 <--x 95
+ 99 --- 100
+ 99 --- 101
+ 99 --- 102
+ 99 --- 103
+ 99 --- 104
+ 99 ---- 106
+ 99 --- 105
+ 100 --- 110
+ 100 --- 115
+ 100 x--> 111
+ 101 --- 109
+ 101 --- 114
+ 101 x--> 111
+ 102 --- 108
+ 102 --- 113
+ 102 x--> 111
+ 103 --- 107
+ 103 x--> 111
+ 106 --- 107
+ 106 --- 108
+ 106 --- 109
+ 106 --- 110
+ 106 --- 111
+ 106 --- 112
+ 106 --- 113
+ 106 --- 114
+ 106 --- 115
+ 113 <--x 108
+ 113 <--x 112
+ 114 <--x 109
+ 114 <--x 112
+ 115 <--x 110
+ 115 <--x 112
+ 45 <--x 116
+ 45 <--x 117
+ 78 <--x 118
```
diff --git a/rust/kcl-lib/tests/kcl_samples/router-template-slate/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/router-template-slate/artifact_commands.snap
index 2d8707d20..c7f2e6d92 100644
--- a/rust/kcl-lib/tests/kcl_samples/router-template-slate/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/router-template-slate/artifact_commands.snap
@@ -400,20 +400,27 @@ description: Artifact commands router-template-slate.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -440,20 +447,27 @@ description: Artifact commands router-template-slate.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -480,20 +494,27 @@ description: Artifact commands router-template-slate.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -520,20 +541,27 @@ description: Artifact commands router-template-slate.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -560,20 +588,27 @@ description: Artifact commands router-template-slate.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -596,6 +631,268 @@ description: Artifact commands router-template-slate.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -782,20 +1079,27 @@ description: Artifact commands router-template-slate.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -818,6 +1122,33 @@ description: Artifact commands router-template-slate.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -838,6 +1169,80 @@ description: Artifact commands router-template-slate.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1024,20 +1429,27 @@ description: Artifact commands router-template-slate.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1060,6 +1472,33 @@ description: Artifact commands router-template-slate.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1079,5 +1518,79 @@ description: Artifact commands router-template-slate.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/kcl_samples/router-template-slate/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/router-template-slate/artifact_graph_flowchart.snap.md
index 29f3941f1..5e37ddafe 100644
--- a/rust/kcl-lib/tests/kcl_samples/router-template-slate/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/router-template-slate/artifact_graph_flowchart.snap.md
@@ -17,23 +17,23 @@ flowchart LR
15["Segment
[1257, 1264, 0]"]
16[Solid2d]
end
- subgraph path52 [Path]
- 52["Path
[1424, 1524, 0]"]
- 53["Segment
[1530, 1577, 0]"]
- 54["Segment
[1583, 1695, 0]"]
- 55["Segment
[1701, 1818, 0]"]
- 56["Segment
[1824, 1880, 0]"]
- 57["Segment
[1886, 1893, 0]"]
- 58[Solid2d]
+ subgraph path41 [Path]
+ 41["Path
[1424, 1524, 0]"]
+ 42["Segment
[1530, 1577, 0]"]
+ 43["Segment
[1583, 1695, 0]"]
+ 44["Segment
[1701, 1818, 0]"]
+ 45["Segment
[1824, 1880, 0]"]
+ 46["Segment
[1886, 1893, 0]"]
+ 47[Solid2d]
end
- subgraph path74 [Path]
- 74["Path
[2055, 2154, 0]"]
- 75["Segment
[2160, 2206, 0]"]
- 76["Segment
[2212, 2295, 0]"]
- 77["Segment
[2301, 2389, 0]"]
- 78["Segment
[2395, 2451, 0]"]
- 79["Segment
[2457, 2464, 0]"]
- 80[Solid2d]
+ subgraph path58 [Path]
+ 58["Path
[2055, 2154, 0]"]
+ 59["Segment
[2160, 2206, 0]"]
+ 60["Segment
[2212, 2295, 0]"]
+ 61["Segment
[2301, 2389, 0]"]
+ 62["Segment
[2395, 2451, 0]"]
+ 63["Segment
[2457, 2464, 0]"]
+ 64[Solid2d]
end
1["Plane
[514, 531, 0]"]
17["Sweep Extrusion
[1307, 1337, 0]"]
@@ -51,58 +51,37 @@ flowchart LR
29["Cap Start"]
30["Cap End"]
31["SweepEdge Opposite"]
- 32["SweepEdge Adjacent"]
+ 32["SweepEdge Opposite"]
33["SweepEdge Opposite"]
- 34["SweepEdge Adjacent"]
+ 34["SweepEdge Opposite"]
35["SweepEdge Opposite"]
- 36["SweepEdge Adjacent"]
+ 36["SweepEdge Opposite"]
37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
+ 38["SweepEdge Opposite"]
39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 41["SweepEdge Opposite"]
- 42["SweepEdge Adjacent"]
- 43["SweepEdge Opposite"]
- 44["SweepEdge Adjacent"]
- 45["SweepEdge Opposite"]
- 46["SweepEdge Adjacent"]
- 47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
- 49["SweepEdge Opposite"]
- 50["SweepEdge Adjacent"]
- 51["SweepEdge Opposite"]
- 59["Sweep Extrusion
[1937, 1969, 0]"]
- 60[Wall]
- 61[Wall]
- 62[Wall]
- 63[Wall]
- 64["Cap Start"]
- 65["Cap End"]
- 66["SweepEdge Opposite"]
- 67["SweepEdge Adjacent"]
- 68["SweepEdge Opposite"]
- 69["SweepEdge Adjacent"]
- 70["SweepEdge Opposite"]
- 71["SweepEdge Adjacent"]
+ 40["SweepEdge Opposite"]
+ 48["Sweep Extrusion
[1937, 1969, 0]"]
+ 49[Wall]
+ 50[Wall]
+ 51[Wall]
+ 52[Wall]
+ 53["Cap Start"]
+ 54["Cap End"]
+ 55["SweepEdge Opposite"]
+ 56["SweepEdge Opposite"]
+ 57["SweepEdge Opposite"]
+ 65["Sweep Extrusion
[2507, 2539, 0]"]
+ 66[Wall]
+ 67[Wall]
+ 68[Wall]
+ 69[Wall]
+ 70["Cap Start"]
+ 71["Cap End"]
72["SweepEdge Opposite"]
- 73["SweepEdge Adjacent"]
- 81["Sweep Extrusion
[2507, 2539, 0]"]
- 82[Wall]
- 83[Wall]
- 84[Wall]
- 85[Wall]
- 86["Cap Start"]
- 87["Cap End"]
- 88["SweepEdge Opposite"]
- 89["SweepEdge Adjacent"]
- 90["SweepEdge Opposite"]
- 91["SweepEdge Adjacent"]
- 92["SweepEdge Opposite"]
- 93["SweepEdge Adjacent"]
- 94["SweepEdge Opposite"]
- 95["SweepEdge Adjacent"]
- 96["StartSketchOnFace
[1379, 1418, 0]"]
- 97["StartSketchOnFace
[2010, 2049, 0]"]
+ 73["SweepEdge Opposite"]
+ 74["SweepEdge Opposite"]
+ 75["StartSketchOnFace
[1379, 1418, 0]"]
+ 76["StartSketchOnFace
[2010, 2049, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -120,38 +99,37 @@ flowchart LR
2 ---- 17
2 --- 16
3 --- 28
- 3 --- 51
- 3 --- 32
+ 3 --- 40
+ 3 x--> 29
4 --- 27
- 4 --- 49
- 4 --- 50
+ 4 --- 39
+ 4 x--> 29
5 --- 26
- 5 --- 47
- 5 --- 48
+ 5 --- 38
+ 5 x--> 29
6 --- 25
- 6 --- 45
- 6 --- 46
+ 6 --- 37
+ 6 x--> 29
7 --- 24
- 7 --- 43
- 7 --- 44
+ 7 --- 36
+ 7 x--> 29
9 --- 23
- 9 --- 41
- 9 --- 42
+ 9 --- 35
+ 9 x--> 29
10 --- 22
- 10 --- 39
- 10 --- 40
+ 10 --- 34
+ 10 x--> 29
11 --- 21
- 11 --- 37
- 11 --- 38
+ 11 --- 33
+ 11 x--> 29
12 --- 20
- 12 --- 35
- 12 --- 36
+ 12 --- 32
+ 12 x--> 29
13 --- 19
- 13 --- 33
- 13 --- 34
+ 13 --- 31
+ 13 x--> 29
14 --- 18
- 14 --- 31
- 14 x--> 32
+ 14 x--> 29
17 --- 18
17 --- 19
17 --- 20
@@ -175,85 +153,94 @@ flowchart LR
17 --- 38
17 --- 39
17 --- 40
- 17 --- 41
- 17 --- 42
- 17 --- 43
- 17 --- 44
- 17 --- 45
- 17 --- 46
- 17 --- 47
- 17 --- 48
- 17 --- 49
- 17 --- 50
- 17 --- 51
- 29 --- 52
- 29 --- 74
- 52 --- 53
- 52 --- 54
- 52 --- 55
- 52 --- 56
- 52 --- 57
- 52 ---- 59
- 52 --- 58
- 53 --- 60
- 53 --- 66
- 53 --- 67
- 54 --- 61
- 54 --- 68
- 54 --- 69
- 55 --- 62
- 55 --- 70
- 55 --- 71
- 56 --- 63
- 56 --- 72
- 56 --- 73
- 59 --- 60
- 59 --- 61
- 59 --- 62
- 59 --- 63
- 59 --- 64
- 59 --- 65
- 59 --- 66
- 59 --- 67
- 59 --- 68
+ 29 --- 41
+ 29 --- 58
+ 31 <--x 19
+ 31 <--x 30
+ 32 <--x 20
+ 32 <--x 30
+ 33 <--x 21
+ 33 <--x 30
+ 34 <--x 22
+ 34 <--x 30
+ 35 <--x 23
+ 35 <--x 30
+ 36 <--x 24
+ 36 <--x 30
+ 37 <--x 25
+ 37 <--x 30
+ 38 <--x 26
+ 38 <--x 30
+ 39 <--x 27
+ 39 <--x 30
+ 40 <--x 28
+ 40 <--x 30
+ 41 --- 42
+ 41 --- 43
+ 41 --- 44
+ 41 --- 45
+ 41 --- 46
+ 41 ---- 48
+ 41 --- 47
+ 42 --- 49
+ 42 x--> 53
+ 43 --- 50
+ 43 --- 55
+ 43 x--> 53
+ 44 --- 51
+ 44 --- 56
+ 44 x--> 53
+ 45 --- 52
+ 45 --- 57
+ 45 x--> 53
+ 48 --- 49
+ 48 --- 50
+ 48 --- 51
+ 48 --- 52
+ 48 --- 53
+ 48 --- 54
+ 48 --- 55
+ 48 --- 56
+ 48 --- 57
+ 55 <--x 50
+ 55 <--x 54
+ 56 <--x 51
+ 56 <--x 54
+ 57 <--x 52
+ 57 <--x 54
+ 58 --- 59
+ 58 --- 60
+ 58 --- 61
+ 58 --- 62
+ 58 --- 63
+ 58 ---- 65
+ 58 --- 64
59 --- 69
- 59 --- 70
- 59 --- 71
- 59 --- 72
- 59 --- 73
- 74 --- 75
- 74 --- 76
- 74 --- 77
- 74 --- 78
- 74 --- 79
- 74 ---- 81
- 74 --- 80
- 75 --- 85
- 75 --- 94
- 75 --- 95
- 76 --- 84
- 76 --- 92
- 76 --- 93
- 77 --- 83
- 77 --- 90
- 77 --- 91
- 78 --- 82
- 78 --- 88
- 78 --- 89
- 81 --- 82
- 81 --- 83
- 81 --- 84
- 81 --- 85
- 81 --- 86
- 81 --- 87
- 81 --- 88
- 81 --- 89
- 81 --- 90
- 81 --- 91
- 81 --- 92
- 81 --- 93
- 81 --- 94
- 81 --- 95
- 29 <--x 96
- 29 <--x 97
+ 59 --- 74
+ 59 x--> 70
+ 60 --- 68
+ 60 --- 73
+ 60 x--> 70
+ 61 --- 67
+ 61 --- 72
+ 61 x--> 70
+ 62 --- 66
+ 62 x--> 70
+ 65 --- 66
+ 65 --- 67
+ 65 --- 68
+ 65 --- 69
+ 65 --- 70
+ 65 --- 71
+ 65 --- 72
+ 65 --- 73
+ 65 --- 74
+ 72 <--x 67
+ 72 <--x 71
+ 73 <--x 68
+ 73 <--x 71
+ 74 <--x 69
+ 74 <--x 71
+ 29 <--x 75
+ 29 <--x 76
```
diff --git a/rust/kcl-lib/tests/kcl_samples/sheet-metal-bracket/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/sheet-metal-bracket/artifact_commands.snap
index 4416312f0..6e3b44aa4 100644
--- a/rust/kcl-lib/tests/kcl_samples/sheet-metal-bracket/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/sheet-metal-bracket/artifact_commands.snap
@@ -546,20 +546,27 @@ description: Artifact commands sheet-metal-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -586,20 +593,27 @@ description: Artifact commands sheet-metal-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -626,20 +640,27 @@ description: Artifact commands sheet-metal-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -666,20 +687,27 @@ description: Artifact commands sheet-metal-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -706,20 +734,27 @@ description: Artifact commands sheet-metal-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -746,20 +781,27 @@ description: Artifact commands sheet-metal-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -786,20 +828,27 @@ description: Artifact commands sheet-metal-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -826,20 +875,27 @@ description: Artifact commands sheet-metal-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -866,20 +922,27 @@ description: Artifact commands sheet-metal-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -902,6 +965,33 @@ description: Artifact commands sheet-metal-bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -922,6 +1012,456 @@ description: Artifact commands sheet-metal-bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1169,6 +1709,33 @@ description: Artifact commands sheet-metal-bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1236,6 +1803,33 @@ description: Artifact commands sheet-metal-bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1415,6 +2009,33 @@ description: Artifact commands sheet-metal-bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1482,6 +2103,33 @@ description: Artifact commands sheet-metal-bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1745,45 +2393,7 @@ description: Artifact commands sheet-metal-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -3.175,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -1792,20 +2402,18 @@ description: Artifact commands sheet-metal-bracket.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -1875,6 +2483,33 @@ description: Artifact commands sheet-metal-bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1942,6 +2577,127 @@ description: Artifact commands sheet-metal-bracket.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -3.175,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -2080,5 +2836,32 @@ description: Artifact commands sheet-metal-bracket.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/kcl_samples/sheet-metal-bracket/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/sheet-metal-bracket/artifact_graph_flowchart.snap.md
index 6dee8ebb1..0e4ae0751 100644
--- a/rust/kcl-lib/tests/kcl_samples/sheet-metal-bracket/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/sheet-metal-bracket/artifact_graph_flowchart.snap.md
@@ -27,25 +27,25 @@ flowchart LR
25["Segment
[2574, 2581, 0]"]
26[Solid2d]
end
- subgraph path94 [Path]
- 94["Path
[2920, 3009, 0]"]
- 95["Segment
[2920, 3009, 0]"]
- 96[Solid2d]
+ subgraph path73 [Path]
+ 73["Path
[2920, 3009, 0]"]
+ 74["Segment
[2920, 3009, 0]"]
+ 75[Solid2d]
end
- subgraph path102 [Path]
- 102["Path
[3291, 3379, 0]"]
- 103["Segment
[3291, 3379, 0]"]
- 104[Solid2d]
+ subgraph path79 [Path]
+ 79["Path
[3291, 3379, 0]"]
+ 80["Segment
[3291, 3379, 0]"]
+ 81[Solid2d]
end
- subgraph path110 [Path]
- 110["Path
[3668, 3848, 0]"]
- 111["Segment
[3668, 3848, 0]"]
- 112[Solid2d]
+ subgraph path85 [Path]
+ 85["Path
[3668, 3848, 0]"]
+ 86["Segment
[3668, 3848, 0]"]
+ 87[Solid2d]
end
- subgraph path120 [Path]
- 120["Path
[4271, 4327, 0]"]
- 121["Segment
[4271, 4327, 0]"]
- 122[Solid2d]
+ subgraph path93 [Path]
+ 93["Path
[4271, 4327, 0]"]
+ 94["Segment
[4271, 4327, 0]"]
+ 95[Solid2d]
end
1["Plane
[1205, 1222, 0]"]
27["Sweep Extrusion
[2587, 2620, 0]"]
@@ -72,74 +72,45 @@ flowchart LR
48["Cap Start"]
49["Cap End"]
50["SweepEdge Opposite"]
- 51["SweepEdge Adjacent"]
+ 51["SweepEdge Opposite"]
52["SweepEdge Opposite"]
- 53["SweepEdge Adjacent"]
+ 53["SweepEdge Opposite"]
54["SweepEdge Opposite"]
- 55["SweepEdge Adjacent"]
+ 55["SweepEdge Opposite"]
56["SweepEdge Opposite"]
- 57["SweepEdge Adjacent"]
+ 57["SweepEdge Opposite"]
58["SweepEdge Opposite"]
- 59["SweepEdge Adjacent"]
+ 59["SweepEdge Opposite"]
60["SweepEdge Opposite"]
- 61["SweepEdge Adjacent"]
+ 61["SweepEdge Opposite"]
62["SweepEdge Opposite"]
- 63["SweepEdge Adjacent"]
+ 63["SweepEdge Opposite"]
64["SweepEdge Opposite"]
- 65["SweepEdge Adjacent"]
+ 65["SweepEdge Opposite"]
66["SweepEdge Opposite"]
- 67["SweepEdge Adjacent"]
+ 67["SweepEdge Opposite"]
68["SweepEdge Opposite"]
- 69["SweepEdge Adjacent"]
- 70["SweepEdge Opposite"]
- 71["SweepEdge Adjacent"]
- 72["SweepEdge Opposite"]
- 73["SweepEdge Adjacent"]
- 74["SweepEdge Opposite"]
- 75["SweepEdge Adjacent"]
- 76["SweepEdge Opposite"]
- 77["SweepEdge Adjacent"]
- 78["SweepEdge Opposite"]
- 79["SweepEdge Adjacent"]
- 80["SweepEdge Opposite"]
- 81["SweepEdge Adjacent"]
- 82["SweepEdge Opposite"]
- 83["SweepEdge Adjacent"]
- 84["SweepEdge Opposite"]
- 85["SweepEdge Adjacent"]
- 86["SweepEdge Opposite"]
- 87["SweepEdge Adjacent"]
- 88["SweepEdge Opposite"]
- 89["SweepEdge Adjacent"]
- 90["EdgeCut Fillet
[2626, 2797, 0]"]
- 91["EdgeCut Fillet
[2626, 2797, 0]"]
- 92["EdgeCut Fillet
[2626, 2797, 0]"]
- 93["EdgeCut Fillet
[2626, 2797, 0]"]
- 97["Sweep Extrusion
[3138, 3166, 0]"]
- 98[Wall]
- 99["SweepEdge Opposite"]
- 100["SweepEdge Adjacent"]
- 101["Sweep Extrusion
[3138, 3166, 0]"]
- 105["Sweep Extrusion
[3508, 3536, 0]"]
- 106[Wall]
- 107["SweepEdge Opposite"]
- 108["SweepEdge Adjacent"]
- 109["Sweep Extrusion
[3508, 3536, 0]"]
- 113["Sweep Extrusion
[4102, 4130, 0]"]
- 114[Wall]
- 115["SweepEdge Opposite"]
- 116["SweepEdge Adjacent"]
- 117["Sweep Extrusion
[4102, 4130, 0]"]
- 118["Sweep Extrusion
[4102, 4130, 0]"]
- 119["Sweep Extrusion
[4102, 4130, 0]"]
- 123["Sweep Extrusion
[4333, 4361, 0]"]
- 124[Wall]
- 125["SweepEdge Opposite"]
- 126["SweepEdge Adjacent"]
- 127["StartSketchOnFace
[2871, 2914, 0]"]
- 128["StartSketchOnFace
[3242, 3285, 0]"]
- 129["StartSketchOnFace
[3619, 3662, 0]"]
- 130["StartSketchOnFace
[4222, 4265, 0]"]
+ 69["EdgeCut Fillet
[2626, 2797, 0]"]
+ 70["EdgeCut Fillet
[2626, 2797, 0]"]
+ 71["EdgeCut Fillet
[2626, 2797, 0]"]
+ 72["EdgeCut Fillet
[2626, 2797, 0]"]
+ 76["Sweep Extrusion
[3138, 3166, 0]"]
+ 77[Wall]
+ 78["Sweep Extrusion
[3138, 3166, 0]"]
+ 82["Sweep Extrusion
[3508, 3536, 0]"]
+ 83[Wall]
+ 84["Sweep Extrusion
[3508, 3536, 0]"]
+ 88["Sweep Extrusion
[4102, 4130, 0]"]
+ 89[Wall]
+ 90["Sweep Extrusion
[4102, 4130, 0]"]
+ 91["Sweep Extrusion
[4102, 4130, 0]"]
+ 92["Sweep Extrusion
[4102, 4130, 0]"]
+ 96["Sweep Extrusion
[4333, 4361, 0]"]
+ 97[Wall]
+ 98["StartSketchOnFace
[2871, 2914, 0]"]
+ 99["StartSketchOnFace
[3242, 3285, 0]"]
+ 100["StartSketchOnFace
[3619, 3662, 0]"]
+ 101["StartSketchOnFace
[4222, 4265, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -167,67 +138,66 @@ flowchart LR
2 ---- 27
2 --- 26
3 --- 28
- 3 --- 50
- 3 --- 51
+ 3 x--> 48
4 --- 29
- 4 --- 52
- 4 --- 53
+ 4 --- 50
+ 4 x--> 48
5 --- 30
- 5 --- 54
- 5 --- 55
+ 5 --- 51
+ 5 x--> 48
6 --- 31
- 6 --- 56
- 6 --- 57
+ 6 --- 52
+ 6 x--> 48
7 --- 32
- 7 --- 58
- 7 --- 59
+ 7 --- 53
+ 7 x--> 48
9 --- 33
- 9 --- 60
- 9 --- 61
+ 9 --- 54
+ 9 x--> 48
10 --- 34
- 10 --- 62
- 10 --- 63
+ 10 --- 55
+ 10 x--> 48
11 --- 35
- 11 --- 64
- 11 --- 65
+ 11 --- 56
+ 11 x--> 48
12 --- 36
- 12 --- 66
- 12 --- 67
+ 12 --- 57
+ 12 x--> 48
13 --- 37
- 13 --- 68
+ 13 --- 58
13 --- 69
- 13 --- 90
+ 13 x--> 48
14 --- 38
- 14 --- 70
- 14 --- 71
+ 14 --- 59
+ 14 x--> 48
15 --- 39
- 15 --- 72
- 15 --- 73
+ 15 --- 60
+ 15 x--> 48
16 --- 40
- 16 --- 74
- 16 --- 75
+ 16 --- 61
+ 16 x--> 48
17 --- 41
- 17 --- 76
- 17 --- 77
+ 17 --- 62
+ 17 x--> 48
18 --- 42
- 18 --- 78
- 18 --- 79
+ 18 --- 63
+ 18 x--> 48
20 --- 43
- 20 --- 80
- 20 --- 81
+ 20 --- 64
+ 20 x--> 48
21 --- 44
- 21 --- 82
- 21 --- 83
+ 21 --- 65
+ 21 x--> 48
22 --- 45
- 22 --- 84
- 22 --- 85
+ 22 --- 66
+ 22 x--> 48
23 --- 46
- 23 --- 86
- 23 --- 87
+ 23 --- 67
+ 23 x--> 48
24 --- 47
- 24 --- 88
- 24 --- 89
- 24 --- 92
+ 24 --- 68
+ 24 --- 71
+ 24 x--> 48
27 --- 28
27 --- 29
27 --- 30
@@ -269,71 +239,74 @@ flowchart LR
27 --- 66
27 --- 67
27 --- 68
- 27 --- 69
- 27 --- 70
- 27 --- 71
- 27 --- 72
- 27 --- 73
- 27 --- 74
- 27 --- 75
- 27 --- 76
- 27 --- 77
- 27 --- 78
- 27 --- 79
- 27 --- 80
- 27 --- 81
- 27 --- 82
- 27 --- 83
- 27 --- 84
- 27 --- 85
- 27 --- 86
- 27 --- 87
- 27 --- 88
- 27 --- 89
- 38 --- 94
- 42 --- 110
- 42 --- 120
- 46 --- 102
- 68 <--x 91
- 88 <--x 93
- 94 --- 95
- 94 ---- 97
- 94 --- 96
- 95 --- 98
- 95 --- 99
- 95 --- 100
- 97 --- 98
- 97 --- 99
- 97 --- 100
- 102 --- 103
- 102 ---- 105
- 102 --- 104
- 103 --- 106
- 103 --- 107
- 103 --- 108
- 105 --- 106
- 105 --- 107
- 105 --- 108
- 110 --- 111
- 110 ---- 113
- 110 --- 112
- 111 --- 114
- 111 --- 115
- 111 --- 116
- 113 --- 114
- 113 --- 115
- 113 --- 116
- 120 --- 121
- 120 ---- 123
- 120 --- 122
- 121 --- 124
- 121 --- 125
- 121 --- 126
- 123 --- 124
- 123 --- 125
- 123 --- 126
- 38 <--x 127
- 46 <--x 128
- 42 <--x 129
- 42 <--x 130
+ 38 --- 73
+ 42 --- 85
+ 42 --- 93
+ 46 --- 79
+ 50 <--x 29
+ 50 <--x 49
+ 51 <--x 30
+ 51 <--x 49
+ 52 <--x 31
+ 52 <--x 49
+ 53 <--x 32
+ 53 <--x 49
+ 54 <--x 33
+ 54 <--x 49
+ 55 <--x 34
+ 55 <--x 49
+ 56 <--x 35
+ 56 <--x 49
+ 57 <--x 36
+ 57 <--x 49
+ 59 <--x 38
+ 59 <--x 49
+ 60 <--x 39
+ 60 <--x 49
+ 61 <--x 40
+ 61 <--x 49
+ 62 <--x 41
+ 62 <--x 49
+ 63 <--x 42
+ 63 <--x 49
+ 64 <--x 43
+ 64 <--x 49
+ 65 <--x 44
+ 65 <--x 49
+ 66 <--x 45
+ 66 <--x 49
+ 67 <--x 46
+ 67 <--x 49
+ 68 <--x 47
+ 68 <--x 49
+ 58 <--x 70
+ 68 <--x 72
+ 73 --- 74
+ 73 ---- 76
+ 73 --- 75
+ 74 --- 77
+ 74 <--x 38
+ 76 --- 77
+ 79 --- 80
+ 79 ---- 82
+ 79 --- 81
+ 80 --- 83
+ 80 <--x 46
+ 82 --- 83
+ 85 --- 86
+ 85 ---- 88
+ 85 --- 87
+ 86 --- 89
+ 86 <--x 42
+ 88 --- 89
+ 93 --- 94
+ 93 ---- 96
+ 93 --- 95
+ 94 --- 97
+ 94 <--x 42
+ 96 --- 97
+ 38 <--x 98
+ 46 <--x 99
+ 42 <--x 100
+ 42 <--x 101
```
diff --git a/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/artifact_commands.snap
index f93f21ff9..a2591a52c 100644
--- a/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/artifact_commands.snap
@@ -201,6 +201,33 @@ description: Artifact commands socket-head-cap-screw.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -438,20 +465,27 @@ description: Artifact commands socket-head-cap-screw.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -478,20 +512,27 @@ description: Artifact commands socket-head-cap-screw.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -514,6 +555,33 @@ description: Artifact commands socket-head-cap-screw.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -534,6 +602,127 @@ description: Artifact commands socket-head-cap-screw.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -673,6 +862,33 @@ description: Artifact commands socket-head-cap-screw.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/artifact_graph_flowchart.snap.md
index 467383cf8..37a7c9789 100644
--- a/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/socket-head-cap-screw/artifact_graph_flowchart.snap.md
@@ -5,20 +5,20 @@ flowchart LR
3["Segment
[673, 743, 0]"]
4[Solid2d]
end
- subgraph path13 [Path]
- 13["Path
[976, 1057, 0]"]
- 14["Segment
[1063, 1114, 0]"]
- 15["Segment
[1120, 1171, 0]"]
- 16["Segment
[1177, 1228, 0]"]
- 17["Segment
[1234, 1284, 0]"]
- 18["Segment
[1290, 1340, 0]"]
- 19["Segment
[1346, 1353, 0]"]
- 20[Solid2d]
+ subgraph path12 [Path]
+ 12["Path
[976, 1057, 0]"]
+ 13["Segment
[1063, 1114, 0]"]
+ 14["Segment
[1120, 1171, 0]"]
+ 15["Segment
[1177, 1228, 0]"]
+ 16["Segment
[1234, 1284, 0]"]
+ 17["Segment
[1290, 1340, 0]"]
+ 18["Segment
[1346, 1353, 0]"]
+ 19[Solid2d]
end
- subgraph path41 [Path]
- 41["Path
[1452, 1521, 0]"]
- 42["Segment
[1452, 1521, 0]"]
- 43[Solid2d]
+ subgraph path33 [Path]
+ 33["Path
[1452, 1521, 0]"]
+ 34["Segment
[1452, 1521, 0]"]
+ 35[Solid2d]
end
1["Plane
[650, 667, 0]"]
5["Sweep Extrusion
[749, 782, 0]"]
@@ -26,37 +26,28 @@ flowchart LR
7["Cap Start"]
8["Cap End"]
9["SweepEdge Opposite"]
- 10["SweepEdge Adjacent"]
+ 10["EdgeCut Fillet
[788, 854, 0]"]
11["EdgeCut Fillet
[788, 854, 0]"]
- 12["EdgeCut Fillet
[788, 854, 0]"]
- 21["Sweep Extrusion
[1359, 1399, 0]"]
+ 20["Sweep Extrusion
[1359, 1399, 0]"]
+ 21[Wall]
22[Wall]
23[Wall]
24[Wall]
25[Wall]
26[Wall]
- 27[Wall]
- 28["Cap Start"]
+ 27["Cap Start"]
+ 28["SweepEdge Opposite"]
29["SweepEdge Opposite"]
- 30["SweepEdge Adjacent"]
+ 30["SweepEdge Opposite"]
31["SweepEdge Opposite"]
- 32["SweepEdge Adjacent"]
- 33["SweepEdge Opposite"]
- 34["SweepEdge Adjacent"]
- 35["SweepEdge Opposite"]
- 36["SweepEdge Adjacent"]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
+ 32["SweepEdge Opposite"]
+ 36["Sweep Extrusion
[1527, 1555, 0]"]
+ 37[Wall]
+ 38["Cap End"]
39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 44["Sweep Extrusion
[1527, 1555, 0]"]
- 45[Wall]
- 46["Cap End"]
- 47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
- 49["EdgeCut Fillet
[1561, 1620, 0]"]
- 50["StartSketchOnFace
[933, 970, 0]"]
- 51["StartSketchOnFace
[1411, 1446, 0]"]
+ 40["EdgeCut Fillet
[1561, 1620, 0]"]
+ 41["StartSketchOnFace
[933, 970, 0]"]
+ 42["StartSketchOnFace
[1411, 1446, 0]"]
1 --- 2
2 --- 3
2 ---- 5
@@ -64,71 +55,71 @@ flowchart LR
3 --- 6
3 --- 9
3 --- 10
- 3 --- 11
+ 3 x--> 8
5 --- 6
5 --- 7
5 --- 8
5 --- 9
- 5 --- 10
- 7 --- 13
- 8 --- 41
- 9 <--x 12
- 13 --- 14
- 13 --- 15
- 13 --- 16
- 13 --- 17
- 13 --- 18
- 13 --- 19
- 13 ---- 21
- 13 --- 20
- 14 --- 27
- 14 --- 39
- 14 --- 40
- 15 --- 26
- 15 --- 37
- 15 --- 38
- 16 --- 25
- 16 --- 35
- 16 --- 36
- 17 --- 24
- 17 --- 33
- 17 --- 34
- 18 --- 23
- 18 --- 31
- 18 --- 32
- 19 --- 22
- 19 --- 29
- 19 --- 30
- 21 --- 22
- 21 --- 23
- 21 --- 24
- 21 --- 25
- 21 --- 26
- 21 --- 27
- 21 --- 28
- 21 --- 29
- 21 --- 30
- 21 --- 31
- 21 --- 32
- 21 --- 33
- 21 --- 34
- 21 --- 35
- 21 --- 36
- 21 --- 37
- 21 --- 38
- 21 --- 39
- 21 --- 40
- 41 --- 42
- 41 ---- 44
- 41 --- 43
- 42 --- 45
- 42 --- 47
- 42 --- 48
- 44 --- 45
- 44 --- 46
- 44 --- 47
- 44 --- 48
- 47 <--x 49
- 7 <--x 50
- 8 <--x 51
+ 7 --- 12
+ 8 --- 33
+ 9 <--x 11
+ 12 --- 13
+ 12 --- 14
+ 12 --- 15
+ 12 --- 16
+ 12 --- 17
+ 12 --- 18
+ 12 ---- 20
+ 12 --- 19
+ 13 --- 26
+ 13 --- 32
+ 13 <--x 7
+ 14 --- 25
+ 14 --- 31
+ 14 <--x 7
+ 15 --- 24
+ 15 --- 30
+ 15 <--x 7
+ 16 --- 23
+ 16 --- 29
+ 16 <--x 7
+ 17 --- 22
+ 17 --- 28
+ 17 <--x 7
+ 18 --- 21
+ 18 <--x 7
+ 20 --- 21
+ 20 --- 22
+ 20 --- 23
+ 20 --- 24
+ 20 --- 25
+ 20 --- 26
+ 20 --- 27
+ 20 --- 28
+ 20 --- 29
+ 20 --- 30
+ 20 --- 31
+ 20 --- 32
+ 28 <--x 22
+ 28 <--x 27
+ 29 <--x 23
+ 29 <--x 27
+ 30 <--x 24
+ 30 <--x 27
+ 31 <--x 25
+ 31 <--x 27
+ 32 <--x 26
+ 32 <--x 27
+ 33 --- 34
+ 33 ---- 36
+ 33 --- 35
+ 34 --- 37
+ 34 --- 39
+ 34 <--x 8
+ 36 --- 37
+ 36 --- 38
+ 36 --- 39
+ 39 <--x 40
+ 7 <--x 41
+ 8 <--x 42
```
diff --git a/rust/kcl-lib/tests/kcl_samples/walkie-talkie/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/walkie-talkie/artifact_commands.snap
index 5cf330707..4bd5bba3e 100644
--- a/rust/kcl-lib/tests/kcl_samples/walkie-talkie/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/walkie-talkie/artifact_commands.snap
@@ -471,20 +471,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -507,6 +514,33 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -527,6 +561,80 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -852,20 +960,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -892,20 +1007,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -932,20 +1054,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -968,6 +1097,33 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -988,6 +1144,174 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1174,20 +1498,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1210,6 +1541,33 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1230,6 +1588,80 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1399,20 +1831,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1435,6 +1874,33 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1455,6 +1921,80 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -9092,37 +9632,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9132,7 +9669,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9142,30 +9679,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9192,37 +9726,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9232,7 +9763,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9242,30 +9773,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9292,37 +9820,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9332,7 +9857,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9342,30 +9867,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9392,37 +9914,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9432,7 +9951,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9442,30 +9961,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9492,37 +10008,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9532,7 +10045,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9542,30 +10055,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9592,37 +10102,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9632,7 +10139,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9642,30 +10149,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9692,37 +10196,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9732,7 +10233,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9742,30 +10243,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9792,37 +10290,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9832,7 +10327,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9842,30 +10337,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9892,37 +10384,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9932,7 +10421,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9942,30 +10431,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9992,37 +10478,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10032,7 +10515,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10042,30 +10525,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -10092,37 +10572,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10132,7 +10609,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10142,30 +10619,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -10192,37 +10666,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10232,7 +10703,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10242,30 +10713,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -10292,37 +10760,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10332,7 +10797,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10342,30 +10807,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -10392,37 +10854,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10432,7 +10891,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10442,30 +10901,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -10492,37 +10948,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10532,7 +10985,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10542,30 +10995,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -10592,37 +11042,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10632,7 +11079,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10642,30 +11089,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -10692,37 +11136,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10732,7 +11173,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10742,30 +11183,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -10792,37 +11230,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10832,7 +11267,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10842,30 +11277,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -10892,37 +11324,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10932,7 +11361,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10942,30 +11371,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -10992,37 +11418,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11032,7 +11455,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11042,30 +11465,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -11092,37 +11512,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11132,7 +11549,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11142,30 +11559,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -11192,37 +11606,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11232,7 +11643,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11242,30 +11653,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -11292,37 +11700,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11332,7 +11737,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11342,30 +11747,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -11392,37 +11794,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11432,7 +11831,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11442,30 +11841,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -11492,37 +11888,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11532,7 +11925,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11542,30 +11935,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -11592,37 +11982,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11632,7 +12019,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11642,30 +12029,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -11692,37 +12076,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11732,7 +12113,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11742,30 +12123,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -11792,37 +12170,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11832,7 +12207,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11842,30 +12217,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -11892,37 +12264,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11932,7 +12301,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -11942,30 +12311,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -11992,37 +12358,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12032,7 +12395,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12042,30 +12405,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -12092,37 +12452,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12132,7 +12489,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12142,30 +12499,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -12192,37 +12546,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12232,7 +12583,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12242,30 +12593,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -12292,37 +12640,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12332,7 +12677,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12342,30 +12687,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -12392,37 +12734,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12432,7 +12771,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12442,30 +12781,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -12492,37 +12828,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12532,7 +12865,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12542,30 +12875,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -12592,37 +12922,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12632,7 +12959,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12642,30 +12969,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -12692,37 +13016,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12732,7 +13053,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12742,30 +13063,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -12792,37 +13110,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12832,7 +13147,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12842,30 +13157,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -12892,37 +13204,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12932,7 +13241,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -12942,30 +13251,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -12992,37 +13298,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13032,7 +13335,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13042,30 +13345,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -13092,37 +13392,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13132,7 +13429,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13142,30 +13439,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -13192,37 +13486,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13232,7 +13523,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13242,30 +13533,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -13292,37 +13580,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13332,7 +13617,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13342,30 +13627,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -13392,37 +13674,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13432,7 +13711,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13442,30 +13721,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -13492,37 +13768,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13532,7 +13805,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13542,30 +13815,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -13592,37 +13862,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13632,7 +13899,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13642,30 +13909,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -13692,37 +13956,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13732,7 +13993,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13742,30 +14003,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -13792,37 +14050,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13832,7 +14087,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13842,30 +14097,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -13892,37 +14144,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13932,7 +14181,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -13942,30 +14191,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -13992,37 +14238,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14032,7 +14275,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14042,30 +14285,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -14092,37 +14332,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14132,7 +14369,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14142,30 +14379,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -14192,37 +14426,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14232,7 +14463,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14242,30 +14473,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -14292,37 +14520,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14332,7 +14557,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14342,30 +14567,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -14392,37 +14614,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14432,7 +14651,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14442,30 +14661,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -14492,37 +14708,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14532,7 +14745,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14542,30 +14755,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -14592,37 +14802,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14632,7 +14839,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14642,30 +14849,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -14692,37 +14896,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14732,7 +14933,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14742,30 +14943,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -14792,37 +14990,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14832,7 +15027,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14842,30 +15037,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -14892,37 +15084,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14932,7 +15121,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -14942,30 +15131,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -14992,37 +15178,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15032,7 +15215,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15042,30 +15225,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -15092,37 +15272,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15132,7 +15309,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15142,30 +15319,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -15192,37 +15366,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15232,7 +15403,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15242,30 +15413,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -15292,37 +15460,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15332,7 +15497,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15342,30 +15507,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -15392,37 +15554,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15432,7 +15591,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15442,30 +15601,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -15492,37 +15648,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15532,7 +15685,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15542,30 +15695,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -15592,37 +15742,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15632,7 +15779,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15642,30 +15789,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -15692,37 +15836,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15732,7 +15873,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15742,30 +15883,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -15792,37 +15930,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15832,7 +15967,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15842,30 +15977,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -15892,37 +16024,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15932,7 +16061,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -15942,30 +16071,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -15992,37 +16118,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16032,7 +16155,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16042,30 +16165,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -16092,37 +16212,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16132,7 +16249,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16142,30 +16259,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -16192,37 +16306,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16232,7 +16343,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16242,30 +16353,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -16292,37 +16400,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16332,7 +16437,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16342,30 +16447,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -16392,37 +16494,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16432,7 +16531,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16442,30 +16541,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -16492,37 +16588,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16532,7 +16625,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16542,30 +16635,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -16592,37 +16682,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16632,7 +16719,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16642,30 +16729,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -16692,37 +16776,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16732,7 +16813,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16742,30 +16823,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -16792,37 +16870,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16832,7 +16907,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16842,30 +16917,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -16892,37 +16964,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16932,7 +17001,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -16942,30 +17011,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -16992,37 +17058,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17032,7 +17095,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17042,30 +17105,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17092,37 +17152,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17132,7 +17189,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17142,30 +17199,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17192,37 +17246,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17232,7 +17283,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17242,30 +17293,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17292,37 +17340,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17332,7 +17377,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17342,30 +17387,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17392,37 +17434,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17432,7 +17471,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17442,30 +17481,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17492,37 +17528,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17532,7 +17565,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17542,30 +17575,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17592,37 +17622,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17632,7 +17659,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17642,30 +17669,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17692,37 +17716,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17732,7 +17753,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17742,30 +17763,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17792,37 +17810,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17832,7 +17847,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17842,30 +17857,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17892,37 +17904,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17932,7 +17941,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17942,30 +17951,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17992,37 +17998,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18032,7 +18035,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18042,30 +18045,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -18092,37 +18092,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18132,7 +18129,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18142,30 +18139,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -18192,37 +18186,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18232,7 +18223,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18242,30 +18233,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -18292,37 +18280,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18332,7 +18317,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18342,30 +18327,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -18392,9 +18374,17154 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
"face_id": "[uuid]"
}
},
@@ -18402,10 +35529,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -18432,20 +35576,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -18472,20 +35623,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -18512,20 +35670,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -18552,20 +35717,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -18592,20 +35764,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -18632,20 +35811,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -18672,20 +35858,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -18712,20 +35905,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -18752,20 +35952,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -18792,20 +35999,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -18832,20 +36046,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -18872,20 +36093,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -18912,20 +36140,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -18952,20 +36187,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -18992,20 +36234,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -19028,6 +36277,33 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -19048,6 +36324,33 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -19072,20 +36375,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19112,37 +36422,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19152,7 +36459,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19162,30 +36469,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19212,37 +36516,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19252,7 +36553,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19262,30 +36563,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19312,37 +36610,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19352,7 +36647,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19362,30 +36657,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19412,37 +36704,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19452,7 +36741,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19462,30 +36751,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19512,37 +36798,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19552,7 +36835,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19562,30 +36845,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19612,37 +36892,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19652,7 +36929,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19662,30 +36939,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19712,37 +36986,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19752,7 +37023,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19762,30 +37033,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19812,37 +37080,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19852,7 +37117,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19862,30 +37127,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19912,37 +37174,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19952,7 +37211,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19962,30 +37221,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20012,37 +37268,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20052,7 +37305,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20062,30 +37315,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20112,37 +37362,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20152,7 +37399,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20162,30 +37409,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20212,37 +37456,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
- "object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20252,7 +37493,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20262,30 +37503,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20312,37 +37550,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20352,7 +37587,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20362,30 +37597,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20412,37 +37644,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20452,7 +37681,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20462,30 +37691,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20512,37 +37738,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20552,7 +37775,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20562,30 +37785,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20612,37 +37832,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20652,7 +37869,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20662,30 +37879,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20712,37 +37926,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20752,7 +37963,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20762,30 +37973,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20812,37 +38020,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20852,7 +38057,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20862,30 +38067,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20912,37 +38114,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20952,7 +38151,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20962,30 +38161,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -21012,37 +38208,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21052,7 +38245,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21062,30 +38255,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -21112,37 +38302,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21152,7 +38339,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21162,30 +38349,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -21212,37 +38396,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21252,7 +38433,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21262,30 +38443,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -21312,37 +38490,34 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21352,7 +38527,7 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21362,30 +38537,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -21729,20 +38901,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -21765,6 +38944,33 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -21785,6 +38991,80 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -22013,20 +39293,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -22049,6 +39336,33 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -22069,6 +39383,80 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -22392,20 +39780,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -22432,20 +39827,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -22468,6 +39870,127 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -22687,20 +40210,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -22723,6 +40253,33 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -22743,6 +40300,80 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -23006,20 +40637,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -23042,6 +40680,33 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -23062,6 +40727,80 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -23325,20 +41064,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -23361,6 +41107,33 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -23381,6 +41154,80 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -23644,20 +41491,27 @@ description: Artifact commands walkie-talkie.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -23680,6 +41534,33 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -23700,6 +41581,80 @@ description: Artifact commands walkie-talkie.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/kcl_samples/walkie-talkie/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/walkie-talkie/artifact_graph_flowchart.snap.md
index 25b8a647f..4121c3a07 100644
--- a/rust/kcl-lib/tests/kcl_samples/walkie-talkie/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/walkie-talkie/artifact_graph_flowchart.snap.md
@@ -8,176 +8,177 @@ flowchart LR
6["Segment
[575, 597, 7]"]
7[Solid2d]
end
- subgraph path27 [Path]
- 27["Path
[968, 1093, 7]"]
- 28["Segment
[1099, 1157, 7]"]
- 29["Segment
[1163, 1288, 7]"]
- 30["Segment
[1294, 1352, 7]"]
- 31["Segment
[1358, 1486, 7]"]
- 32["Segment
[1492, 1553, 7]"]
- 33["Segment
[1559, 1688, 7]"]
- 34["Segment
[1694, 1754, 7]"]
- 35["Segment
[1760, 1767, 7]"]
- 36[Solid2d]
+ subgraph path23 [Path]
+ 23["Path
[968, 1093, 7]"]
+ 24["Segment
[1099, 1157, 7]"]
+ 25["Segment
[1163, 1288, 7]"]
+ 26["Segment
[1294, 1352, 7]"]
+ 27["Segment
[1358, 1486, 7]"]
+ 28["Segment
[1492, 1553, 7]"]
+ 29["Segment
[1559, 1688, 7]"]
+ 30["Segment
[1694, 1754, 7]"]
+ 31["Segment
[1760, 1767, 7]"]
+ 32[Solid2d]
end
- subgraph path63 [Path]
- 63["Path
[1922, 1976, 7]"]
- 64["Segment
[1982, 2023, 7]"]
- 65["Segment
[2029, 2058, 7]"]
- 66["Segment
[2064, 2094, 7]"]
- 67["Segment
[2100, 2156, 7]"]
- 68["Segment
[2162, 2169, 7]"]
- 69[Solid2d]
+ subgraph path50 [Path]
+ 50["Path
[1922, 1976, 7]"]
+ 51["Segment
[1982, 2023, 7]"]
+ 52["Segment
[2029, 2058, 7]"]
+ 53["Segment
[2064, 2094, 7]"]
+ 54["Segment
[2100, 2156, 7]"]
+ 55["Segment
[2162, 2169, 7]"]
+ 56[Solid2d]
end
- subgraph path84 [Path]
- 84["Path
[2312, 2349, 7]"]
- 85["Segment
[2355, 2386, 7]"]
- 86["Segment
[2392, 2425, 7]"]
- 87["Segment
[2431, 2463, 7]"]
- 88["Segment
[2469, 2476, 7]"]
- 89[Solid2d]
+ subgraph path66 [Path]
+ 66["Path
[2312, 2349, 7]"]
+ 67["Segment
[2355, 2386, 7]"]
+ 68["Segment
[2392, 2425, 7]"]
+ 69["Segment
[2431, 2463, 7]"]
+ 70["Segment
[2469, 2476, 7]"]
+ 71[Solid2d]
end
- subgraph path105 [Path]
- 105["Path
[330, 355, 9]"]
- 106["Segment
[361, 394, 9]"]
- 107["Segment
[400, 435, 9]"]
- 108["Segment
[441, 475, 9]"]
- 109["Segment
[481, 488, 9]"]
- 110[Solid2d]
+ subgraph path82 [Path]
+ 82["Path
[330, 355, 9]"]
+ 83["Segment
[361, 394, 9]"]
+ 84["Segment
[400, 435, 9]"]
+ 85["Segment
[441, 475, 9]"]
+ 86["Segment
[481, 488, 9]"]
+ 87[Solid2d]
end
- subgraph path112 [Path]
- 112["Path
[624, 750, 9]"]
- 117[Solid2d]
+ subgraph path89 [Path]
+ 89["Path
[624, 750, 9]"]
+ 90["Segment
[756, 787, 9]"]
+ 94[Solid2d]
end
- subgraph path130 [Path]
- 130["Path
[478, 532, 8]"]
- 131["Segment
[538, 565, 8]"]
- 132["Segment
[571, 600, 8]"]
- 133["Segment
[606, 634, 8]"]
- 134["Segment
[640, 696, 8]"]
- 135["Segment
[702, 709, 8]"]
- 136[Solid2d]
+ subgraph path103 [Path]
+ 103["Path
[478, 532, 8]"]
+ 104["Segment
[538, 565, 8]"]
+ 105["Segment
[571, 600, 8]"]
+ 106["Segment
[606, 634, 8]"]
+ 107["Segment
[640, 696, 8]"]
+ 108["Segment
[702, 709, 8]"]
+ 109[Solid2d]
end
- subgraph path138 [Path]
- 138["Path
[980, 1027, 8]"]
- 139["Segment
[1033, 1074, 8]"]
- 140["Segment
[1080, 1122, 8]"]
- 141["Segment
[1128, 1170, 8]"]
- 142["Segment
[1176, 1183, 8]"]
- 143[Solid2d]
+ subgraph path111 [Path]
+ 111["Path
[980, 1027, 8]"]
+ 112["Segment
[1033, 1074, 8]"]
+ 113["Segment
[1080, 1122, 8]"]
+ 114["Segment
[1128, 1170, 8]"]
+ 115["Segment
[1176, 1183, 8]"]
+ 116[Solid2d]
end
- subgraph path145 [Path]
- 145["Path
[1441, 1600, 8]"]
- 146["Segment
[1606, 1682, 8]"]
- 147["Segment
[1688, 1849, 8]"]
- 148["Segment
[1855, 1931, 8]"]
- 149["Segment
[1937, 2101, 8]"]
- 150["Segment
[2107, 2184, 8]"]
- 151["Segment
[2190, 2353, 8]"]
- 152["Segment
[2359, 2435, 8]"]
- 153["Segment
[2441, 2448, 8]"]
- 154[Solid2d]
+ subgraph path118 [Path]
+ 118["Path
[1441, 1600, 8]"]
+ 119["Segment
[1606, 1682, 8]"]
+ 120["Segment
[1688, 1849, 8]"]
+ 121["Segment
[1855, 1931, 8]"]
+ 122["Segment
[1937, 2101, 8]"]
+ 123["Segment
[2107, 2184, 8]"]
+ 124["Segment
[2190, 2353, 8]"]
+ 125["Segment
[2359, 2435, 8]"]
+ 126["Segment
[2441, 2448, 8]"]
+ 127[Solid2d]
end
- subgraph path156 [Path]
- 156["Path
[123, 210, 13]"]
- 157["Segment
[218, 247, 13]"]
- 158["Segment
[255, 283, 13]"]
- 159["Segment
[291, 369, 13]"]
- 160["Segment
[377, 424, 13]"]
- 161["Segment
[432, 460, 13]"]
- 162["Segment
[468, 497, 13]"]
- 163["Segment
[505, 534, 13]"]
- 164["Segment
[542, 608, 13]"]
- 165["Segment
[616, 644, 13]"]
- 166["Segment
[652, 681, 13]"]
- 167["Segment
[689, 751, 13]"]
- 168["Segment
[759, 787, 13]"]
- 169["Segment
[795, 829, 13]"]
- 170["Segment
[837, 867, 13]"]
- 171["Segment
[875, 943, 13]"]
- 172["Segment
[951, 958, 13]"]
- 173[Solid2d]
+ subgraph path129 [Path]
+ 129["Path
[123, 210, 13]"]
+ 130["Segment
[218, 247, 13]"]
+ 131["Segment
[255, 283, 13]"]
+ 132["Segment
[291, 369, 13]"]
+ 133["Segment
[377, 424, 13]"]
+ 134["Segment
[432, 460, 13]"]
+ 135["Segment
[468, 497, 13]"]
+ 136["Segment
[505, 534, 13]"]
+ 137["Segment
[542, 608, 13]"]
+ 138["Segment
[616, 644, 13]"]
+ 139["Segment
[652, 681, 13]"]
+ 140["Segment
[689, 751, 13]"]
+ 141["Segment
[759, 787, 13]"]
+ 142["Segment
[795, 829, 13]"]
+ 143["Segment
[837, 867, 13]"]
+ 144["Segment
[875, 943, 13]"]
+ 145["Segment
[951, 958, 13]"]
+ 146[Solid2d]
end
- subgraph path175 [Path]
- 175["Path
[1092, 1190, 13]"]
- 176["Segment
[1198, 1276, 13]"]
- 177["Segment
[1284, 1331, 13]"]
- 178["Segment
[1339, 1419, 13]"]
- 179["Segment
[1427, 1434, 13]"]
- 180[Solid2d]
+ subgraph path148 [Path]
+ 148["Path
[1092, 1190, 13]"]
+ 149["Segment
[1198, 1276, 13]"]
+ 150["Segment
[1284, 1331, 13]"]
+ 151["Segment
[1339, 1419, 13]"]
+ 152["Segment
[1427, 1434, 13]"]
+ 153[Solid2d]
end
- subgraph path182 [Path]
- 182["Path
[1531, 1628, 13]"]
- 183["Segment
[1636, 1714, 13]"]
- 184["Segment
[1722, 1770, 13]"]
- 185["Segment
[1778, 1858, 13]"]
- 186["Segment
[1866, 1873, 13]"]
- 187[Solid2d]
+ subgraph path155 [Path]
+ 155["Path
[1531, 1628, 13]"]
+ 156["Segment
[1636, 1714, 13]"]
+ 157["Segment
[1722, 1770, 13]"]
+ 158["Segment
[1778, 1858, 13]"]
+ 159["Segment
[1866, 1873, 13]"]
+ 160[Solid2d]
end
- subgraph path189 [Path]
- 189["Path
[1092, 1190, 13]"]
- 190["Segment
[1198, 1276, 13]"]
- 191["Segment
[1284, 1331, 13]"]
- 192["Segment
[1339, 1419, 13]"]
- 193["Segment
[1427, 1434, 13]"]
- 194[Solid2d]
+ subgraph path162 [Path]
+ 162["Path
[1092, 1190, 13]"]
+ 163["Segment
[1198, 1276, 13]"]
+ 164["Segment
[1284, 1331, 13]"]
+ 165["Segment
[1339, 1419, 13]"]
+ 166["Segment
[1427, 1434, 13]"]
+ 167[Solid2d]
end
- subgraph path196 [Path]
- 196["Path
[1531, 1628, 13]"]
- 197["Segment
[1636, 1714, 13]"]
- 198["Segment
[1722, 1770, 13]"]
- 199["Segment
[1778, 1858, 13]"]
- 200["Segment
[1866, 1873, 13]"]
- 201[Solid2d]
+ subgraph path169 [Path]
+ 169["Path
[1531, 1628, 13]"]
+ 170["Segment
[1636, 1714, 13]"]
+ 171["Segment
[1722, 1770, 13]"]
+ 172["Segment
[1778, 1858, 13]"]
+ 173["Segment
[1866, 1873, 13]"]
+ 174[Solid2d]
+ end
+ subgraph path194 [Path]
+ 194["Path
[261, 354, 10]"]
+ 195["Segment
[360, 409, 10]"]
+ 196["Segment
[415, 465, 10]"]
+ 197["Segment
[471, 521, 10]"]
+ 198["Segment
[527, 545, 10]"]
+ 199[Solid2d]
+ end
+ subgraph path216 [Path]
+ 216["Path
[309, 339, 11]"]
+ 217["Segment
[345, 377, 11]"]
+ 218["Segment
[383, 416, 11]"]
+ 219["Segment
[422, 470, 11]"]
+ 220["Segment
[476, 503, 11]"]
+ 221["Segment
[509, 516, 11]"]
+ 222[Solid2d]
end
subgraph path230 [Path]
- 230["Path
[261, 354, 10]"]
- 231["Segment
[360, 409, 10]"]
- 232["Segment
[415, 465, 10]"]
- 233["Segment
[471, 521, 10]"]
- 234["Segment
[527, 545, 10]"]
+ 230["Path
[398, 423, 12]"]
+ 231["Segment
[431, 489, 12]"]
+ 232["Segment
[497, 556, 12]"]
+ 233["Segment
[564, 607, 12]"]
+ 234["Segment
[615, 622, 12]"]
235[Solid2d]
end
- subgraph path256 [Path]
- 256["Path
[309, 339, 11]"]
- 257["Segment
[345, 377, 11]"]
- 258["Segment
[383, 416, 11]"]
- 259["Segment
[422, 470, 11]"]
- 260["Segment
[476, 503, 11]"]
- 261["Segment
[509, 516, 11]"]
- 262[Solid2d]
+ subgraph path250 [Path]
+ 250["Path
[398, 423, 12]"]
+ 251["Segment
[431, 489, 12]"]
+ 252["Segment
[497, 556, 12]"]
+ 253["Segment
[564, 607, 12]"]
+ 254["Segment
[615, 622, 12]"]
+ 255[Solid2d]
end
- subgraph path274 [Path]
- 274["Path
[398, 423, 12]"]
- 275["Segment
[431, 489, 12]"]
- 276["Segment
[497, 556, 12]"]
- 277["Segment
[564, 607, 12]"]
- 278["Segment
[615, 622, 12]"]
- 279[Solid2d]
+ subgraph path270 [Path]
+ 270["Path
[398, 423, 12]"]
+ 271["Segment
[431, 489, 12]"]
+ 272["Segment
[497, 556, 12]"]
+ 273["Segment
[564, 607, 12]"]
+ 274["Segment
[615, 622, 12]"]
+ 275[Solid2d]
end
- subgraph path298 [Path]
- 298["Path
[398, 423, 12]"]
- 299["Segment
[431, 489, 12]"]
- 300["Segment
[497, 556, 12]"]
- 301["Segment
[564, 607, 12]"]
- 302["Segment
[615, 622, 12]"]
- 303[Solid2d]
- end
- subgraph path322 [Path]
- 322["Path
[398, 423, 12]"]
- 323["Segment
[431, 489, 12]"]
- 324["Segment
[497, 556, 12]"]
- 325["Segment
[564, 607, 12]"]
- 326["Segment
[615, 622, 12]"]
- 327[Solid2d]
- end
- subgraph path346 [Path]
- 346["Path
[398, 423, 12]"]
- 347["Segment
[431, 489, 12]"]
- 348["Segment
[497, 556, 12]"]
- 349["Segment
[564, 607, 12]"]
- 350["Segment
[615, 622, 12]"]
- 351[Solid2d]
+ subgraph path290 [Path]
+ 290["Path
[398, 423, 12]"]
+ 291["Segment
[431, 489, 12]"]
+ 292["Segment
[497, 556, 12]"]
+ 293["Segment
[564, 607, 12]"]
+ 294["Segment
[615, 622, 12]"]
+ 295[Solid2d]
end
1["Plane
[368, 385, 7]"]
8["Sweep Extrusion
[603, 633, 7]"]
@@ -188,125 +189,111 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 23["EdgeCut Chamfer
[639, 870, 7]"]
- 24["EdgeCut Chamfer
[639, 870, 7]"]
- 25["EdgeCut Chamfer
[639, 870, 7]"]
- 26["EdgeCut Chamfer
[639, 870, 7]"]
- 37["Sweep Extrusion
[1781, 1824, 7]"]
+ 19["EdgeCut Chamfer
[639, 870, 7]"]
+ 20["EdgeCut Chamfer
[639, 870, 7]"]
+ 21["EdgeCut Chamfer
[639, 870, 7]"]
+ 22["EdgeCut Chamfer
[639, 870, 7]"]
+ 33["Sweep Extrusion
[1781, 1824, 7]"]
+ 34[Wall]
+ 35[Wall]
+ 36[Wall]
+ 37[Wall]
38[Wall]
39[Wall]
40[Wall]
41[Wall]
- 42[Wall]
- 43[Wall]
- 44[Wall]
- 45[Wall]
- 46["Cap Start"]
+ 42["Cap Start"]
+ 43["SweepEdge Opposite"]
+ 44["SweepEdge Opposite"]
+ 45["SweepEdge Opposite"]
+ 46["SweepEdge Opposite"]
47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
+ 48["SweepEdge Opposite"]
49["SweepEdge Opposite"]
- 50["SweepEdge Adjacent"]
- 51["SweepEdge Opposite"]
- 52["SweepEdge Adjacent"]
- 53["SweepEdge Opposite"]
- 54["SweepEdge Adjacent"]
- 55["SweepEdge Opposite"]
- 56["SweepEdge Adjacent"]
- 57["SweepEdge Opposite"]
- 58["SweepEdge Adjacent"]
- 59["SweepEdge Opposite"]
- 60["SweepEdge Adjacent"]
- 61["SweepEdge Opposite"]
- 62["SweepEdge Adjacent"]
- 70["Sweep Extrusion
[2183, 2226, 7]"]
- 71[Wall]
- 72[Wall]
+ 57["Sweep Extrusion
[2183, 2226, 7]"]
+ 58[Wall]
+ 59[Wall]
+ 60[Wall]
+ 61[Wall]
+ 62["Cap Start"]
+ 63["SweepEdge Opposite"]
+ 64["SweepEdge Opposite"]
+ 65["SweepEdge Opposite"]
+ 72["Sweep Extrusion
[2478, 2511, 7]"]
73[Wall]
74[Wall]
- 75["Cap Start"]
- 76["SweepEdge Opposite"]
- 77["SweepEdge Adjacent"]
+ 75[Wall]
+ 76[Wall]
+ 77["Cap Start"]
78["SweepEdge Opposite"]
- 79["SweepEdge Adjacent"]
+ 79["SweepEdge Opposite"]
80["SweepEdge Opposite"]
- 81["SweepEdge Adjacent"]
- 82["SweepEdge Opposite"]
- 83["SweepEdge Adjacent"]
- 90["Sweep Extrusion
[2478, 2511, 7]"]
- 91[Wall]
- 92[Wall]
- 93[Wall]
- 94[Wall]
- 95["Cap Start"]
- 96["SweepEdge Opposite"]
- 97["SweepEdge Adjacent"]
- 98["SweepEdge Opposite"]
- 99["SweepEdge Adjacent"]
- 100["SweepEdge Opposite"]
- 101["SweepEdge Adjacent"]
- 102["SweepEdge Opposite"]
- 103["SweepEdge Adjacent"]
- 104["Plane
[307, 324, 9]"]
- 111["Plane
[535, 574, 9]"]
- 113["SweepEdge Opposite"]
- 114["SweepEdge Opposite"]
- 115["SweepEdge Opposite"]
- 116["SweepEdge Opposite"]
- 118["Sweep Loft
[914, 957, 9]"]
- 119[Wall]
- 120[Wall]
- 121[Wall]
- 122[Wall]
- 123["Cap Start"]
- 124["Cap End"]
- 125["SweepEdge Adjacent"]
- 126["SweepEdge Adjacent"]
- 127["SweepEdge Adjacent"]
- 128["SweepEdge Adjacent"]
- 129["Plane
[455, 472, 8]"]
- 137["Plane
[957, 974, 8]"]
- 144["Plane
[1418, 1435, 8]"]
- 155["Plane
[2556, 2573, 8]"]
- 174["Plane
[2616, 2633, 8]"]
- 181["Plane
[2678, 2695, 8]"]
- 188["Plane
[2739, 2756, 8]"]
- 195["Plane
[2800, 2817, 8]"]
- 202["Sweep Extrusion
[2844, 2875, 8]"]
+ 81["Plane
[307, 324, 9]"]
+ 88["Plane
[535, 574, 9]"]
+ 91["SweepEdge Opposite"]
+ 92["SweepEdge Opposite"]
+ 93["SweepEdge Opposite"]
+ 95["Sweep Loft
[914, 957, 9]"]
+ 96[Wall]
+ 97[Wall]
+ 98[Wall]
+ 99[Wall]
+ 100["Cap Start"]
+ 101["Cap End"]
+ 102["Plane
[455, 472, 8]"]
+ 110["Plane
[957, 974, 8]"]
+ 117["Plane
[1418, 1435, 8]"]
+ 128["Plane
[2556, 2573, 8]"]
+ 147["Plane
[2616, 2633, 8]"]
+ 154["Plane
[2678, 2695, 8]"]
+ 161["Plane
[2739, 2756, 8]"]
+ 168["Plane
[2800, 2817, 8]"]
+ 175["Sweep Extrusion
[2844, 2875, 8]"]
+ 176[Wall]
+ 177[Wall]
+ 178[Wall]
+ 179[Wall]
+ 180[Wall]
+ 181[Wall]
+ 182[Wall]
+ 183[Wall]
+ 184["Cap Start"]
+ 185["Cap End"]
+ 186["SweepEdge Opposite"]
+ 187["SweepEdge Opposite"]
+ 188["SweepEdge Opposite"]
+ 189["SweepEdge Opposite"]
+ 190["SweepEdge Opposite"]
+ 191["SweepEdge Opposite"]
+ 192["SweepEdge Opposite"]
+ 193["Plane
[238, 255, 10]"]
+ 200["Sweep Extrusion
[591, 643, 10]"]
+ 201[Wall]
+ 202[Wall]
203[Wall]
204[Wall]
- 205[Wall]
- 206[Wall]
- 207[Wall]
- 208[Wall]
- 209[Wall]
- 210[Wall]
- 211["Cap Start"]
- 212["Cap End"]
- 213["SweepEdge Opposite"]
- 214["SweepEdge Adjacent"]
- 215["SweepEdge Opposite"]
- 216["SweepEdge Adjacent"]
- 217["SweepEdge Opposite"]
- 218["SweepEdge Adjacent"]
- 219["SweepEdge Opposite"]
- 220["SweepEdge Adjacent"]
- 221["SweepEdge Opposite"]
- 222["SweepEdge Adjacent"]
- 223["SweepEdge Opposite"]
- 224["SweepEdge Adjacent"]
- 225["SweepEdge Opposite"]
- 226["SweepEdge Adjacent"]
- 227["SweepEdge Opposite"]
- 228["SweepEdge Adjacent"]
- 229["Plane
[238, 255, 10]"]
- 236["Sweep Extrusion
[591, 643, 10]"]
+ 205["Cap Start"]
+ 206["Cap End"]
+ 207["SweepEdge Opposite"]
+ 208["SweepEdge Opposite"]
+ 209["SweepEdge Opposite"]
+ 210["SweepEdge Adjacent"]
+ 211["EdgeCut Fillet
[649, 855, 10]"]
+ 212["EdgeCut Fillet
[649, 855, 10]"]
+ 213["EdgeCut Fillet
[649, 855, 10]"]
+ 214["EdgeCut Fillet
[649, 855, 10]"]
+ 215["Plane
[286, 303, 11]"]
+ 223["Sweep Revolve
[522, 539, 11]"]
+ 224[Wall]
+ 225[Wall]
+ 226[Wall]
+ 227[Wall]
+ 228[Wall]
+ 229["Plane
[373, 390, 12]"]
+ 236["Sweep Extrusion
[634, 681, 12]"]
237[Wall]
238[Wall]
239[Wall]
@@ -314,104 +301,57 @@ flowchart LR
241["Cap Start"]
242["Cap End"]
243["SweepEdge Opposite"]
- 244["SweepEdge Adjacent"]
+ 244["SweepEdge Opposite"]
245["SweepEdge Opposite"]
246["SweepEdge Adjacent"]
- 247["SweepEdge Opposite"]
- 248["SweepEdge Adjacent"]
- 249["SweepEdge Opposite"]
- 250["SweepEdge Adjacent"]
- 251["EdgeCut Fillet
[649, 855, 10]"]
- 252["EdgeCut Fillet
[649, 855, 10]"]
- 253["EdgeCut Fillet
[649, 855, 10]"]
- 254["EdgeCut Fillet
[649, 855, 10]"]
- 255["Plane
[286, 303, 11]"]
- 263["Sweep Revolve
[522, 539, 11]"]
- 264[Wall]
- 265[Wall]
- 266[Wall]
- 267[Wall]
- 268[Wall]
- 269["SweepEdge Adjacent"]
- 270["SweepEdge Adjacent"]
- 271["SweepEdge Adjacent"]
- 272["SweepEdge Adjacent"]
- 273["Plane
[373, 390, 12]"]
- 280["Sweep Extrusion
[634, 681, 12]"]
- 281[Wall]
- 282[Wall]
- 283[Wall]
- 284[Wall]
- 285["Cap Start"]
- 286["Cap End"]
- 287["SweepEdge Opposite"]
- 288["SweepEdge Adjacent"]
- 289["SweepEdge Opposite"]
- 290["SweepEdge Adjacent"]
- 291["SweepEdge Opposite"]
- 292["SweepEdge Adjacent"]
- 293["SweepEdge Opposite"]
- 294["SweepEdge Adjacent"]
- 295["EdgeCut Chamfer
[689, 835, 12]"]
- 296["EdgeCut Chamfer
[689, 835, 12]"]
- 297["Plane
[373, 390, 12]"]
- 304["Sweep Extrusion
[634, 681, 12]"]
- 305[Wall]
- 306[Wall]
- 307[Wall]
- 308[Wall]
- 309["Cap Start"]
- 310["Cap End"]
- 311["SweepEdge Opposite"]
- 312["SweepEdge Adjacent"]
- 313["SweepEdge Opposite"]
- 314["SweepEdge Adjacent"]
- 315["SweepEdge Opposite"]
- 316["SweepEdge Adjacent"]
- 317["SweepEdge Opposite"]
- 318["SweepEdge Adjacent"]
- 319["EdgeCut Chamfer
[689, 835, 12]"]
- 320["EdgeCut Chamfer
[689, 835, 12]"]
- 321["Plane
[373, 390, 12]"]
- 328["Sweep Extrusion
[634, 681, 12]"]
- 329[Wall]
- 330[Wall]
- 331[Wall]
- 332[Wall]
- 333["Cap Start"]
- 334["Cap End"]
- 335["SweepEdge Opposite"]
- 336["SweepEdge Adjacent"]
- 337["SweepEdge Opposite"]
- 338["SweepEdge Adjacent"]
- 339["SweepEdge Opposite"]
- 340["SweepEdge Adjacent"]
- 341["SweepEdge Opposite"]
- 342["SweepEdge Adjacent"]
- 343["EdgeCut Chamfer
[689, 835, 12]"]
- 344["EdgeCut Chamfer
[689, 835, 12]"]
- 345["Plane
[373, 390, 12]"]
- 352["Sweep Extrusion
[634, 681, 12]"]
- 353[Wall]
- 354[Wall]
- 355[Wall]
- 356[Wall]
- 357["Cap Start"]
- 358["Cap End"]
- 359["SweepEdge Opposite"]
- 360["SweepEdge Adjacent"]
- 361["SweepEdge Opposite"]
- 362["SweepEdge Adjacent"]
- 363["SweepEdge Opposite"]
- 364["SweepEdge Adjacent"]
- 365["SweepEdge Opposite"]
- 366["SweepEdge Adjacent"]
- 367["EdgeCut Chamfer
[689, 835, 12]"]
- 368["EdgeCut Chamfer
[689, 835, 12]"]
- 369["StartSketchOnFace
[931, 962, 7]"]
- 370["StartSketchOnFace
[1877, 1916, 7]"]
- 371["StartSketchOnFace
[2267, 2306, 7]"]
- 372["StartSketchOnPlane
[594, 618, 9]"]
+ 247["EdgeCut Chamfer
[689, 835, 12]"]
+ 248["EdgeCut Chamfer
[689, 835, 12]"]
+ 249["Plane
[373, 390, 12]"]
+ 256["Sweep Extrusion
[634, 681, 12]"]
+ 257[Wall]
+ 258[Wall]
+ 259[Wall]
+ 260[Wall]
+ 261["Cap Start"]
+ 262["Cap End"]
+ 263["SweepEdge Opposite"]
+ 264["SweepEdge Opposite"]
+ 265["SweepEdge Opposite"]
+ 266["SweepEdge Adjacent"]
+ 267["EdgeCut Chamfer
[689, 835, 12]"]
+ 268["EdgeCut Chamfer
[689, 835, 12]"]
+ 269["Plane
[373, 390, 12]"]
+ 276["Sweep Extrusion
[634, 681, 12]"]
+ 277[Wall]
+ 278[Wall]
+ 279[Wall]
+ 280[Wall]
+ 281["Cap Start"]
+ 282["Cap End"]
+ 283["SweepEdge Opposite"]
+ 284["SweepEdge Opposite"]
+ 285["SweepEdge Opposite"]
+ 286["SweepEdge Adjacent"]
+ 287["EdgeCut Chamfer
[689, 835, 12]"]
+ 288["EdgeCut Chamfer
[689, 835, 12]"]
+ 289["Plane
[373, 390, 12]"]
+ 296["Sweep Extrusion
[634, 681, 12]"]
+ 297[Wall]
+ 298[Wall]
+ 299[Wall]
+ 300[Wall]
+ 301["Cap Start"]
+ 302["Cap End"]
+ 303["SweepEdge Opposite"]
+ 304["SweepEdge Opposite"]
+ 305["SweepEdge Opposite"]
+ 306["SweepEdge Adjacent"]
+ 307["EdgeCut Chamfer
[689, 835, 12]"]
+ 308["EdgeCut Chamfer
[689, 835, 12]"]
+ 309["StartSketchOnFace
[931, 962, 7]"]
+ 310["StartSketchOnFace
[1877, 1916, 7]"]
+ 311["StartSketchOnFace
[2267, 2306, 7]"]
+ 312["StartSketchOnPlane
[594, 618, 9]"]
1 --- 2
2 --- 3
2 --- 4
@@ -420,17 +360,17 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
+ 3 --- 17
+ 3 --- 18
+ 3 x--> 13
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 13
5 --- 10
- 5 --- 17
- 5 --- 18
+ 5 --- 15
+ 5 x--> 13
6 --- 9
- 6 --- 15
- 6 --- 16
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -441,169 +381,198 @@ flowchart LR
8 --- 16
8 --- 17
8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 14 --- 27
- 22 <--x 23
- 20 <--x 24
- 18 <--x 25
- 16 <--x 26
- 27 --- 28
- 27 --- 29
- 27 --- 30
- 27 --- 31
- 27 --- 32
- 27 --- 33
- 27 --- 34
- 27 --- 35
- 27 ---- 37
- 27 --- 36
+ 14 --- 23
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 18 <--x 19
+ 23 --- 24
+ 23 --- 25
+ 23 --- 26
+ 23 --- 27
+ 23 --- 28
+ 23 --- 29
+ 23 --- 30
+ 23 --- 31
+ 23 ---- 33
+ 23 --- 32
+ 24 --- 41
+ 24 --- 49
+ 24 <--x 14
+ 25 --- 40
+ 25 --- 48
+ 25 <--x 14
+ 26 --- 39
+ 26 --- 47
+ 26 <--x 14
+ 27 --- 38
+ 27 --- 46
+ 27 <--x 14
+ 28 --- 37
28 --- 45
- 28 --- 61
- 28 --- 62
+ 28 <--x 14
+ 29 --- 36
29 --- 44
- 29 --- 59
- 29 --- 60
+ 29 <--x 14
+ 30 --- 35
30 --- 43
- 30 --- 57
- 30 --- 58
- 31 --- 42
- 31 --- 55
- 31 --- 56
- 32 --- 41
- 32 --- 53
- 32 --- 54
+ 30 <--x 14
+ 31 --- 34
+ 31 <--x 14
+ 33 --- 34
+ 33 --- 35
+ 33 --- 36
+ 33 --- 37
+ 33 --- 38
+ 33 --- 39
33 --- 40
- 33 --- 51
- 33 --- 52
- 34 --- 39
- 34 --- 49
- 34 --- 50
- 35 --- 38
- 35 --- 47
- 35 --- 48
- 37 --- 38
- 37 --- 39
- 37 --- 40
- 37 --- 41
- 37 --- 42
- 37 --- 43
- 37 --- 44
- 37 --- 45
- 37 --- 46
- 37 --- 47
- 37 --- 48
- 37 --- 49
- 37 --- 50
- 37 --- 51
- 37 --- 52
- 37 --- 53
- 37 --- 54
- 37 --- 55
- 37 --- 56
- 37 --- 57
- 37 --- 58
- 37 --- 59
- 37 --- 60
- 37 --- 61
- 37 --- 62
- 46 --- 63
- 46 --- 84
- 63 --- 64
- 63 --- 65
- 63 --- 66
- 63 --- 67
- 63 --- 68
- 63 ---- 70
- 63 --- 69
- 64 --- 74
- 64 --- 82
- 64 --- 83
- 65 --- 73
- 65 --- 80
- 65 --- 81
- 66 --- 72
- 66 --- 78
- 66 --- 79
- 67 --- 71
+ 33 --- 41
+ 33 --- 42
+ 33 --- 43
+ 33 --- 44
+ 33 --- 45
+ 33 --- 46
+ 33 --- 47
+ 33 --- 48
+ 33 --- 49
+ 42 --- 50
+ 42 --- 66
+ 43 <--x 35
+ 43 <--x 42
+ 44 <--x 36
+ 44 <--x 42
+ 45 <--x 37
+ 45 <--x 42
+ 46 <--x 38
+ 46 <--x 42
+ 47 <--x 39
+ 47 <--x 42
+ 48 <--x 40
+ 48 <--x 42
+ 49 <--x 41
+ 49 <--x 42
+ 50 --- 51
+ 50 --- 52
+ 50 --- 53
+ 50 --- 54
+ 50 --- 55
+ 50 ---- 57
+ 50 --- 56
+ 51 --- 61
+ 51 --- 65
+ 51 <--x 42
+ 52 --- 60
+ 52 --- 64
+ 52 <--x 42
+ 53 --- 59
+ 53 --- 63
+ 53 <--x 42
+ 54 --- 58
+ 54 <--x 42
+ 57 --- 58
+ 57 --- 59
+ 57 --- 60
+ 57 --- 61
+ 57 --- 62
+ 57 --- 63
+ 57 --- 64
+ 57 --- 65
+ 63 <--x 59
+ 63 <--x 62
+ 64 <--x 60
+ 64 <--x 62
+ 65 <--x 61
+ 65 <--x 62
+ 66 --- 67
+ 66 --- 68
+ 66 --- 69
+ 66 --- 70
+ 66 ---- 72
+ 66 --- 71
67 --- 76
- 67 --- 77
- 70 --- 71
- 70 --- 72
+ 67 --- 80
+ 67 <--x 42
+ 68 --- 75
+ 68 --- 79
+ 68 <--x 42
+ 69 --- 74
+ 69 --- 78
+ 69 <--x 42
70 --- 73
- 70 --- 74
- 70 --- 75
- 70 --- 76
- 70 --- 77
- 70 --- 78
- 70 --- 79
- 70 --- 80
- 70 --- 81
- 70 --- 82
- 70 --- 83
- 84 --- 85
- 84 --- 86
- 84 --- 87
- 84 --- 88
- 84 ---- 90
- 84 --- 89
- 85 --- 94
- 85 --- 102
- 85 --- 103
+ 70 <--x 42
+ 72 --- 73
+ 72 --- 74
+ 72 --- 75
+ 72 --- 76
+ 72 --- 77
+ 72 --- 78
+ 72 --- 79
+ 72 --- 80
+ 78 <--x 74
+ 78 <--x 77
+ 79 <--x 75
+ 79 <--x 77
+ 80 <--x 76
+ 80 <--x 77
+ 81 --- 82
+ 82 --- 83
+ 82 --- 84
+ 82 --- 85
+ 82 --- 86
+ 82 ---- 95
+ 82 --- 87
+ 83 --- 96
+ 83 x--> 100
+ 84 --- 97
+ 84 --- 91
+ 84 x--> 100
+ 85 --- 98
+ 85 --- 92
+ 85 x--> 100
+ 86 --- 99
86 --- 93
- 86 --- 100
- 86 --- 101
- 87 --- 92
- 87 --- 98
- 87 --- 99
- 88 --- 91
- 88 --- 96
- 88 --- 97
- 90 --- 91
- 90 --- 92
- 90 --- 93
- 90 --- 94
- 90 --- 95
- 90 --- 96
- 90 --- 97
- 90 --- 98
- 90 --- 99
- 90 --- 100
- 90 --- 101
- 90 --- 102
- 90 --- 103
- 104 --- 105
- 105 --- 106
- 105 --- 107
- 105 --- 108
- 105 --- 109
- 105 ---- 118
- 105 --- 110
- 106 --- 119
- 106 --- 113
- 106 --- 125
- 107 --- 120
- 107 --- 114
- 107 --- 126
- 108 --- 121
- 108 --- 115
- 108 --- 127
- 109 --- 122
- 109 --- 116
- 109 --- 128
+ 86 x--> 100
+ 88 --- 89
+ 89 --- 90
+ 89 x--> 91
+ 89 x--> 92
+ 89 x--> 93
+ 89 x---> 95
+ 89 --- 94
+ 90 x--> 96
+ 90 x--> 101
+ 95 --- 91
+ 91 x--> 97
+ 91 x--> 101
+ 95 --- 92
+ 92 x--> 98
+ 92 x--> 101
+ 95 --- 93
+ 93 x--> 99
+ 93 x--> 101
+ 95 --- 96
+ 95 --- 97
+ 95 --- 98
+ 95 --- 99
+ 95 --- 100
+ 95 --- 101
+ 102 --- 103
+ 103 --- 104
+ 103 --- 105
+ 103 --- 106
+ 103 --- 107
+ 103 --- 108
+ 103 --- 109
+ 110 --- 111
111 --- 112
- 112 x--> 113
- 112 x--> 114
- 112 x--> 115
- 112 x--> 116
- 112 x---> 118
- 112 --- 117
- 118 --- 113
- 118 --- 114
- 118 --- 115
- 118 --- 116
+ 111 --- 113
+ 111 --- 114
+ 111 --- 115
+ 111 --- 116
+ 117 --- 118
118 --- 119
118 --- 120
118 --- 121
@@ -612,124 +581,162 @@ flowchart LR
118 --- 124
118 --- 125
118 --- 126
+ 118 ---- 175
118 --- 127
- 118 --- 128
+ 119 --- 183
+ 119 --- 192
+ 119 x--> 185
+ 120 --- 182
+ 120 --- 191
+ 120 x--> 185
+ 121 --- 181
+ 121 --- 190
+ 121 x--> 185
+ 122 --- 180
+ 122 --- 189
+ 122 x--> 185
+ 123 --- 179
+ 123 --- 188
+ 123 x--> 185
+ 124 --- 178
+ 124 --- 187
+ 124 x--> 185
+ 125 --- 177
+ 125 --- 186
+ 125 x--> 185
+ 126 --- 176
+ 126 x--> 185
+ 128 --- 129
129 --- 130
- 130 --- 131
- 130 --- 132
- 130 --- 133
- 130 --- 134
- 130 --- 135
- 130 --- 136
- 137 --- 138
- 138 --- 139
- 138 --- 140
- 138 --- 141
- 138 --- 142
- 138 --- 143
- 144 --- 145
- 145 --- 146
- 145 --- 147
- 145 --- 148
- 145 --- 149
- 145 --- 150
- 145 --- 151
- 145 --- 152
- 145 --- 153
- 145 ---- 202
- 145 --- 154
- 146 --- 210
- 146 --- 227
- 146 --- 228
- 147 --- 209
- 147 --- 225
- 147 --- 226
- 148 --- 208
- 148 --- 223
- 148 --- 224
- 149 --- 207
- 149 --- 221
- 149 --- 222
- 150 --- 206
- 150 --- 219
- 150 --- 220
- 151 --- 205
- 151 --- 217
- 151 --- 218
- 152 --- 204
- 152 --- 215
- 152 --- 216
- 153 --- 203
- 153 --- 213
- 153 --- 214
+ 129 --- 131
+ 129 --- 132
+ 129 --- 133
+ 129 --- 134
+ 129 --- 135
+ 129 --- 136
+ 129 --- 137
+ 129 --- 138
+ 129 --- 139
+ 129 --- 140
+ 129 --- 141
+ 129 --- 142
+ 129 --- 143
+ 129 --- 144
+ 129 --- 145
+ 129 --- 146
+ 147 --- 148
+ 148 --- 149
+ 148 --- 150
+ 148 --- 151
+ 148 --- 152
+ 148 --- 153
+ 154 --- 155
155 --- 156
- 156 --- 157
- 156 --- 158
- 156 --- 159
- 156 --- 160
- 156 --- 161
- 156 --- 162
- 156 --- 163
- 156 --- 164
- 156 --- 165
- 156 --- 166
- 156 --- 167
- 156 --- 168
- 156 --- 169
- 156 --- 170
- 156 --- 171
- 156 --- 172
- 156 --- 173
- 174 --- 175
+ 155 --- 157
+ 155 --- 158
+ 155 --- 159
+ 155 --- 160
+ 161 --- 162
+ 162 --- 163
+ 162 --- 164
+ 162 --- 165
+ 162 --- 166
+ 162 --- 167
+ 168 --- 169
+ 169 --- 170
+ 169 --- 171
+ 169 --- 172
+ 169 --- 173
+ 169 --- 174
175 --- 176
175 --- 177
175 --- 178
175 --- 179
175 --- 180
- 181 --- 182
- 182 --- 183
- 182 --- 184
- 182 --- 185
- 182 --- 186
- 182 --- 187
- 188 --- 189
- 189 --- 190
- 189 --- 191
- 189 --- 192
- 189 --- 193
- 189 --- 194
- 195 --- 196
- 196 --- 197
- 196 --- 198
- 196 --- 199
- 196 --- 200
- 196 --- 201
- 202 --- 203
- 202 --- 204
- 202 --- 205
- 202 --- 206
- 202 --- 207
- 202 --- 208
- 202 --- 209
- 202 --- 210
- 202 --- 211
- 202 --- 212
- 202 --- 213
- 202 --- 214
- 202 --- 215
- 202 --- 216
- 202 --- 217
- 202 --- 218
- 202 --- 219
- 202 --- 220
- 202 --- 221
- 202 --- 222
- 202 --- 223
- 202 --- 224
- 202 --- 225
- 202 --- 226
- 202 --- 227
- 202 --- 228
+ 175 --- 181
+ 175 --- 182
+ 175 --- 183
+ 175 --- 184
+ 175 --- 185
+ 175 --- 186
+ 175 --- 187
+ 175 --- 188
+ 175 --- 189
+ 175 --- 190
+ 175 --- 191
+ 175 --- 192
+ 186 <--x 177
+ 186 <--x 184
+ 187 <--x 178
+ 187 <--x 184
+ 188 <--x 179
+ 188 <--x 184
+ 189 <--x 180
+ 189 <--x 184
+ 190 <--x 181
+ 190 <--x 184
+ 191 <--x 182
+ 191 <--x 184
+ 192 <--x 183
+ 192 <--x 184
+ 193 --- 194
+ 194 --- 195
+ 194 --- 196
+ 194 --- 197
+ 194 --- 198
+ 194 ---- 200
+ 194 --- 199
+ 195 --- 204
+ 195 --- 209
+ 195 --- 210
+ 195 x--> 205
+ 196 --- 203
+ 196 --- 208
+ 196 x--> 205
+ 197 --- 202
+ 197 --- 207
+ 197 x--> 205
+ 198 --- 201
+ 198 x--> 205
+ 200 --- 201
+ 200 --- 202
+ 200 --- 203
+ 200 --- 204
+ 200 --- 205
+ 200 --- 206
+ 200 --- 207
+ 200 --- 208
+ 200 --- 209
+ 200 --- 210
+ 207 <--x 202
+ 207 <--x 206
+ 208 <--x 203
+ 208 <--x 206
+ 209 <--x 204
+ 209 <--x 206
+ 210 <--x 211
+ 215 --- 216
+ 216 --- 217
+ 216 --- 218
+ 216 --- 219
+ 216 --- 220
+ 216 --- 221
+ 216 ---- 223
+ 216 --- 222
+ 217 --- 224
+ 218 --- 225
+ 219 --- 226
+ 220 --- 227
+ 221 --- 228
+ 223 --- 224
+ 223 --- 225
+ 223 --- 226
+ 223 --- 227
+ 223 --- 228
+ 223 <--x 218
+ 223 <--x 219
+ 223 <--x 220
+ 223 <--x 221
229 --- 230
230 --- 231
230 --- 232
@@ -737,18 +744,18 @@ flowchart LR
230 --- 234
230 ---- 236
230 --- 235
- 231 --- 240
- 231 --- 249
- 231 --- 250
- 232 --- 239
- 232 --- 247
- 232 --- 248
- 233 --- 238
- 233 --- 245
- 233 --- 246
- 234 --- 237
- 234 --- 243
- 234 --- 244
+ 231 --- 237
+ 231 --- 246
+ 231 x--> 241
+ 232 --- 238
+ 232 --- 243
+ 232 x--> 241
+ 233 --- 239
+ 233 --- 244
+ 233 x--> 241
+ 234 --- 240
+ 234 --- 245
+ 234 x--> 241
236 --- 237
236 --- 238
236 --- 239
@@ -759,188 +766,123 @@ flowchart LR
236 --- 244
236 --- 245
236 --- 246
- 236 --- 247
- 236 --- 248
- 236 --- 249
- 236 --- 250
- 250 <--x 251
- 248 <--x 252
- 246 <--x 253
- 244 <--x 254
- 255 --- 256
+ 243 <--x 238
+ 243 <--x 242
+ 244 <--x 239
+ 244 <--x 242
+ 245 <--x 240
+ 245 <--x 242
+ 246 <--x 247
+ 249 --- 250
+ 250 --- 251
+ 250 --- 252
+ 250 --- 253
+ 250 --- 254
+ 250 ---- 256
+ 250 --- 255
+ 251 --- 257
+ 251 --- 266
+ 251 x--> 261
+ 252 --- 258
+ 252 --- 263
+ 252 x--> 261
+ 253 --- 259
+ 253 --- 264
+ 253 x--> 261
+ 254 --- 260
+ 254 --- 265
+ 254 x--> 261
256 --- 257
256 --- 258
256 --- 259
256 --- 260
256 --- 261
- 256 ---- 263
256 --- 262
- 257 --- 264
- 257 x--> 269
- 258 --- 265
- 258 --- 269
- 259 --- 266
- 259 --- 270
- 260 --- 267
- 260 --- 271
- 261 --- 268
- 261 --- 272
- 263 --- 264
- 263 --- 265
- 263 --- 266
- 263 --- 267
- 263 --- 268
- 263 <--x 257
- 263 --- 269
+ 256 --- 263
+ 256 --- 264
+ 256 --- 265
+ 256 --- 266
263 <--x 258
- 263 <--x 259
- 263 --- 270
- 263 <--x 260
- 263 --- 271
- 263 <--x 261
- 263 --- 272
- 273 --- 274
- 274 --- 275
- 274 --- 276
- 274 --- 277
- 274 --- 278
- 274 ---- 280
- 274 --- 279
- 275 --- 281
- 275 --- 287
- 275 --- 288
+ 263 <--x 262
+ 264 <--x 259
+ 264 <--x 262
+ 265 <--x 260
+ 265 <--x 262
+ 266 <--x 267
+ 269 --- 270
+ 270 --- 271
+ 270 --- 272
+ 270 --- 273
+ 270 --- 274
+ 270 ---- 276
+ 270 --- 275
+ 271 --- 277
+ 271 --- 286
+ 271 x--> 281
+ 272 --- 278
+ 272 --- 283
+ 272 x--> 281
+ 273 --- 279
+ 273 --- 284
+ 273 x--> 281
+ 274 --- 280
+ 274 --- 285
+ 274 x--> 281
+ 276 --- 277
+ 276 --- 278
+ 276 --- 279
+ 276 --- 280
+ 276 --- 281
276 --- 282
- 276 --- 289
- 276 --- 290
- 277 --- 283
- 277 --- 291
- 277 --- 292
- 278 --- 284
- 278 --- 293
- 278 --- 294
- 280 --- 281
- 280 --- 282
- 280 --- 283
- 280 --- 284
- 280 --- 285
- 280 --- 286
- 280 --- 287
- 280 --- 288
- 280 --- 289
- 280 --- 290
- 280 --- 291
- 280 --- 292
- 280 --- 293
- 280 --- 294
- 288 <--x 295
- 290 <--x 296
- 297 --- 298
- 298 --- 299
- 298 --- 300
- 298 --- 301
- 298 --- 302
- 298 ---- 304
- 298 --- 303
- 299 --- 305
- 299 --- 311
- 299 --- 312
- 300 --- 306
- 300 --- 313
- 300 --- 314
- 301 --- 307
- 301 --- 315
- 301 --- 316
- 302 --- 308
- 302 --- 317
- 302 --- 318
- 304 --- 305
- 304 --- 306
- 304 --- 307
- 304 --- 308
- 304 --- 309
- 304 --- 310
- 304 --- 311
- 304 --- 312
- 304 --- 313
- 304 --- 314
- 304 --- 315
- 304 --- 316
- 304 --- 317
- 304 --- 318
- 312 <--x 319
- 314 <--x 320
- 321 --- 322
- 322 --- 323
- 322 --- 324
- 322 --- 325
- 322 --- 326
- 322 ---- 328
- 322 --- 327
- 323 --- 329
- 323 --- 335
- 323 --- 336
- 324 --- 330
- 324 --- 337
- 324 --- 338
- 325 --- 331
- 325 --- 339
- 325 --- 340
- 326 --- 332
- 326 --- 341
- 326 --- 342
- 328 --- 329
- 328 --- 330
- 328 --- 331
- 328 --- 332
- 328 --- 333
- 328 --- 334
- 328 --- 335
- 328 --- 336
- 328 --- 337
- 328 --- 338
- 328 --- 339
- 328 --- 340
- 328 --- 341
- 328 --- 342
- 336 <--x 343
- 338 <--x 344
- 345 --- 346
- 346 --- 347
- 346 --- 348
- 346 --- 349
- 346 --- 350
- 346 ---- 352
- 346 --- 351
- 347 --- 353
- 347 --- 359
- 347 --- 360
- 348 --- 354
- 348 --- 361
- 348 --- 362
- 349 --- 355
- 349 --- 363
- 349 --- 364
- 350 --- 356
- 350 --- 365
- 350 --- 366
- 352 --- 353
- 352 --- 354
- 352 --- 355
- 352 --- 356
- 352 --- 357
- 352 --- 358
- 352 --- 359
- 352 --- 360
- 352 --- 361
- 352 --- 362
- 352 --- 363
- 352 --- 364
- 352 --- 365
- 352 --- 366
- 360 <--x 367
- 362 <--x 368
- 14 <--x 369
- 46 <--x 370
- 46 <--x 371
- 111 <--x 372
+ 276 --- 283
+ 276 --- 284
+ 276 --- 285
+ 276 --- 286
+ 283 <--x 278
+ 283 <--x 282
+ 284 <--x 279
+ 284 <--x 282
+ 285 <--x 280
+ 285 <--x 282
+ 286 <--x 287
+ 289 --- 290
+ 290 --- 291
+ 290 --- 292
+ 290 --- 293
+ 290 --- 294
+ 290 ---- 296
+ 290 --- 295
+ 291 --- 297
+ 291 --- 306
+ 291 x--> 301
+ 292 --- 298
+ 292 --- 303
+ 292 x--> 301
+ 293 --- 299
+ 293 --- 304
+ 293 x--> 301
+ 294 --- 300
+ 294 --- 305
+ 294 x--> 301
+ 296 --- 297
+ 296 --- 298
+ 296 --- 299
+ 296 --- 300
+ 296 --- 301
+ 296 --- 302
+ 296 --- 303
+ 296 --- 304
+ 296 --- 305
+ 296 --- 306
+ 303 <--x 298
+ 303 <--x 302
+ 304 <--x 299
+ 304 <--x 302
+ 305 <--x 300
+ 305 <--x 302
+ 306 <--x 307
+ 14 <--x 309
+ 42 <--x 310
+ 42 <--x 311
+ 88 <--x 312
```
diff --git a/rust/kcl-lib/tests/kcl_samples/washer/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/washer/artifact_commands.snap
index 0ff86ac43..be7d432ee 100644
--- a/rust/kcl-lib/tests/kcl_samples/washer/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kcl_samples/washer/artifact_commands.snap
@@ -295,6 +295,33 @@ description: Artifact commands washer.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -314,5 +341,32 @@ description: Artifact commands washer.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/kcl_samples/washer/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/washer/artifact_graph_flowchart.snap.md
index ad0e1f924..86f357db6 100644
--- a/rust/kcl-lib/tests/kcl_samples/washer/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kcl_samples/washer/artifact_graph_flowchart.snap.md
@@ -15,21 +15,16 @@ flowchart LR
9[Wall]
10["Cap Start"]
11["Cap End"]
- 12["SweepEdge Opposite"]
- 13["SweepEdge Adjacent"]
1 --- 2
1 --- 5
2 --- 3
2 ---- 8
2 --- 4
3 --- 9
- 3 --- 12
- 3 --- 13
+ 3 x--> 10
5 --- 6
5 --- 7
8 --- 9
8 --- 10
8 --- 11
- 8 --- 12
- 8 --- 13
```
diff --git a/rust/kcl-lib/tests/kittycad_svg/artifact_commands.snap b/rust/kcl-lib/tests/kittycad_svg/artifact_commands.snap
index 277d9d1c6..1688a0c60 100644
--- a/rust/kcl-lib/tests/kittycad_svg/artifact_commands.snap
+++ b/rust/kcl-lib/tests/kittycad_svg/artifact_commands.snap
@@ -4957,37 +4957,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -4997,7 +4994,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5007,30 +5004,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -5057,37 +5051,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5097,7 +5088,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5107,30 +5098,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -5157,37 +5145,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5197,7 +5182,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5207,30 +5192,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -5257,37 +5239,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5297,7 +5276,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5307,30 +5286,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -5357,37 +5333,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5397,7 +5370,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5407,30 +5380,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -5457,37 +5427,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5497,7 +5464,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5507,30 +5474,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -5557,37 +5521,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5597,7 +5558,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5607,30 +5568,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -5657,37 +5615,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5697,7 +5652,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5707,30 +5662,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -5757,37 +5709,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5797,7 +5746,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5807,30 +5756,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -5857,37 +5803,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5897,7 +5840,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5907,30 +5850,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -5957,37 +5897,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -5997,7 +5934,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6007,30 +5944,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -6057,37 +5991,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6097,7 +6028,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6107,30 +6038,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -6157,37 +6085,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6197,7 +6122,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6207,30 +6132,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -6257,37 +6179,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6297,7 +6216,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6307,30 +6226,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -6357,37 +6273,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6397,7 +6310,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6407,30 +6320,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -6457,37 +6367,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6497,7 +6404,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6507,30 +6414,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -6557,37 +6461,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6597,7 +6498,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6607,30 +6508,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -6657,37 +6555,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6697,7 +6592,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6707,30 +6602,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -6757,37 +6649,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6797,7 +6686,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6807,30 +6696,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -6857,37 +6743,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6897,7 +6780,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6907,30 +6790,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -6957,37 +6837,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -6997,7 +6874,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7007,30 +6884,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -7057,37 +6931,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7097,7 +6968,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7107,30 +6978,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -7157,37 +7025,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7197,7 +7062,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7207,30 +7072,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -7257,37 +7119,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7297,7 +7156,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7307,30 +7166,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -7357,37 +7213,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7397,7 +7250,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7407,30 +7260,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -7457,37 +7307,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7497,7 +7344,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7507,30 +7354,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -7557,37 +7401,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7597,7 +7438,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7607,30 +7448,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -7657,37 +7495,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7697,7 +7532,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7707,30 +7542,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -7757,37 +7589,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7797,7 +7626,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7807,30 +7636,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -7857,37 +7683,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7897,7 +7720,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7907,30 +7730,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -7957,37 +7777,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -7997,7 +7814,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8007,30 +7824,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -8057,37 +7871,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8097,7 +7908,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8107,30 +7918,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -8157,37 +7965,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8197,7 +8002,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8207,30 +8012,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -8257,37 +8059,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8297,7 +8096,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8307,30 +8106,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -8357,37 +8153,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8397,7 +8190,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8407,30 +8200,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -8457,37 +8247,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8497,7 +8284,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8507,30 +8294,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -8557,37 +8341,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8597,7 +8378,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8607,30 +8388,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -8657,37 +8435,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8697,7 +8472,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8707,30 +8482,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -8757,37 +8529,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8797,7 +8566,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8807,30 +8576,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -8857,37 +8623,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8897,7 +8660,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8907,30 +8670,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -8957,37 +8717,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -8997,7 +8754,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9007,30 +8764,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9057,37 +8811,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9097,7 +8848,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9107,30 +8858,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9157,37 +8905,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9197,7 +8942,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9207,30 +8952,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9257,37 +8999,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9297,7 +9036,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9307,30 +9046,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9357,37 +9093,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9397,7 +9130,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9407,30 +9140,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9457,37 +9187,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9497,7 +9224,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9507,30 +9234,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9557,37 +9281,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9597,7 +9318,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9607,30 +9328,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9657,37 +9375,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9697,7 +9412,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9707,30 +9422,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9757,37 +9469,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9797,7 +9506,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9807,30 +9516,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9857,37 +9563,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9897,7 +9600,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9907,30 +9610,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -9957,37 +9657,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -9997,7 +9694,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10007,30 +9704,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -10057,37 +9751,34 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10097,7 +9788,7 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -10107,30 +9798,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -10157,20 +9845,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10197,20 +9892,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10237,20 +9939,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10277,20 +9986,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10317,20 +10033,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10357,20 +10080,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10397,20 +10127,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10437,20 +10174,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10477,20 +10221,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10517,20 +10268,27 @@ description: Artifact commands kittycad_svg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -10552,5 +10310,7834 @@ description: Artifact commands kittycad_svg.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/kittycad_svg/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kittycad_svg/artifact_graph_flowchart.snap.md
index d81217885..a854f2173 100644
--- a/rust/kcl-lib/tests/kittycad_svg/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/kittycad_svg/artifact_graph_flowchart.snap.md
@@ -572,566 +572,285 @@ flowchart LR
568["Cap Start"]
569["Cap End"]
570["SweepEdge Opposite"]
- 571["SweepEdge Adjacent"]
+ 571["SweepEdge Opposite"]
572["SweepEdge Opposite"]
- 573["SweepEdge Adjacent"]
+ 573["SweepEdge Opposite"]
574["SweepEdge Opposite"]
- 575["SweepEdge Adjacent"]
+ 575["SweepEdge Opposite"]
576["SweepEdge Opposite"]
- 577["SweepEdge Adjacent"]
+ 577["SweepEdge Opposite"]
578["SweepEdge Opposite"]
- 579["SweepEdge Adjacent"]
+ 579["SweepEdge Opposite"]
580["SweepEdge Opposite"]
- 581["SweepEdge Adjacent"]
+ 581["SweepEdge Opposite"]
582["SweepEdge Opposite"]
- 583["SweepEdge Adjacent"]
+ 583["SweepEdge Opposite"]
584["SweepEdge Opposite"]
- 585["SweepEdge Adjacent"]
+ 585["SweepEdge Opposite"]
586["SweepEdge Opposite"]
- 587["SweepEdge Adjacent"]
+ 587["SweepEdge Opposite"]
588["SweepEdge Opposite"]
- 589["SweepEdge Adjacent"]
+ 589["SweepEdge Opposite"]
590["SweepEdge Opposite"]
- 591["SweepEdge Adjacent"]
+ 591["SweepEdge Opposite"]
592["SweepEdge Opposite"]
- 593["SweepEdge Adjacent"]
+ 593["SweepEdge Opposite"]
594["SweepEdge Opposite"]
- 595["SweepEdge Adjacent"]
+ 595["SweepEdge Opposite"]
596["SweepEdge Opposite"]
- 597["SweepEdge Adjacent"]
+ 597["SweepEdge Opposite"]
598["SweepEdge Opposite"]
- 599["SweepEdge Adjacent"]
+ 599["SweepEdge Opposite"]
600["SweepEdge Opposite"]
- 601["SweepEdge Adjacent"]
+ 601["SweepEdge Opposite"]
602["SweepEdge Opposite"]
- 603["SweepEdge Adjacent"]
+ 603["SweepEdge Opposite"]
604["SweepEdge Opposite"]
- 605["SweepEdge Adjacent"]
+ 605["SweepEdge Opposite"]
606["SweepEdge Opposite"]
- 607["SweepEdge Adjacent"]
+ 607["SweepEdge Opposite"]
608["SweepEdge Opposite"]
- 609["SweepEdge Adjacent"]
+ 609["SweepEdge Opposite"]
610["SweepEdge Opposite"]
- 611["SweepEdge Adjacent"]
+ 611["SweepEdge Opposite"]
612["SweepEdge Opposite"]
- 613["SweepEdge Adjacent"]
+ 613["SweepEdge Opposite"]
614["SweepEdge Opposite"]
- 615["SweepEdge Adjacent"]
+ 615["SweepEdge Opposite"]
616["SweepEdge Opposite"]
- 617["SweepEdge Adjacent"]
+ 617["SweepEdge Opposite"]
618["SweepEdge Opposite"]
- 619["SweepEdge Adjacent"]
+ 619["SweepEdge Opposite"]
620["SweepEdge Opposite"]
- 621["SweepEdge Adjacent"]
+ 621["SweepEdge Opposite"]
622["SweepEdge Opposite"]
- 623["SweepEdge Adjacent"]
+ 623["SweepEdge Opposite"]
624["SweepEdge Opposite"]
- 625["SweepEdge Adjacent"]
+ 625["SweepEdge Opposite"]
626["SweepEdge Opposite"]
- 627["SweepEdge Adjacent"]
+ 627["SweepEdge Opposite"]
628["SweepEdge Opposite"]
- 629["SweepEdge Adjacent"]
+ 629["SweepEdge Opposite"]
630["SweepEdge Opposite"]
- 631["SweepEdge Adjacent"]
+ 631["SweepEdge Opposite"]
632["SweepEdge Opposite"]
- 633["SweepEdge Adjacent"]
+ 633["SweepEdge Opposite"]
634["SweepEdge Opposite"]
- 635["SweepEdge Adjacent"]
+ 635["SweepEdge Opposite"]
636["SweepEdge Opposite"]
- 637["SweepEdge Adjacent"]
+ 637["SweepEdge Opposite"]
638["SweepEdge Opposite"]
- 639["SweepEdge Adjacent"]
+ 639["SweepEdge Opposite"]
640["SweepEdge Opposite"]
- 641["SweepEdge Adjacent"]
+ 641["SweepEdge Opposite"]
642["SweepEdge Opposite"]
- 643["SweepEdge Adjacent"]
+ 643["SweepEdge Opposite"]
644["SweepEdge Opposite"]
- 645["SweepEdge Adjacent"]
+ 645["SweepEdge Opposite"]
646["SweepEdge Opposite"]
- 647["SweepEdge Adjacent"]
+ 647["SweepEdge Opposite"]
648["SweepEdge Opposite"]
- 649["SweepEdge Adjacent"]
+ 649["SweepEdge Opposite"]
650["SweepEdge Opposite"]
- 651["SweepEdge Adjacent"]
+ 651["SweepEdge Opposite"]
652["SweepEdge Opposite"]
- 653["SweepEdge Adjacent"]
+ 653["SweepEdge Opposite"]
654["SweepEdge Opposite"]
- 655["SweepEdge Adjacent"]
+ 655["SweepEdge Opposite"]
656["SweepEdge Opposite"]
- 657["SweepEdge Adjacent"]
+ 657["SweepEdge Opposite"]
658["SweepEdge Opposite"]
- 659["SweepEdge Adjacent"]
+ 659["SweepEdge Opposite"]
660["SweepEdge Opposite"]
- 661["SweepEdge Adjacent"]
+ 661["SweepEdge Opposite"]
662["SweepEdge Opposite"]
- 663["SweepEdge Adjacent"]
+ 663["SweepEdge Opposite"]
664["SweepEdge Opposite"]
- 665["SweepEdge Adjacent"]
+ 665["SweepEdge Opposite"]
666["SweepEdge Opposite"]
- 667["SweepEdge Adjacent"]
+ 667["SweepEdge Opposite"]
668["SweepEdge Opposite"]
- 669["SweepEdge Adjacent"]
+ 669["SweepEdge Opposite"]
670["SweepEdge Opposite"]
- 671["SweepEdge Adjacent"]
+ 671["SweepEdge Opposite"]
672["SweepEdge Opposite"]
- 673["SweepEdge Adjacent"]
+ 673["SweepEdge Opposite"]
674["SweepEdge Opposite"]
- 675["SweepEdge Adjacent"]
+ 675["SweepEdge Opposite"]
676["SweepEdge Opposite"]
- 677["SweepEdge Adjacent"]
+ 677["SweepEdge Opposite"]
678["SweepEdge Opposite"]
- 679["SweepEdge Adjacent"]
+ 679["SweepEdge Opposite"]
680["SweepEdge Opposite"]
- 681["SweepEdge Adjacent"]
+ 681["SweepEdge Opposite"]
682["SweepEdge Opposite"]
- 683["SweepEdge Adjacent"]
+ 683["SweepEdge Opposite"]
684["SweepEdge Opposite"]
- 685["SweepEdge Adjacent"]
+ 685["SweepEdge Opposite"]
686["SweepEdge Opposite"]
- 687["SweepEdge Adjacent"]
+ 687["SweepEdge Opposite"]
688["SweepEdge Opposite"]
- 689["SweepEdge Adjacent"]
+ 689["SweepEdge Opposite"]
690["SweepEdge Opposite"]
- 691["SweepEdge Adjacent"]
+ 691["SweepEdge Opposite"]
692["SweepEdge Opposite"]
- 693["SweepEdge Adjacent"]
+ 693["SweepEdge Opposite"]
694["SweepEdge Opposite"]
- 695["SweepEdge Adjacent"]
+ 695["SweepEdge Opposite"]
696["SweepEdge Opposite"]
- 697["SweepEdge Adjacent"]
+ 697["SweepEdge Opposite"]
698["SweepEdge Opposite"]
- 699["SweepEdge Adjacent"]
+ 699["SweepEdge Opposite"]
700["SweepEdge Opposite"]
- 701["SweepEdge Adjacent"]
+ 701["SweepEdge Opposite"]
702["SweepEdge Opposite"]
- 703["SweepEdge Adjacent"]
+ 703["SweepEdge Opposite"]
704["SweepEdge Opposite"]
- 705["SweepEdge Adjacent"]
+ 705["SweepEdge Opposite"]
706["SweepEdge Opposite"]
- 707["SweepEdge Adjacent"]
+ 707["SweepEdge Opposite"]
708["SweepEdge Opposite"]
- 709["SweepEdge Adjacent"]
+ 709["SweepEdge Opposite"]
710["SweepEdge Opposite"]
- 711["SweepEdge Adjacent"]
+ 711["SweepEdge Opposite"]
712["SweepEdge Opposite"]
- 713["SweepEdge Adjacent"]
+ 713["SweepEdge Opposite"]
714["SweepEdge Opposite"]
- 715["SweepEdge Adjacent"]
+ 715["SweepEdge Opposite"]
716["SweepEdge Opposite"]
- 717["SweepEdge Adjacent"]
+ 717["SweepEdge Opposite"]
718["SweepEdge Opposite"]
- 719["SweepEdge Adjacent"]
+ 719["SweepEdge Opposite"]
720["SweepEdge Opposite"]
- 721["SweepEdge Adjacent"]
+ 721["SweepEdge Opposite"]
722["SweepEdge Opposite"]
- 723["SweepEdge Adjacent"]
+ 723["SweepEdge Opposite"]
724["SweepEdge Opposite"]
- 725["SweepEdge Adjacent"]
+ 725["SweepEdge Opposite"]
726["SweepEdge Opposite"]
- 727["SweepEdge Adjacent"]
+ 727["SweepEdge Opposite"]
728["SweepEdge Opposite"]
- 729["SweepEdge Adjacent"]
+ 729["SweepEdge Opposite"]
730["SweepEdge Opposite"]
- 731["SweepEdge Adjacent"]
+ 731["SweepEdge Opposite"]
732["SweepEdge Opposite"]
- 733["SweepEdge Adjacent"]
+ 733["SweepEdge Opposite"]
734["SweepEdge Opposite"]
- 735["SweepEdge Adjacent"]
+ 735["SweepEdge Opposite"]
736["SweepEdge Opposite"]
- 737["SweepEdge Adjacent"]
+ 737["SweepEdge Opposite"]
738["SweepEdge Opposite"]
- 739["SweepEdge Adjacent"]
+ 739["SweepEdge Opposite"]
740["SweepEdge Opposite"]
- 741["SweepEdge Adjacent"]
+ 741["SweepEdge Opposite"]
742["SweepEdge Opposite"]
- 743["SweepEdge Adjacent"]
+ 743["SweepEdge Opposite"]
744["SweepEdge Opposite"]
- 745["SweepEdge Adjacent"]
+ 745["SweepEdge Opposite"]
746["SweepEdge Opposite"]
- 747["SweepEdge Adjacent"]
+ 747["SweepEdge Opposite"]
748["SweepEdge Opposite"]
- 749["SweepEdge Adjacent"]
+ 749["SweepEdge Opposite"]
750["SweepEdge Opposite"]
- 751["SweepEdge Adjacent"]
+ 751["SweepEdge Opposite"]
752["SweepEdge Opposite"]
- 753["SweepEdge Adjacent"]
+ 753["SweepEdge Opposite"]
754["SweepEdge Opposite"]
- 755["SweepEdge Adjacent"]
+ 755["SweepEdge Opposite"]
756["SweepEdge Opposite"]
- 757["SweepEdge Adjacent"]
+ 757["SweepEdge Opposite"]
758["SweepEdge Opposite"]
- 759["SweepEdge Adjacent"]
+ 759["SweepEdge Opposite"]
760["SweepEdge Opposite"]
- 761["SweepEdge Adjacent"]
+ 761["SweepEdge Opposite"]
762["SweepEdge Opposite"]
- 763["SweepEdge Adjacent"]
+ 763["SweepEdge Opposite"]
764["SweepEdge Opposite"]
- 765["SweepEdge Adjacent"]
+ 765["SweepEdge Opposite"]
766["SweepEdge Opposite"]
- 767["SweepEdge Adjacent"]
+ 767["SweepEdge Opposite"]
768["SweepEdge Opposite"]
- 769["SweepEdge Adjacent"]
+ 769["SweepEdge Opposite"]
770["SweepEdge Opposite"]
- 771["SweepEdge Adjacent"]
+ 771["SweepEdge Opposite"]
772["SweepEdge Opposite"]
- 773["SweepEdge Adjacent"]
+ 773["SweepEdge Opposite"]
774["SweepEdge Opposite"]
- 775["SweepEdge Adjacent"]
+ 775["SweepEdge Opposite"]
776["SweepEdge Opposite"]
- 777["SweepEdge Adjacent"]
+ 777["SweepEdge Opposite"]
778["SweepEdge Opposite"]
- 779["SweepEdge Adjacent"]
+ 779["SweepEdge Opposite"]
780["SweepEdge Opposite"]
- 781["SweepEdge Adjacent"]
+ 781["SweepEdge Opposite"]
782["SweepEdge Opposite"]
- 783["SweepEdge Adjacent"]
+ 783["SweepEdge Opposite"]
784["SweepEdge Opposite"]
- 785["SweepEdge Adjacent"]
+ 785["SweepEdge Opposite"]
786["SweepEdge Opposite"]
- 787["SweepEdge Adjacent"]
+ 787["SweepEdge Opposite"]
788["SweepEdge Opposite"]
- 789["SweepEdge Adjacent"]
+ 789["SweepEdge Opposite"]
790["SweepEdge Opposite"]
- 791["SweepEdge Adjacent"]
+ 791["SweepEdge Opposite"]
792["SweepEdge Opposite"]
- 793["SweepEdge Adjacent"]
+ 793["SweepEdge Opposite"]
794["SweepEdge Opposite"]
- 795["SweepEdge Adjacent"]
+ 795["SweepEdge Opposite"]
796["SweepEdge Opposite"]
- 797["SweepEdge Adjacent"]
+ 797["SweepEdge Opposite"]
798["SweepEdge Opposite"]
- 799["SweepEdge Adjacent"]
+ 799["SweepEdge Opposite"]
800["SweepEdge Opposite"]
- 801["SweepEdge Adjacent"]
+ 801["SweepEdge Opposite"]
802["SweepEdge Opposite"]
- 803["SweepEdge Adjacent"]
+ 803["SweepEdge Opposite"]
804["SweepEdge Opposite"]
- 805["SweepEdge Adjacent"]
+ 805["SweepEdge Opposite"]
806["SweepEdge Opposite"]
- 807["SweepEdge Adjacent"]
+ 807["SweepEdge Opposite"]
808["SweepEdge Opposite"]
- 809["SweepEdge Adjacent"]
+ 809["SweepEdge Opposite"]
810["SweepEdge Opposite"]
- 811["SweepEdge Adjacent"]
+ 811["SweepEdge Opposite"]
812["SweepEdge Opposite"]
- 813["SweepEdge Adjacent"]
+ 813["SweepEdge Opposite"]
814["SweepEdge Opposite"]
- 815["SweepEdge Adjacent"]
+ 815["SweepEdge Opposite"]
816["SweepEdge Opposite"]
- 817["SweepEdge Adjacent"]
+ 817["SweepEdge Opposite"]
818["SweepEdge Opposite"]
- 819["SweepEdge Adjacent"]
+ 819["SweepEdge Opposite"]
820["SweepEdge Opposite"]
- 821["SweepEdge Adjacent"]
+ 821["SweepEdge Opposite"]
822["SweepEdge Opposite"]
- 823["SweepEdge Adjacent"]
+ 823["SweepEdge Opposite"]
824["SweepEdge Opposite"]
- 825["SweepEdge Adjacent"]
+ 825["SweepEdge Opposite"]
826["SweepEdge Opposite"]
- 827["SweepEdge Adjacent"]
+ 827["SweepEdge Opposite"]
828["SweepEdge Opposite"]
- 829["SweepEdge Adjacent"]
+ 829["SweepEdge Opposite"]
830["SweepEdge Opposite"]
- 831["SweepEdge Adjacent"]
+ 831["SweepEdge Opposite"]
832["SweepEdge Opposite"]
- 833["SweepEdge Adjacent"]
+ 833["SweepEdge Opposite"]
834["SweepEdge Opposite"]
- 835["SweepEdge Adjacent"]
+ 835["SweepEdge Opposite"]
836["SweepEdge Opposite"]
- 837["SweepEdge Adjacent"]
+ 837["SweepEdge Opposite"]
838["SweepEdge Opposite"]
- 839["SweepEdge Adjacent"]
+ 839["SweepEdge Opposite"]
840["SweepEdge Opposite"]
- 841["SweepEdge Adjacent"]
+ 841["SweepEdge Opposite"]
842["SweepEdge Opposite"]
- 843["SweepEdge Adjacent"]
+ 843["SweepEdge Opposite"]
844["SweepEdge Opposite"]
- 845["SweepEdge Adjacent"]
+ 845["SweepEdge Opposite"]
846["SweepEdge Opposite"]
- 847["SweepEdge Adjacent"]
+ 847["SweepEdge Opposite"]
848["SweepEdge Opposite"]
- 849["SweepEdge Adjacent"]
- 850["SweepEdge Opposite"]
- 851["SweepEdge Adjacent"]
- 852["SweepEdge Opposite"]
- 853["SweepEdge Adjacent"]
- 854["SweepEdge Opposite"]
- 855["SweepEdge Adjacent"]
- 856["SweepEdge Opposite"]
- 857["SweepEdge Adjacent"]
- 858["SweepEdge Opposite"]
- 859["SweepEdge Adjacent"]
- 860["SweepEdge Opposite"]
- 861["SweepEdge Adjacent"]
- 862["SweepEdge Opposite"]
- 863["SweepEdge Adjacent"]
- 864["SweepEdge Opposite"]
- 865["SweepEdge Adjacent"]
- 866["SweepEdge Opposite"]
- 867["SweepEdge Adjacent"]
- 868["SweepEdge Opposite"]
- 869["SweepEdge Adjacent"]
- 870["SweepEdge Opposite"]
- 871["SweepEdge Adjacent"]
- 872["SweepEdge Opposite"]
- 873["SweepEdge Adjacent"]
- 874["SweepEdge Opposite"]
- 875["SweepEdge Adjacent"]
- 876["SweepEdge Opposite"]
- 877["SweepEdge Adjacent"]
- 878["SweepEdge Opposite"]
- 879["SweepEdge Adjacent"]
- 880["SweepEdge Opposite"]
- 881["SweepEdge Adjacent"]
- 882["SweepEdge Opposite"]
- 883["SweepEdge Adjacent"]
- 884["SweepEdge Opposite"]
- 885["SweepEdge Adjacent"]
- 886["SweepEdge Opposite"]
- 887["SweepEdge Adjacent"]
- 888["SweepEdge Opposite"]
- 889["SweepEdge Adjacent"]
- 890["SweepEdge Opposite"]
- 891["SweepEdge Adjacent"]
- 892["SweepEdge Opposite"]
- 893["SweepEdge Adjacent"]
- 894["SweepEdge Opposite"]
- 895["SweepEdge Adjacent"]
- 896["SweepEdge Opposite"]
- 897["SweepEdge Adjacent"]
- 898["SweepEdge Opposite"]
- 899["SweepEdge Adjacent"]
- 900["SweepEdge Opposite"]
- 901["SweepEdge Adjacent"]
- 902["SweepEdge Opposite"]
- 903["SweepEdge Adjacent"]
- 904["SweepEdge Opposite"]
- 905["SweepEdge Adjacent"]
- 906["SweepEdge Opposite"]
- 907["SweepEdge Adjacent"]
- 908["SweepEdge Opposite"]
- 909["SweepEdge Adjacent"]
- 910["SweepEdge Opposite"]
- 911["SweepEdge Adjacent"]
- 912["SweepEdge Opposite"]
- 913["SweepEdge Adjacent"]
- 914["SweepEdge Opposite"]
- 915["SweepEdge Adjacent"]
- 916["SweepEdge Opposite"]
- 917["SweepEdge Adjacent"]
- 918["SweepEdge Opposite"]
- 919["SweepEdge Adjacent"]
- 920["SweepEdge Opposite"]
- 921["SweepEdge Adjacent"]
- 922["SweepEdge Opposite"]
- 923["SweepEdge Adjacent"]
- 924["SweepEdge Opposite"]
- 925["SweepEdge Adjacent"]
- 926["SweepEdge Opposite"]
- 927["SweepEdge Adjacent"]
- 928["SweepEdge Opposite"]
- 929["SweepEdge Adjacent"]
- 930["SweepEdge Opposite"]
- 931["SweepEdge Adjacent"]
- 932["SweepEdge Opposite"]
- 933["SweepEdge Adjacent"]
- 934["SweepEdge Opposite"]
- 935["SweepEdge Adjacent"]
- 936["SweepEdge Opposite"]
- 937["SweepEdge Adjacent"]
- 938["SweepEdge Opposite"]
- 939["SweepEdge Adjacent"]
- 940["SweepEdge Opposite"]
- 941["SweepEdge Adjacent"]
- 942["SweepEdge Opposite"]
- 943["SweepEdge Adjacent"]
- 944["SweepEdge Opposite"]
- 945["SweepEdge Adjacent"]
- 946["SweepEdge Opposite"]
- 947["SweepEdge Adjacent"]
- 948["SweepEdge Opposite"]
- 949["SweepEdge Adjacent"]
- 950["SweepEdge Opposite"]
- 951["SweepEdge Adjacent"]
- 952["SweepEdge Opposite"]
- 953["SweepEdge Adjacent"]
- 954["SweepEdge Opposite"]
- 955["SweepEdge Adjacent"]
- 956["SweepEdge Opposite"]
- 957["SweepEdge Adjacent"]
- 958["SweepEdge Opposite"]
- 959["SweepEdge Adjacent"]
- 960["SweepEdge Opposite"]
- 961["SweepEdge Adjacent"]
- 962["SweepEdge Opposite"]
- 963["SweepEdge Adjacent"]
- 964["SweepEdge Opposite"]
- 965["SweepEdge Adjacent"]
- 966["SweepEdge Opposite"]
- 967["SweepEdge Adjacent"]
- 968["SweepEdge Opposite"]
- 969["SweepEdge Adjacent"]
- 970["SweepEdge Opposite"]
- 971["SweepEdge Adjacent"]
- 972["SweepEdge Opposite"]
- 973["SweepEdge Adjacent"]
- 974["SweepEdge Opposite"]
- 975["SweepEdge Adjacent"]
- 976["SweepEdge Opposite"]
- 977["SweepEdge Adjacent"]
- 978["SweepEdge Opposite"]
- 979["SweepEdge Adjacent"]
- 980["SweepEdge Opposite"]
- 981["SweepEdge Adjacent"]
- 982["SweepEdge Opposite"]
- 983["SweepEdge Adjacent"]
- 984["SweepEdge Opposite"]
- 985["SweepEdge Adjacent"]
- 986["SweepEdge Opposite"]
- 987["SweepEdge Adjacent"]
- 988["SweepEdge Opposite"]
- 989["SweepEdge Adjacent"]
- 990["SweepEdge Opposite"]
- 991["SweepEdge Adjacent"]
- 992["SweepEdge Opposite"]
- 993["SweepEdge Adjacent"]
- 994["SweepEdge Opposite"]
- 995["SweepEdge Adjacent"]
- 996["SweepEdge Opposite"]
- 997["SweepEdge Adjacent"]
- 998["SweepEdge Opposite"]
- 999["SweepEdge Adjacent"]
- 1000["SweepEdge Opposite"]
- 1001["SweepEdge Adjacent"]
- 1002["SweepEdge Opposite"]
- 1003["SweepEdge Adjacent"]
- 1004["SweepEdge Opposite"]
- 1005["SweepEdge Adjacent"]
- 1006["SweepEdge Opposite"]
- 1007["SweepEdge Adjacent"]
- 1008["SweepEdge Opposite"]
- 1009["SweepEdge Adjacent"]
- 1010["SweepEdge Opposite"]
- 1011["SweepEdge Adjacent"]
- 1012["SweepEdge Opposite"]
- 1013["SweepEdge Adjacent"]
- 1014["SweepEdge Opposite"]
- 1015["SweepEdge Adjacent"]
- 1016["SweepEdge Opposite"]
- 1017["SweepEdge Adjacent"]
- 1018["SweepEdge Opposite"]
- 1019["SweepEdge Adjacent"]
- 1020["SweepEdge Opposite"]
- 1021["SweepEdge Adjacent"]
- 1022["SweepEdge Opposite"]
- 1023["SweepEdge Adjacent"]
- 1024["SweepEdge Opposite"]
- 1025["SweepEdge Adjacent"]
- 1026["SweepEdge Opposite"]
- 1027["SweepEdge Adjacent"]
- 1028["SweepEdge Opposite"]
- 1029["SweepEdge Adjacent"]
- 1030["SweepEdge Opposite"]
- 1031["SweepEdge Adjacent"]
- 1032["SweepEdge Opposite"]
- 1033["SweepEdge Adjacent"]
- 1034["SweepEdge Opposite"]
- 1035["SweepEdge Adjacent"]
- 1036["SweepEdge Opposite"]
- 1037["SweepEdge Adjacent"]
- 1038["SweepEdge Opposite"]
- 1039["SweepEdge Adjacent"]
- 1040["SweepEdge Opposite"]
- 1041["SweepEdge Adjacent"]
- 1042["SweepEdge Opposite"]
- 1043["SweepEdge Adjacent"]
- 1044["SweepEdge Opposite"]
- 1045["SweepEdge Adjacent"]
- 1046["SweepEdge Opposite"]
- 1047["SweepEdge Adjacent"]
- 1048["SweepEdge Opposite"]
- 1049["SweepEdge Adjacent"]
- 1050["SweepEdge Opposite"]
- 1051["SweepEdge Adjacent"]
- 1052["SweepEdge Opposite"]
- 1053["SweepEdge Adjacent"]
- 1054["SweepEdge Opposite"]
- 1055["SweepEdge Adjacent"]
- 1056["SweepEdge Opposite"]
- 1057["SweepEdge Adjacent"]
- 1058["SweepEdge Opposite"]
- 1059["SweepEdge Adjacent"]
- 1060["SweepEdge Opposite"]
- 1061["SweepEdge Adjacent"]
- 1062["SweepEdge Opposite"]
- 1063["SweepEdge Adjacent"]
- 1064["SweepEdge Opposite"]
- 1065["SweepEdge Adjacent"]
- 1066["SweepEdge Opposite"]
- 1067["SweepEdge Adjacent"]
- 1068["SweepEdge Opposite"]
- 1069["SweepEdge Adjacent"]
- 1070["SweepEdge Opposite"]
- 1071["SweepEdge Adjacent"]
- 1072["SweepEdge Opposite"]
- 1073["SweepEdge Adjacent"]
- 1074["SweepEdge Opposite"]
- 1075["SweepEdge Adjacent"]
- 1076["SweepEdge Opposite"]
- 1077["SweepEdge Adjacent"]
- 1078["SweepEdge Opposite"]
- 1079["SweepEdge Adjacent"]
- 1080["SweepEdge Opposite"]
- 1081["SweepEdge Adjacent"]
- 1082["SweepEdge Opposite"]
- 1083["SweepEdge Adjacent"]
- 1084["SweepEdge Opposite"]
- 1085["SweepEdge Adjacent"]
- 1086["SweepEdge Opposite"]
- 1087["SweepEdge Adjacent"]
- 1088["SweepEdge Opposite"]
- 1089["SweepEdge Adjacent"]
- 1090["SweepEdge Opposite"]
- 1091["SweepEdge Adjacent"]
- 1092["SweepEdge Opposite"]
- 1093["SweepEdge Adjacent"]
- 1094["SweepEdge Opposite"]
- 1095["SweepEdge Adjacent"]
- 1096["SweepEdge Opposite"]
- 1097["SweepEdge Adjacent"]
- 1098["SweepEdge Opposite"]
- 1099["SweepEdge Adjacent"]
- 1100["SweepEdge Opposite"]
- 1101["SweepEdge Adjacent"]
- 1102["SweepEdge Opposite"]
- 1103["SweepEdge Adjacent"]
- 1104["SweepEdge Opposite"]
- 1105["SweepEdge Adjacent"]
- 1106["SweepEdge Opposite"]
- 1107["SweepEdge Adjacent"]
- 1108["SweepEdge Opposite"]
- 1109["SweepEdge Adjacent"]
- 1110["SweepEdge Opposite"]
- 1111["SweepEdge Adjacent"]
- 1112["SweepEdge Opposite"]
- 1113["SweepEdge Adjacent"]
- 1114["SweepEdge Opposite"]
- 1115["SweepEdge Adjacent"]
- 1116["SweepEdge Opposite"]
- 1117["SweepEdge Adjacent"]
- 1118["SweepEdge Opposite"]
- 1119["SweepEdge Adjacent"]
- 1120["SweepEdge Opposite"]
- 1121["SweepEdge Adjacent"]
- 1122["SweepEdge Opposite"]
- 1123["SweepEdge Adjacent"]
- 1124["SweepEdge Opposite"]
- 1125["SweepEdge Adjacent"]
- 1126["SweepEdge Opposite"]
- 1127["SweepEdge Adjacent"]
- 1128["SweepEdge Opposite"]
- 1129["SweepEdge Adjacent"]
- 1130["SweepEdge Opposite"]
+ 849["SweepEdge Opposite"]
1 --- 2
2 --- 3
2 --- 4
@@ -1418,848 +1137,847 @@ flowchart LR
2 ---- 286
2 --- 285
3 --- 567
- 3 --- 1130
- 3 --- 571
+ 3 --- 849
+ 3 x--> 568
4 --- 566
- 4 --- 1128
- 4 --- 1129
+ 4 --- 848
+ 4 x--> 568
5 --- 565
- 5 --- 1126
- 5 --- 1127
+ 5 --- 847
+ 5 x--> 568
6 --- 564
- 6 --- 1124
- 6 --- 1125
+ 6 --- 846
+ 6 x--> 568
7 --- 563
- 7 --- 1122
- 7 --- 1123
+ 7 --- 845
+ 7 x--> 568
8 --- 562
- 8 --- 1120
- 8 --- 1121
+ 8 --- 844
+ 8 x--> 568
9 --- 561
- 9 --- 1118
- 9 --- 1119
+ 9 --- 843
+ 9 x--> 568
10 --- 560
- 10 --- 1116
- 10 --- 1117
+ 10 --- 842
+ 10 x--> 568
11 --- 559
- 11 --- 1114
- 11 --- 1115
+ 11 --- 841
+ 11 x--> 568
12 --- 558
- 12 --- 1112
- 12 --- 1113
+ 12 --- 840
+ 12 x--> 568
13 --- 557
- 13 --- 1110
- 13 --- 1111
+ 13 --- 839
+ 13 x--> 568
14 --- 556
- 14 --- 1108
- 14 --- 1109
+ 14 --- 838
+ 14 x--> 568
15 --- 555
- 15 --- 1106
- 15 --- 1107
+ 15 --- 837
+ 15 x--> 568
16 --- 554
- 16 --- 1104
- 16 --- 1105
+ 16 --- 836
+ 16 x--> 568
17 --- 553
- 17 --- 1102
- 17 --- 1103
+ 17 --- 835
+ 17 x--> 568
18 --- 552
- 18 --- 1100
- 18 --- 1101
+ 18 --- 834
+ 18 x--> 568
19 --- 551
- 19 --- 1098
- 19 --- 1099
+ 19 --- 833
+ 19 x--> 568
20 --- 550
- 20 --- 1096
- 20 --- 1097
+ 20 --- 832
+ 20 x--> 568
21 --- 549
- 21 --- 1094
- 21 --- 1095
+ 21 --- 831
+ 21 x--> 568
22 --- 548
- 22 --- 1092
- 22 --- 1093
+ 22 --- 830
+ 22 x--> 568
23 --- 547
- 23 --- 1090
- 23 --- 1091
+ 23 --- 829
+ 23 x--> 568
24 --- 546
- 24 --- 1088
- 24 --- 1089
+ 24 --- 828
+ 24 x--> 568
25 --- 545
- 25 --- 1086
- 25 --- 1087
+ 25 --- 827
+ 25 x--> 568
26 --- 544
- 26 --- 1084
- 26 --- 1085
+ 26 --- 826
+ 26 x--> 568
27 --- 543
- 27 --- 1082
- 27 --- 1083
+ 27 --- 825
+ 27 x--> 568
28 --- 542
- 28 --- 1080
- 28 --- 1081
+ 28 --- 824
+ 28 x--> 568
29 --- 541
- 29 --- 1078
- 29 --- 1079
+ 29 --- 823
+ 29 x--> 568
30 --- 540
- 30 --- 1076
- 30 --- 1077
+ 30 --- 822
+ 30 x--> 568
31 --- 539
- 31 --- 1074
- 31 --- 1075
+ 31 --- 821
+ 31 x--> 568
32 --- 538
- 32 --- 1072
- 32 --- 1073
+ 32 --- 820
+ 32 x--> 568
33 --- 537
- 33 --- 1070
- 33 --- 1071
+ 33 --- 819
+ 33 x--> 568
34 --- 536
- 34 --- 1068
- 34 --- 1069
+ 34 --- 818
+ 34 x--> 568
35 --- 535
- 35 --- 1066
- 35 --- 1067
+ 35 --- 817
+ 35 x--> 568
36 --- 534
- 36 --- 1064
- 36 --- 1065
+ 36 --- 816
+ 36 x--> 568
37 --- 533
- 37 --- 1062
- 37 --- 1063
+ 37 --- 815
+ 37 x--> 568
38 --- 532
- 38 --- 1060
- 38 --- 1061
+ 38 --- 814
+ 38 x--> 568
39 --- 531
- 39 --- 1058
- 39 --- 1059
+ 39 --- 813
+ 39 x--> 568
40 --- 530
- 40 --- 1056
- 40 --- 1057
+ 40 --- 812
+ 40 x--> 568
41 --- 529
- 41 --- 1054
- 41 --- 1055
+ 41 --- 811
+ 41 x--> 568
42 --- 528
- 42 --- 1052
- 42 --- 1053
+ 42 --- 810
+ 42 x--> 568
43 --- 527
- 43 --- 1050
- 43 --- 1051
+ 43 --- 809
+ 43 x--> 568
44 --- 526
- 44 --- 1048
- 44 --- 1049
+ 44 --- 808
+ 44 x--> 568
45 --- 525
- 45 --- 1046
- 45 --- 1047
+ 45 --- 807
+ 45 x--> 568
46 --- 524
- 46 --- 1044
- 46 --- 1045
+ 46 --- 806
+ 46 x--> 568
47 --- 523
- 47 --- 1042
- 47 --- 1043
+ 47 --- 805
+ 47 x--> 568
48 --- 522
- 48 --- 1040
- 48 --- 1041
+ 48 --- 804
+ 48 x--> 568
49 --- 521
- 49 --- 1038
- 49 --- 1039
+ 49 --- 803
+ 49 x--> 568
50 --- 520
- 50 --- 1036
- 50 --- 1037
+ 50 --- 802
+ 50 x--> 568
51 --- 519
- 51 --- 1034
- 51 --- 1035
+ 51 --- 801
+ 51 x--> 568
52 --- 518
- 52 --- 1032
- 52 --- 1033
+ 52 --- 800
+ 52 x--> 568
53 --- 517
- 53 --- 1030
- 53 --- 1031
+ 53 --- 799
+ 53 x--> 568
54 --- 516
- 54 --- 1028
- 54 --- 1029
+ 54 --- 798
+ 54 x--> 568
55 --- 515
- 55 --- 1026
- 55 --- 1027
+ 55 --- 797
+ 55 x--> 568
56 --- 514
- 56 --- 1024
- 56 --- 1025
+ 56 --- 796
+ 56 x--> 568
57 --- 513
- 57 --- 1022
- 57 --- 1023
+ 57 --- 795
+ 57 x--> 568
58 --- 512
- 58 --- 1020
- 58 --- 1021
+ 58 --- 794
+ 58 x--> 568
59 --- 511
- 59 --- 1018
- 59 --- 1019
+ 59 --- 793
+ 59 x--> 568
60 --- 510
- 60 --- 1016
- 60 --- 1017
+ 60 --- 792
+ 60 x--> 568
61 --- 509
- 61 --- 1014
- 61 --- 1015
+ 61 --- 791
+ 61 x--> 568
62 --- 508
- 62 --- 1012
- 62 --- 1013
+ 62 --- 790
+ 62 x--> 568
63 --- 507
- 63 --- 1010
- 63 --- 1011
+ 63 --- 789
+ 63 x--> 568
64 --- 506
- 64 --- 1008
- 64 --- 1009
+ 64 --- 788
+ 64 x--> 568
65 --- 505
- 65 --- 1006
- 65 --- 1007
+ 65 --- 787
+ 65 x--> 568
66 --- 504
- 66 --- 1004
- 66 --- 1005
+ 66 --- 786
+ 66 x--> 568
67 --- 503
- 67 --- 1002
- 67 --- 1003
+ 67 --- 785
+ 67 x--> 568
68 --- 502
- 68 --- 1000
- 68 --- 1001
+ 68 --- 784
+ 68 x--> 568
69 --- 501
- 69 --- 998
- 69 --- 999
+ 69 --- 783
+ 69 x--> 568
70 --- 500
- 70 --- 996
- 70 --- 997
+ 70 --- 782
+ 70 x--> 568
71 --- 499
- 71 --- 994
- 71 --- 995
+ 71 --- 781
+ 71 x--> 568
72 --- 498
- 72 --- 992
- 72 --- 993
+ 72 --- 780
+ 72 x--> 568
73 --- 497
- 73 --- 990
- 73 --- 991
+ 73 --- 779
+ 73 x--> 568
74 --- 496
- 74 --- 988
- 74 --- 989
+ 74 --- 778
+ 74 x--> 568
75 --- 495
- 75 --- 986
- 75 --- 987
+ 75 --- 777
+ 75 x--> 568
76 --- 494
- 76 --- 984
- 76 --- 985
+ 76 --- 776
+ 76 x--> 568
77 --- 493
- 77 --- 982
- 77 --- 983
+ 77 --- 775
+ 77 x--> 568
78 --- 492
- 78 --- 980
- 78 --- 981
+ 78 --- 774
+ 78 x--> 568
79 --- 491
- 79 --- 978
- 79 --- 979
+ 79 --- 773
+ 79 x--> 568
80 --- 490
- 80 --- 976
- 80 --- 977
+ 80 --- 772
+ 80 x--> 568
81 --- 489
- 81 --- 974
- 81 --- 975
+ 81 --- 771
+ 81 x--> 568
82 --- 488
- 82 --- 972
- 82 --- 973
+ 82 --- 770
+ 82 x--> 568
83 --- 487
- 83 --- 970
- 83 --- 971
+ 83 --- 769
+ 83 x--> 568
84 --- 486
- 84 --- 968
- 84 --- 969
+ 84 --- 768
+ 84 x--> 568
85 --- 485
- 85 --- 966
- 85 --- 967
+ 85 --- 767
+ 85 x--> 568
86 --- 484
- 86 --- 964
- 86 --- 965
+ 86 --- 766
+ 86 x--> 568
87 --- 483
- 87 --- 962
- 87 --- 963
+ 87 --- 765
+ 87 x--> 568
88 --- 482
- 88 --- 960
- 88 --- 961
+ 88 --- 764
+ 88 x--> 568
89 --- 481
- 89 --- 958
- 89 --- 959
+ 89 --- 763
+ 89 x--> 568
90 --- 480
- 90 --- 956
- 90 --- 957
+ 90 --- 762
+ 90 x--> 568
91 --- 479
- 91 --- 954
- 91 --- 955
+ 91 --- 761
+ 91 x--> 568
92 --- 478
- 92 --- 952
- 92 --- 953
+ 92 --- 760
+ 92 x--> 568
93 --- 477
- 93 --- 950
- 93 --- 951
+ 93 --- 759
+ 93 x--> 568
94 --- 476
- 94 --- 948
- 94 --- 949
+ 94 --- 758
+ 94 x--> 568
95 --- 475
- 95 --- 946
- 95 --- 947
+ 95 --- 757
+ 95 x--> 568
96 --- 474
- 96 --- 944
- 96 --- 945
+ 96 --- 756
+ 96 x--> 568
97 --- 473
- 97 --- 942
- 97 --- 943
+ 97 --- 755
+ 97 x--> 568
98 --- 472
- 98 --- 940
- 98 --- 941
+ 98 --- 754
+ 98 x--> 568
99 --- 471
- 99 --- 938
- 99 --- 939
+ 99 --- 753
+ 99 x--> 568
100 --- 470
- 100 --- 936
- 100 --- 937
+ 100 --- 752
+ 100 x--> 568
101 --- 469
- 101 --- 934
- 101 --- 935
+ 101 --- 751
+ 101 x--> 568
102 --- 468
- 102 --- 932
- 102 --- 933
+ 102 --- 750
+ 102 x--> 568
103 --- 467
- 103 --- 930
- 103 --- 931
+ 103 --- 749
+ 103 x--> 568
104 --- 466
- 104 --- 928
- 104 --- 929
+ 104 --- 748
+ 104 x--> 568
105 --- 465
- 105 --- 926
- 105 --- 927
+ 105 --- 747
+ 105 x--> 568
106 --- 464
- 106 --- 924
- 106 --- 925
+ 106 --- 746
+ 106 x--> 568
107 --- 463
- 107 --- 922
- 107 --- 923
+ 107 --- 745
+ 107 x--> 568
108 --- 462
- 108 --- 920
- 108 --- 921
+ 108 --- 744
+ 108 x--> 568
109 --- 461
- 109 --- 918
- 109 --- 919
+ 109 --- 743
+ 109 x--> 568
110 --- 460
- 110 --- 916
- 110 --- 917
+ 110 --- 742
+ 110 x--> 568
111 --- 459
- 111 --- 914
- 111 --- 915
+ 111 --- 741
+ 111 x--> 568
112 --- 458
- 112 --- 912
- 112 --- 913
+ 112 --- 740
+ 112 x--> 568
113 --- 457
- 113 --- 910
- 113 --- 911
+ 113 --- 739
+ 113 x--> 568
114 --- 456
- 114 --- 908
- 114 --- 909
+ 114 --- 738
+ 114 x--> 568
115 --- 455
- 115 --- 906
- 115 --- 907
+ 115 --- 737
+ 115 x--> 568
116 --- 454
- 116 --- 904
- 116 --- 905
+ 116 --- 736
+ 116 x--> 568
117 --- 453
- 117 --- 902
- 117 --- 903
+ 117 --- 735
+ 117 x--> 568
118 --- 452
- 118 --- 900
- 118 --- 901
+ 118 --- 734
+ 118 x--> 568
120 --- 451
- 120 --- 898
- 120 --- 899
+ 120 --- 733
+ 120 x--> 568
121 --- 450
- 121 --- 896
- 121 --- 897
+ 121 --- 732
+ 121 x--> 568
122 --- 449
- 122 --- 894
- 122 --- 895
+ 122 --- 731
+ 122 x--> 568
123 --- 448
- 123 --- 892
- 123 --- 893
+ 123 --- 730
+ 123 x--> 568
124 --- 447
- 124 --- 890
- 124 --- 891
+ 124 --- 729
+ 124 x--> 568
125 --- 446
- 125 --- 888
- 125 --- 889
+ 125 --- 728
+ 125 x--> 568
126 --- 445
- 126 --- 886
- 126 --- 887
+ 126 --- 727
+ 126 x--> 568
127 --- 444
- 127 --- 884
- 127 --- 885
+ 127 --- 726
+ 127 x--> 568
128 --- 443
- 128 --- 882
- 128 --- 883
+ 128 --- 725
+ 128 x--> 568
129 --- 442
- 129 --- 880
- 129 --- 881
+ 129 --- 724
+ 129 x--> 568
130 --- 441
- 130 --- 878
- 130 --- 879
+ 130 --- 723
+ 130 x--> 568
131 --- 440
- 131 --- 876
- 131 --- 877
+ 131 --- 722
+ 131 x--> 568
132 --- 439
- 132 --- 874
- 132 --- 875
+ 132 --- 721
+ 132 x--> 568
133 --- 438
- 133 --- 872
- 133 --- 873
+ 133 --- 720
+ 133 x--> 568
134 --- 437
- 134 --- 870
- 134 --- 871
+ 134 --- 719
+ 134 x--> 568
135 --- 436
- 135 --- 868
- 135 --- 869
+ 135 --- 718
+ 135 x--> 568
136 --- 435
- 136 --- 866
- 136 --- 867
+ 136 --- 717
+ 136 x--> 568
137 --- 434
- 137 --- 864
- 137 --- 865
+ 137 --- 716
+ 137 x--> 568
138 --- 433
- 138 --- 862
- 138 --- 863
+ 138 --- 715
+ 138 x--> 568
139 --- 432
- 139 --- 860
- 139 --- 861
+ 139 --- 714
+ 139 x--> 568
140 --- 431
- 140 --- 858
- 140 --- 859
+ 140 --- 713
+ 140 x--> 568
141 --- 430
- 141 --- 856
- 141 --- 857
+ 141 --- 712
+ 141 x--> 568
142 --- 429
- 142 --- 854
- 142 --- 855
+ 142 --- 711
+ 142 x--> 568
143 --- 428
- 143 --- 852
- 143 --- 853
+ 143 --- 710
+ 143 x--> 568
144 --- 427
- 144 --- 850
- 144 --- 851
+ 144 --- 709
+ 144 x--> 568
145 --- 426
- 145 --- 848
- 145 --- 849
+ 145 --- 708
+ 145 x--> 568
146 --- 425
- 146 --- 846
- 146 --- 847
+ 146 --- 707
+ 146 x--> 568
147 --- 424
- 147 --- 844
- 147 --- 845
+ 147 --- 706
+ 147 x--> 568
148 --- 423
- 148 --- 842
- 148 --- 843
+ 148 --- 705
+ 148 x--> 568
149 --- 422
- 149 --- 840
- 149 --- 841
+ 149 --- 704
+ 149 x--> 568
150 --- 421
- 150 --- 838
- 150 --- 839
+ 150 --- 703
+ 150 x--> 568
151 --- 420
- 151 --- 836
- 151 --- 837
+ 151 --- 702
+ 151 x--> 568
152 --- 419
- 152 --- 834
- 152 --- 835
+ 152 --- 701
+ 152 x--> 568
153 --- 418
- 153 --- 832
- 153 --- 833
+ 153 --- 700
+ 153 x--> 568
154 --- 417
- 154 --- 830
- 154 --- 831
+ 154 --- 699
+ 154 x--> 568
155 --- 416
- 155 --- 828
- 155 --- 829
+ 155 --- 698
+ 155 x--> 568
156 --- 415
- 156 --- 826
- 156 --- 827
+ 156 --- 697
+ 156 x--> 568
157 --- 414
- 157 --- 824
- 157 --- 825
+ 157 --- 696
+ 157 x--> 568
158 --- 413
- 158 --- 822
- 158 --- 823
+ 158 --- 695
+ 158 x--> 568
159 --- 412
- 159 --- 820
- 159 --- 821
+ 159 --- 694
+ 159 x--> 568
160 --- 411
- 160 --- 818
- 160 --- 819
+ 160 --- 693
+ 160 x--> 568
161 --- 410
- 161 --- 816
- 161 --- 817
+ 161 --- 692
+ 161 x--> 568
162 --- 409
- 162 --- 814
- 162 --- 815
+ 162 --- 691
+ 162 x--> 568
163 --- 408
- 163 --- 812
- 163 --- 813
+ 163 --- 690
+ 163 x--> 568
164 --- 407
- 164 --- 810
- 164 --- 811
+ 164 --- 689
+ 164 x--> 568
165 --- 406
- 165 --- 808
- 165 --- 809
+ 165 --- 688
+ 165 x--> 568
166 --- 405
- 166 --- 806
- 166 --- 807
+ 166 --- 687
+ 166 x--> 568
167 --- 404
- 167 --- 804
- 167 --- 805
+ 167 --- 686
+ 167 x--> 568
168 --- 403
- 168 --- 802
- 168 --- 803
+ 168 --- 685
+ 168 x--> 568
169 --- 402
- 169 --- 800
- 169 --- 801
+ 169 --- 684
+ 169 x--> 568
170 --- 401
- 170 --- 798
- 170 --- 799
+ 170 --- 683
+ 170 x--> 568
171 --- 400
- 171 --- 796
- 171 --- 797
+ 171 --- 682
+ 171 x--> 568
172 --- 399
- 172 --- 794
- 172 --- 795
+ 172 --- 681
+ 172 x--> 568
173 --- 398
- 173 --- 792
- 173 --- 793
+ 173 --- 680
+ 173 x--> 568
174 --- 397
- 174 --- 790
- 174 --- 791
+ 174 --- 679
+ 174 x--> 568
175 --- 396
- 175 --- 788
- 175 --- 789
+ 175 --- 678
+ 175 x--> 568
176 --- 395
- 176 --- 786
- 176 --- 787
+ 176 --- 677
+ 176 x--> 568
177 --- 394
- 177 --- 784
- 177 --- 785
+ 177 --- 676
+ 177 x--> 568
178 --- 393
- 178 --- 782
- 178 --- 783
+ 178 --- 675
+ 178 x--> 568
179 --- 392
- 179 --- 780
- 179 --- 781
+ 179 --- 674
+ 179 x--> 568
180 --- 391
- 180 --- 778
- 180 --- 779
+ 180 --- 673
+ 180 x--> 568
181 --- 390
- 181 --- 776
- 181 --- 777
+ 181 --- 672
+ 181 x--> 568
182 --- 389
- 182 --- 774
- 182 --- 775
+ 182 --- 671
+ 182 x--> 568
183 --- 388
- 183 --- 772
- 183 --- 773
+ 183 --- 670
+ 183 x--> 568
184 --- 387
- 184 --- 770
- 184 --- 771
+ 184 --- 669
+ 184 x--> 568
185 --- 386
- 185 --- 768
- 185 --- 769
+ 185 --- 668
+ 185 x--> 568
186 --- 385
- 186 --- 766
- 186 --- 767
+ 186 --- 667
+ 186 x--> 568
187 --- 384
- 187 --- 764
- 187 --- 765
+ 187 --- 666
+ 187 x--> 568
188 --- 383
- 188 --- 762
- 188 --- 763
+ 188 --- 665
+ 188 x--> 568
189 --- 382
- 189 --- 760
- 189 --- 761
+ 189 --- 664
+ 189 x--> 568
190 --- 381
- 190 --- 758
- 190 --- 759
+ 190 --- 663
+ 190 x--> 568
191 --- 380
- 191 --- 756
- 191 --- 757
+ 191 --- 662
+ 191 x--> 568
192 --- 379
- 192 --- 754
- 192 --- 755
+ 192 --- 661
+ 192 x--> 568
193 --- 378
- 193 --- 752
- 193 --- 753
+ 193 --- 660
+ 193 x--> 568
194 --- 377
- 194 --- 750
- 194 --- 751
+ 194 --- 659
+ 194 x--> 568
195 --- 376
- 195 --- 748
- 195 --- 749
+ 195 --- 658
+ 195 x--> 568
196 --- 375
- 196 --- 746
- 196 --- 747
+ 196 --- 657
+ 196 x--> 568
197 --- 374
- 197 --- 744
- 197 --- 745
+ 197 --- 656
+ 197 x--> 568
198 --- 373
- 198 --- 742
- 198 --- 743
+ 198 --- 655
+ 198 x--> 568
199 --- 372
- 199 --- 740
- 199 --- 741
+ 199 --- 654
+ 199 x--> 568
200 --- 371
- 200 --- 738
- 200 --- 739
+ 200 --- 653
+ 200 x--> 568
201 --- 370
- 201 --- 736
- 201 --- 737
+ 201 --- 652
+ 201 x--> 568
202 --- 369
- 202 --- 734
- 202 --- 735
+ 202 --- 651
+ 202 x--> 568
203 --- 368
- 203 --- 732
- 203 --- 733
+ 203 --- 650
+ 203 x--> 568
204 --- 367
- 204 --- 730
- 204 --- 731
+ 204 --- 649
+ 204 x--> 568
205 --- 366
- 205 --- 728
- 205 --- 729
+ 205 --- 648
+ 205 x--> 568
206 --- 365
- 206 --- 726
- 206 --- 727
+ 206 --- 647
+ 206 x--> 568
207 --- 364
- 207 --- 724
- 207 --- 725
+ 207 --- 646
+ 207 x--> 568
208 --- 363
- 208 --- 722
- 208 --- 723
+ 208 --- 645
+ 208 x--> 568
209 --- 362
- 209 --- 720
- 209 --- 721
+ 209 --- 644
+ 209 x--> 568
210 --- 361
- 210 --- 718
- 210 --- 719
+ 210 --- 643
+ 210 x--> 568
211 --- 360
- 211 --- 716
- 211 --- 717
+ 211 --- 642
+ 211 x--> 568
212 --- 359
- 212 --- 714
- 212 --- 715
+ 212 --- 641
+ 212 x--> 568
213 --- 358
- 213 --- 712
- 213 --- 713
+ 213 --- 640
+ 213 x--> 568
214 --- 357
- 214 --- 710
- 214 --- 711
+ 214 --- 639
+ 214 x--> 568
215 --- 356
- 215 --- 708
- 215 --- 709
+ 215 --- 638
+ 215 x--> 568
216 --- 355
- 216 --- 706
- 216 --- 707
+ 216 --- 637
+ 216 x--> 568
217 --- 354
- 217 --- 704
- 217 --- 705
+ 217 --- 636
+ 217 x--> 568
218 --- 353
- 218 --- 702
- 218 --- 703
+ 218 --- 635
+ 218 x--> 568
219 --- 352
- 219 --- 700
- 219 --- 701
+ 219 --- 634
+ 219 x--> 568
220 --- 351
- 220 --- 698
- 220 --- 699
+ 220 --- 633
+ 220 x--> 568
221 --- 350
- 221 --- 696
- 221 --- 697
+ 221 --- 632
+ 221 x--> 568
222 --- 349
- 222 --- 694
- 222 --- 695
+ 222 --- 631
+ 222 x--> 568
223 --- 348
- 223 --- 692
- 223 --- 693
+ 223 --- 630
+ 223 x--> 568
224 --- 347
- 224 --- 690
- 224 --- 691
+ 224 --- 629
+ 224 x--> 568
225 --- 346
- 225 --- 688
- 225 --- 689
+ 225 --- 628
+ 225 x--> 568
226 --- 345
- 226 --- 686
- 226 --- 687
+ 226 --- 627
+ 226 x--> 568
227 --- 344
- 227 --- 684
- 227 --- 685
+ 227 --- 626
+ 227 x--> 568
228 --- 343
- 228 --- 682
- 228 --- 683
+ 228 --- 625
+ 228 x--> 568
229 --- 342
- 229 --- 680
- 229 --- 681
+ 229 --- 624
+ 229 x--> 568
230 --- 341
- 230 --- 678
- 230 --- 679
+ 230 --- 623
+ 230 x--> 568
231 --- 340
- 231 --- 676
- 231 --- 677
+ 231 --- 622
+ 231 x--> 568
232 --- 339
- 232 --- 674
- 232 --- 675
+ 232 --- 621
+ 232 x--> 568
233 --- 338
- 233 --- 672
- 233 --- 673
+ 233 --- 620
+ 233 x--> 568
234 --- 337
- 234 --- 670
- 234 --- 671
+ 234 --- 619
+ 234 x--> 568
235 --- 336
- 235 --- 668
- 235 --- 669
+ 235 --- 618
+ 235 x--> 568
236 --- 335
- 236 --- 666
- 236 --- 667
+ 236 --- 617
+ 236 x--> 568
237 --- 334
- 237 --- 664
- 237 --- 665
+ 237 --- 616
+ 237 x--> 568
238 --- 333
- 238 --- 662
- 238 --- 663
+ 238 --- 615
+ 238 x--> 568
239 --- 332
- 239 --- 660
- 239 --- 661
+ 239 --- 614
+ 239 x--> 568
240 --- 331
- 240 --- 658
- 240 --- 659
+ 240 --- 613
+ 240 x--> 568
241 --- 330
- 241 --- 656
- 241 --- 657
+ 241 --- 612
+ 241 x--> 568
242 --- 329
- 242 --- 654
- 242 --- 655
+ 242 --- 611
+ 242 x--> 568
243 --- 328
- 243 --- 652
- 243 --- 653
+ 243 --- 610
+ 243 x--> 568
244 --- 327
- 244 --- 650
- 244 --- 651
+ 244 --- 609
+ 244 x--> 568
245 --- 326
- 245 --- 648
- 245 --- 649
+ 245 --- 608
+ 245 x--> 568
246 --- 325
- 246 --- 646
- 246 --- 647
+ 246 --- 607
+ 246 x--> 568
247 --- 324
- 247 --- 644
- 247 --- 645
+ 247 --- 606
+ 247 x--> 568
248 --- 323
- 248 --- 642
- 248 --- 643
+ 248 --- 605
+ 248 x--> 568
249 --- 322
- 249 --- 640
- 249 --- 641
+ 249 --- 604
+ 249 x--> 568
250 --- 321
- 250 --- 638
- 250 --- 639
+ 250 --- 603
+ 250 x--> 568
251 --- 320
- 251 --- 636
- 251 --- 637
+ 251 --- 602
+ 251 x--> 568
252 --- 319
- 252 --- 634
- 252 --- 635
+ 252 --- 601
+ 252 x--> 568
253 --- 318
- 253 --- 632
- 253 --- 633
+ 253 --- 600
+ 253 x--> 568
254 --- 317
- 254 --- 630
- 254 --- 631
+ 254 --- 599
+ 254 x--> 568
255 --- 316
- 255 --- 628
- 255 --- 629
+ 255 --- 598
+ 255 x--> 568
256 --- 315
- 256 --- 626
- 256 --- 627
+ 256 --- 597
+ 256 x--> 568
257 --- 314
- 257 --- 624
- 257 --- 625
+ 257 --- 596
+ 257 x--> 568
258 --- 313
- 258 --- 622
- 258 --- 623
+ 258 --- 595
+ 258 x--> 568
259 --- 312
- 259 --- 620
- 259 --- 621
+ 259 --- 594
+ 259 x--> 568
260 --- 311
- 260 --- 618
- 260 --- 619
+ 260 --- 593
+ 260 x--> 568
261 --- 310
- 261 --- 616
- 261 --- 617
+ 261 --- 592
+ 261 x--> 568
262 --- 309
- 262 --- 614
- 262 --- 615
+ 262 --- 591
+ 262 x--> 568
263 --- 308
- 263 --- 612
- 263 --- 613
+ 263 --- 590
+ 263 x--> 568
264 --- 307
- 264 --- 610
- 264 --- 611
+ 264 --- 589
+ 264 x--> 568
265 --- 306
- 265 --- 608
- 265 --- 609
+ 265 --- 588
+ 265 x--> 568
266 --- 305
- 266 --- 606
- 266 --- 607
+ 266 --- 587
+ 266 x--> 568
267 --- 304
- 267 --- 604
- 267 --- 605
+ 267 --- 586
+ 267 x--> 568
268 --- 303
- 268 --- 602
- 268 --- 603
+ 268 --- 585
+ 268 x--> 568
269 --- 302
- 269 --- 600
- 269 --- 601
+ 269 --- 584
+ 269 x--> 568
270 --- 301
- 270 --- 598
- 270 --- 599
+ 270 --- 583
+ 270 x--> 568
271 --- 300
- 271 --- 596
- 271 --- 597
+ 271 --- 582
+ 271 x--> 568
272 --- 299
- 272 --- 594
- 272 --- 595
+ 272 --- 581
+ 272 x--> 568
273 --- 298
- 273 --- 592
- 273 --- 593
+ 273 --- 580
+ 273 x--> 568
274 --- 297
- 274 --- 590
- 274 --- 591
+ 274 --- 579
+ 274 x--> 568
275 --- 296
- 275 --- 588
- 275 --- 589
+ 275 --- 578
+ 275 x--> 568
276 --- 295
- 276 --- 586
- 276 --- 587
+ 276 --- 577
+ 276 x--> 568
277 --- 294
- 277 --- 584
- 277 --- 585
+ 277 --- 576
+ 277 x--> 568
278 --- 293
- 278 --- 582
- 278 --- 583
+ 278 --- 575
+ 278 x--> 568
279 --- 292
- 279 --- 580
- 279 --- 581
+ 279 --- 574
+ 279 x--> 568
280 --- 291
- 280 --- 578
- 280 --- 579
+ 280 --- 573
+ 280 x--> 568
281 --- 290
- 281 --- 576
- 281 --- 577
+ 281 --- 572
+ 281 x--> 568
282 --- 289
- 282 --- 574
- 282 --- 575
+ 282 --- 571
+ 282 x--> 568
283 --- 288
- 283 --- 572
- 283 --- 573
+ 283 --- 570
+ 283 x--> 568
284 --- 287
- 284 --- 570
- 284 x--> 571
+ 284 x--> 568
286 --- 287
286 --- 288
286 --- 289
@@ -2823,285 +2541,564 @@ flowchart LR
286 --- 847
286 --- 848
286 --- 849
- 286 --- 850
- 286 --- 851
- 286 --- 852
- 286 --- 853
- 286 --- 854
- 286 --- 855
- 286 --- 856
- 286 --- 857
- 286 --- 858
- 286 --- 859
- 286 --- 860
- 286 --- 861
- 286 --- 862
- 286 --- 863
- 286 --- 864
- 286 --- 865
- 286 --- 866
- 286 --- 867
- 286 --- 868
- 286 --- 869
- 286 --- 870
- 286 --- 871
- 286 --- 872
- 286 --- 873
- 286 --- 874
- 286 --- 875
- 286 --- 876
- 286 --- 877
- 286 --- 878
- 286 --- 879
- 286 --- 880
- 286 --- 881
- 286 --- 882
- 286 --- 883
- 286 --- 884
- 286 --- 885
- 286 --- 886
- 286 --- 887
- 286 --- 888
- 286 --- 889
- 286 --- 890
- 286 --- 891
- 286 --- 892
- 286 --- 893
- 286 --- 894
- 286 --- 895
- 286 --- 896
- 286 --- 897
- 286 --- 898
- 286 --- 899
- 286 --- 900
- 286 --- 901
- 286 --- 902
- 286 --- 903
- 286 --- 904
- 286 --- 905
- 286 --- 906
- 286 --- 907
- 286 --- 908
- 286 --- 909
- 286 --- 910
- 286 --- 911
- 286 --- 912
- 286 --- 913
- 286 --- 914
- 286 --- 915
- 286 --- 916
- 286 --- 917
- 286 --- 918
- 286 --- 919
- 286 --- 920
- 286 --- 921
- 286 --- 922
- 286 --- 923
- 286 --- 924
- 286 --- 925
- 286 --- 926
- 286 --- 927
- 286 --- 928
- 286 --- 929
- 286 --- 930
- 286 --- 931
- 286 --- 932
- 286 --- 933
- 286 --- 934
- 286 --- 935
- 286 --- 936
- 286 --- 937
- 286 --- 938
- 286 --- 939
- 286 --- 940
- 286 --- 941
- 286 --- 942
- 286 --- 943
- 286 --- 944
- 286 --- 945
- 286 --- 946
- 286 --- 947
- 286 --- 948
- 286 --- 949
- 286 --- 950
- 286 --- 951
- 286 --- 952
- 286 --- 953
- 286 --- 954
- 286 --- 955
- 286 --- 956
- 286 --- 957
- 286 --- 958
- 286 --- 959
- 286 --- 960
- 286 --- 961
- 286 --- 962
- 286 --- 963
- 286 --- 964
- 286 --- 965
- 286 --- 966
- 286 --- 967
- 286 --- 968
- 286 --- 969
- 286 --- 970
- 286 --- 971
- 286 --- 972
- 286 --- 973
- 286 --- 974
- 286 --- 975
- 286 --- 976
- 286 --- 977
- 286 --- 978
- 286 --- 979
- 286 --- 980
- 286 --- 981
- 286 --- 982
- 286 --- 983
- 286 --- 984
- 286 --- 985
- 286 --- 986
- 286 --- 987
- 286 --- 988
- 286 --- 989
- 286 --- 990
- 286 --- 991
- 286 --- 992
- 286 --- 993
- 286 --- 994
- 286 --- 995
- 286 --- 996
- 286 --- 997
- 286 --- 998
- 286 --- 999
- 286 --- 1000
- 286 --- 1001
- 286 --- 1002
- 286 --- 1003
- 286 --- 1004
- 286 --- 1005
- 286 --- 1006
- 286 --- 1007
- 286 --- 1008
- 286 --- 1009
- 286 --- 1010
- 286 --- 1011
- 286 --- 1012
- 286 --- 1013
- 286 --- 1014
- 286 --- 1015
- 286 --- 1016
- 286 --- 1017
- 286 --- 1018
- 286 --- 1019
- 286 --- 1020
- 286 --- 1021
- 286 --- 1022
- 286 --- 1023
- 286 --- 1024
- 286 --- 1025
- 286 --- 1026
- 286 --- 1027
- 286 --- 1028
- 286 --- 1029
- 286 --- 1030
- 286 --- 1031
- 286 --- 1032
- 286 --- 1033
- 286 --- 1034
- 286 --- 1035
- 286 --- 1036
- 286 --- 1037
- 286 --- 1038
- 286 --- 1039
- 286 --- 1040
- 286 --- 1041
- 286 --- 1042
- 286 --- 1043
- 286 --- 1044
- 286 --- 1045
- 286 --- 1046
- 286 --- 1047
- 286 --- 1048
- 286 --- 1049
- 286 --- 1050
- 286 --- 1051
- 286 --- 1052
- 286 --- 1053
- 286 --- 1054
- 286 --- 1055
- 286 --- 1056
- 286 --- 1057
- 286 --- 1058
- 286 --- 1059
- 286 --- 1060
- 286 --- 1061
- 286 --- 1062
- 286 --- 1063
- 286 --- 1064
- 286 --- 1065
- 286 --- 1066
- 286 --- 1067
- 286 --- 1068
- 286 --- 1069
- 286 --- 1070
- 286 --- 1071
- 286 --- 1072
- 286 --- 1073
- 286 --- 1074
- 286 --- 1075
- 286 --- 1076
- 286 --- 1077
- 286 --- 1078
- 286 --- 1079
- 286 --- 1080
- 286 --- 1081
- 286 --- 1082
- 286 --- 1083
- 286 --- 1084
- 286 --- 1085
- 286 --- 1086
- 286 --- 1087
- 286 --- 1088
- 286 --- 1089
- 286 --- 1090
- 286 --- 1091
- 286 --- 1092
- 286 --- 1093
- 286 --- 1094
- 286 --- 1095
- 286 --- 1096
- 286 --- 1097
- 286 --- 1098
- 286 --- 1099
- 286 --- 1100
- 286 --- 1101
- 286 --- 1102
- 286 --- 1103
- 286 --- 1104
- 286 --- 1105
- 286 --- 1106
- 286 --- 1107
- 286 --- 1108
- 286 --- 1109
- 286 --- 1110
- 286 --- 1111
- 286 --- 1112
- 286 --- 1113
- 286 --- 1114
- 286 --- 1115
- 286 --- 1116
- 286 --- 1117
- 286 --- 1118
- 286 --- 1119
- 286 --- 1120
- 286 --- 1121
- 286 --- 1122
- 286 --- 1123
- 286 --- 1124
- 286 --- 1125
- 286 --- 1126
- 286 --- 1127
- 286 --- 1128
- 286 --- 1129
- 286 --- 1130
+ 570 <--x 288
+ 570 <--x 569
+ 571 <--x 289
+ 571 <--x 569
+ 572 <--x 290
+ 572 <--x 569
+ 573 <--x 291
+ 573 <--x 569
+ 574 <--x 292
+ 574 <--x 569
+ 575 <--x 293
+ 575 <--x 569
+ 576 <--x 294
+ 576 <--x 569
+ 577 <--x 295
+ 577 <--x 569
+ 578 <--x 296
+ 578 <--x 569
+ 579 <--x 297
+ 579 <--x 569
+ 580 <--x 298
+ 580 <--x 569
+ 581 <--x 299
+ 581 <--x 569
+ 582 <--x 300
+ 582 <--x 569
+ 583 <--x 301
+ 583 <--x 569
+ 584 <--x 302
+ 584 <--x 569
+ 585 <--x 303
+ 585 <--x 569
+ 586 <--x 304
+ 586 <--x 569
+ 587 <--x 305
+ 587 <--x 569
+ 588 <--x 306
+ 588 <--x 569
+ 589 <--x 307
+ 589 <--x 569
+ 590 <--x 308
+ 590 <--x 569
+ 591 <--x 309
+ 591 <--x 569
+ 592 <--x 310
+ 592 <--x 569
+ 593 <--x 311
+ 593 <--x 569
+ 594 <--x 312
+ 594 <--x 569
+ 595 <--x 313
+ 595 <--x 569
+ 596 <--x 314
+ 596 <--x 569
+ 597 <--x 315
+ 597 <--x 569
+ 598 <--x 316
+ 598 <--x 569
+ 599 <--x 317
+ 599 <--x 569
+ 600 <--x 318
+ 600 <--x 569
+ 601 <--x 319
+ 601 <--x 569
+ 602 <--x 320
+ 602 <--x 569
+ 603 <--x 321
+ 603 <--x 569
+ 604 <--x 322
+ 604 <--x 569
+ 605 <--x 323
+ 605 <--x 569
+ 606 <--x 324
+ 606 <--x 569
+ 607 <--x 325
+ 607 <--x 569
+ 608 <--x 326
+ 608 <--x 569
+ 609 <--x 327
+ 609 <--x 569
+ 610 <--x 328
+ 610 <--x 569
+ 611 <--x 329
+ 611 <--x 569
+ 612 <--x 330
+ 612 <--x 569
+ 613 <--x 331
+ 613 <--x 569
+ 614 <--x 332
+ 614 <--x 569
+ 615 <--x 333
+ 615 <--x 569
+ 616 <--x 334
+ 616 <--x 569
+ 617 <--x 335
+ 617 <--x 569
+ 618 <--x 336
+ 618 <--x 569
+ 619 <--x 337
+ 619 <--x 569
+ 620 <--x 338
+ 620 <--x 569
+ 621 <--x 339
+ 621 <--x 569
+ 622 <--x 340
+ 622 <--x 569
+ 623 <--x 341
+ 623 <--x 569
+ 624 <--x 342
+ 624 <--x 569
+ 625 <--x 343
+ 625 <--x 569
+ 626 <--x 344
+ 626 <--x 569
+ 627 <--x 345
+ 627 <--x 569
+ 628 <--x 346
+ 628 <--x 569
+ 629 <--x 347
+ 629 <--x 569
+ 630 <--x 348
+ 630 <--x 569
+ 631 <--x 349
+ 631 <--x 569
+ 632 <--x 350
+ 632 <--x 569
+ 633 <--x 351
+ 633 <--x 569
+ 634 <--x 352
+ 634 <--x 569
+ 635 <--x 353
+ 635 <--x 569
+ 636 <--x 354
+ 636 <--x 569
+ 637 <--x 355
+ 637 <--x 569
+ 638 <--x 356
+ 638 <--x 569
+ 639 <--x 357
+ 639 <--x 569
+ 640 <--x 358
+ 640 <--x 569
+ 641 <--x 359
+ 641 <--x 569
+ 642 <--x 360
+ 642 <--x 569
+ 643 <--x 361
+ 643 <--x 569
+ 644 <--x 362
+ 644 <--x 569
+ 645 <--x 363
+ 645 <--x 569
+ 646 <--x 364
+ 646 <--x 569
+ 647 <--x 365
+ 647 <--x 569
+ 648 <--x 366
+ 648 <--x 569
+ 649 <--x 367
+ 649 <--x 569
+ 650 <--x 368
+ 650 <--x 569
+ 651 <--x 369
+ 651 <--x 569
+ 652 <--x 370
+ 652 <--x 569
+ 653 <--x 371
+ 653 <--x 569
+ 654 <--x 372
+ 654 <--x 569
+ 655 <--x 373
+ 655 <--x 569
+ 656 <--x 374
+ 656 <--x 569
+ 657 <--x 375
+ 657 <--x 569
+ 658 <--x 376
+ 658 <--x 569
+ 659 <--x 377
+ 659 <--x 569
+ 660 <--x 378
+ 660 <--x 569
+ 661 <--x 379
+ 661 <--x 569
+ 662 <--x 380
+ 662 <--x 569
+ 663 <--x 381
+ 663 <--x 569
+ 664 <--x 382
+ 664 <--x 569
+ 665 <--x 383
+ 665 <--x 569
+ 666 <--x 384
+ 666 <--x 569
+ 667 <--x 385
+ 667 <--x 569
+ 668 <--x 386
+ 668 <--x 569
+ 669 <--x 387
+ 669 <--x 569
+ 670 <--x 388
+ 670 <--x 569
+ 671 <--x 389
+ 671 <--x 569
+ 672 <--x 390
+ 672 <--x 569
+ 673 <--x 391
+ 673 <--x 569
+ 674 <--x 392
+ 674 <--x 569
+ 675 <--x 393
+ 675 <--x 569
+ 676 <--x 394
+ 676 <--x 569
+ 677 <--x 395
+ 677 <--x 569
+ 678 <--x 396
+ 678 <--x 569
+ 679 <--x 397
+ 679 <--x 569
+ 680 <--x 398
+ 680 <--x 569
+ 681 <--x 399
+ 681 <--x 569
+ 682 <--x 400
+ 682 <--x 569
+ 683 <--x 401
+ 683 <--x 569
+ 684 <--x 402
+ 684 <--x 569
+ 685 <--x 403
+ 685 <--x 569
+ 686 <--x 404
+ 686 <--x 569
+ 687 <--x 405
+ 687 <--x 569
+ 688 <--x 406
+ 688 <--x 569
+ 689 <--x 407
+ 689 <--x 569
+ 690 <--x 408
+ 690 <--x 569
+ 691 <--x 409
+ 691 <--x 569
+ 692 <--x 410
+ 692 <--x 569
+ 693 <--x 411
+ 693 <--x 569
+ 694 <--x 412
+ 694 <--x 569
+ 695 <--x 413
+ 695 <--x 569
+ 696 <--x 414
+ 696 <--x 569
+ 697 <--x 415
+ 697 <--x 569
+ 698 <--x 416
+ 698 <--x 569
+ 699 <--x 417
+ 699 <--x 569
+ 700 <--x 418
+ 700 <--x 569
+ 701 <--x 419
+ 701 <--x 569
+ 702 <--x 420
+ 702 <--x 569
+ 703 <--x 421
+ 703 <--x 569
+ 704 <--x 422
+ 704 <--x 569
+ 705 <--x 423
+ 705 <--x 569
+ 706 <--x 424
+ 706 <--x 569
+ 707 <--x 425
+ 707 <--x 569
+ 708 <--x 426
+ 708 <--x 569
+ 709 <--x 427
+ 709 <--x 569
+ 710 <--x 428
+ 710 <--x 569
+ 711 <--x 429
+ 711 <--x 569
+ 712 <--x 430
+ 712 <--x 569
+ 713 <--x 431
+ 713 <--x 569
+ 714 <--x 432
+ 714 <--x 569
+ 715 <--x 433
+ 715 <--x 569
+ 716 <--x 434
+ 716 <--x 569
+ 717 <--x 435
+ 717 <--x 569
+ 718 <--x 436
+ 718 <--x 569
+ 719 <--x 437
+ 719 <--x 569
+ 720 <--x 438
+ 720 <--x 569
+ 721 <--x 439
+ 721 <--x 569
+ 722 <--x 440
+ 722 <--x 569
+ 723 <--x 441
+ 723 <--x 569
+ 724 <--x 442
+ 724 <--x 569
+ 725 <--x 443
+ 725 <--x 569
+ 726 <--x 444
+ 726 <--x 569
+ 727 <--x 445
+ 727 <--x 569
+ 728 <--x 446
+ 728 <--x 569
+ 729 <--x 447
+ 729 <--x 569
+ 730 <--x 448
+ 730 <--x 569
+ 731 <--x 449
+ 731 <--x 569
+ 732 <--x 450
+ 732 <--x 569
+ 733 <--x 451
+ 733 <--x 569
+ 734 <--x 452
+ 734 <--x 569
+ 735 <--x 453
+ 735 <--x 569
+ 736 <--x 454
+ 736 <--x 569
+ 737 <--x 455
+ 737 <--x 569
+ 738 <--x 456
+ 738 <--x 569
+ 739 <--x 457
+ 739 <--x 569
+ 740 <--x 458
+ 740 <--x 569
+ 741 <--x 459
+ 741 <--x 569
+ 742 <--x 460
+ 742 <--x 569
+ 743 <--x 461
+ 743 <--x 569
+ 744 <--x 462
+ 744 <--x 569
+ 745 <--x 463
+ 745 <--x 569
+ 746 <--x 464
+ 746 <--x 569
+ 747 <--x 465
+ 747 <--x 569
+ 748 <--x 466
+ 748 <--x 569
+ 749 <--x 467
+ 749 <--x 569
+ 750 <--x 468
+ 750 <--x 569
+ 751 <--x 469
+ 751 <--x 569
+ 752 <--x 470
+ 752 <--x 569
+ 753 <--x 471
+ 753 <--x 569
+ 754 <--x 472
+ 754 <--x 569
+ 755 <--x 473
+ 755 <--x 569
+ 756 <--x 474
+ 756 <--x 569
+ 757 <--x 475
+ 757 <--x 569
+ 758 <--x 476
+ 758 <--x 569
+ 759 <--x 477
+ 759 <--x 569
+ 760 <--x 478
+ 760 <--x 569
+ 761 <--x 479
+ 761 <--x 569
+ 762 <--x 480
+ 762 <--x 569
+ 763 <--x 481
+ 763 <--x 569
+ 764 <--x 482
+ 764 <--x 569
+ 765 <--x 483
+ 765 <--x 569
+ 766 <--x 484
+ 766 <--x 569
+ 767 <--x 485
+ 767 <--x 569
+ 768 <--x 486
+ 768 <--x 569
+ 769 <--x 487
+ 769 <--x 569
+ 770 <--x 488
+ 770 <--x 569
+ 771 <--x 489
+ 771 <--x 569
+ 772 <--x 490
+ 772 <--x 569
+ 773 <--x 491
+ 773 <--x 569
+ 774 <--x 492
+ 774 <--x 569
+ 775 <--x 493
+ 775 <--x 569
+ 776 <--x 494
+ 776 <--x 569
+ 777 <--x 495
+ 777 <--x 569
+ 778 <--x 496
+ 778 <--x 569
+ 779 <--x 497
+ 779 <--x 569
+ 780 <--x 498
+ 780 <--x 569
+ 781 <--x 499
+ 781 <--x 569
+ 782 <--x 500
+ 782 <--x 569
+ 783 <--x 501
+ 783 <--x 569
+ 784 <--x 502
+ 784 <--x 569
+ 785 <--x 503
+ 785 <--x 569
+ 786 <--x 504
+ 786 <--x 569
+ 787 <--x 505
+ 787 <--x 569
+ 788 <--x 506
+ 788 <--x 569
+ 789 <--x 507
+ 789 <--x 569
+ 790 <--x 508
+ 790 <--x 569
+ 791 <--x 509
+ 791 <--x 569
+ 792 <--x 510
+ 792 <--x 569
+ 793 <--x 511
+ 793 <--x 569
+ 794 <--x 512
+ 794 <--x 569
+ 795 <--x 513
+ 795 <--x 569
+ 796 <--x 514
+ 796 <--x 569
+ 797 <--x 515
+ 797 <--x 569
+ 798 <--x 516
+ 798 <--x 569
+ 799 <--x 517
+ 799 <--x 569
+ 800 <--x 518
+ 800 <--x 569
+ 801 <--x 519
+ 801 <--x 569
+ 802 <--x 520
+ 802 <--x 569
+ 803 <--x 521
+ 803 <--x 569
+ 804 <--x 522
+ 804 <--x 569
+ 805 <--x 523
+ 805 <--x 569
+ 806 <--x 524
+ 806 <--x 569
+ 807 <--x 525
+ 807 <--x 569
+ 808 <--x 526
+ 808 <--x 569
+ 809 <--x 527
+ 809 <--x 569
+ 810 <--x 528
+ 810 <--x 569
+ 811 <--x 529
+ 811 <--x 569
+ 812 <--x 530
+ 812 <--x 569
+ 813 <--x 531
+ 813 <--x 569
+ 814 <--x 532
+ 814 <--x 569
+ 815 <--x 533
+ 815 <--x 569
+ 816 <--x 534
+ 816 <--x 569
+ 817 <--x 535
+ 817 <--x 569
+ 818 <--x 536
+ 818 <--x 569
+ 819 <--x 537
+ 819 <--x 569
+ 820 <--x 538
+ 820 <--x 569
+ 821 <--x 539
+ 821 <--x 569
+ 822 <--x 540
+ 822 <--x 569
+ 823 <--x 541
+ 823 <--x 569
+ 824 <--x 542
+ 824 <--x 569
+ 825 <--x 543
+ 825 <--x 569
+ 826 <--x 544
+ 826 <--x 569
+ 827 <--x 545
+ 827 <--x 569
+ 828 <--x 546
+ 828 <--x 569
+ 829 <--x 547
+ 829 <--x 569
+ 830 <--x 548
+ 830 <--x 569
+ 831 <--x 549
+ 831 <--x 569
+ 832 <--x 550
+ 832 <--x 569
+ 833 <--x 551
+ 833 <--x 569
+ 834 <--x 552
+ 834 <--x 569
+ 835 <--x 553
+ 835 <--x 569
+ 836 <--x 554
+ 836 <--x 569
+ 837 <--x 555
+ 837 <--x 569
+ 838 <--x 556
+ 838 <--x 569
+ 839 <--x 557
+ 839 <--x 569
+ 840 <--x 558
+ 840 <--x 569
+ 841 <--x 559
+ 841 <--x 569
+ 842 <--x 560
+ 842 <--x 569
+ 843 <--x 561
+ 843 <--x 569
+ 844 <--x 562
+ 844 <--x 569
+ 845 <--x 563
+ 845 <--x 569
+ 846 <--x 564
+ 846 <--x 569
+ 847 <--x 565
+ 847 <--x 569
+ 848 <--x 566
+ 848 <--x 569
+ 849 <--x 567
+ 849 <--x 569
```
diff --git a/rust/kcl-lib/tests/linear_pattern3d_a_pattern/artifact_commands.snap b/rust/kcl-lib/tests/linear_pattern3d_a_pattern/artifact_commands.snap
index d2751ee46..6350f25ba 100644
--- a/rust/kcl-lib/tests/linear_pattern3d_a_pattern/artifact_commands.snap
+++ b/rust/kcl-lib/tests/linear_pattern3d_a_pattern/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands linear_pattern3d_a_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands linear_pattern3d_a_pattern.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands linear_pattern3d_a_pattern.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/linear_pattern3d_a_pattern/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/linear_pattern3d_a_pattern/artifact_graph_flowchart.snap.md
index 2e4e7e7e6..f765f2c06 100644
--- a/rust/kcl-lib/tests/linear_pattern3d_a_pattern/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/linear_pattern3d_a_pattern/artifact_graph_flowchart.snap.md
@@ -17,13 +17,8 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 --- 4
@@ -32,17 +27,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
+ 3 --- 17
+ 3 x--> 13
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 13
5 --- 10
- 5 --- 17
- 5 --- 18
+ 5 --- 15
+ 5 x--> 13
6 --- 9
- 6 --- 15
- 6 --- 16
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -52,9 +46,10 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
```
diff --git a/rust/kcl-lib/tests/loop_tag/artifact_commands.snap b/rust/kcl-lib/tests/loop_tag/artifact_commands.snap
index 9fb9648bd..2cf19f8d4 100644
--- a/rust/kcl-lib/tests/loop_tag/artifact_commands.snap
+++ b/rust/kcl-lib/tests/loop_tag/artifact_commands.snap
@@ -1013,20 +1013,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1053,20 +1060,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1093,20 +1107,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1133,20 +1154,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1173,20 +1201,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1213,20 +1248,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1253,20 +1295,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1293,20 +1342,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1333,20 +1389,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1373,20 +1436,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1413,20 +1483,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1453,20 +1530,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1493,20 +1577,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1533,20 +1624,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1573,20 +1671,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1613,20 +1718,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1653,20 +1765,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1693,20 +1812,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1733,20 +1859,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1773,20 +1906,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1813,20 +1953,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1853,20 +2000,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1893,20 +2047,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1933,20 +2094,27 @@ description: Artifact commands loop_tag.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1969,6 +2137,33 @@ description: Artifact commands loop_tag.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1988,5 +2183,1160 @@ description: Artifact commands loop_tag.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/loop_tag/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/loop_tag/artifact_graph_flowchart.snap.md
index 9a9d7a5ff..d17883a18 100644
--- a/rust/kcl-lib/tests/loop_tag/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/loop_tag/artifact_graph_flowchart.snap.md
@@ -109,105 +109,54 @@ flowchart LR
105["Cap Start"]
106["Cap End"]
107["SweepEdge Opposite"]
- 108["SweepEdge Adjacent"]
+ 108["SweepEdge Opposite"]
109["SweepEdge Opposite"]
- 110["SweepEdge Adjacent"]
+ 110["SweepEdge Opposite"]
111["SweepEdge Opposite"]
- 112["SweepEdge Adjacent"]
+ 112["SweepEdge Opposite"]
113["SweepEdge Opposite"]
- 114["SweepEdge Adjacent"]
+ 114["SweepEdge Opposite"]
115["SweepEdge Opposite"]
- 116["SweepEdge Adjacent"]
+ 116["SweepEdge Opposite"]
117["SweepEdge Opposite"]
- 118["SweepEdge Adjacent"]
+ 118["SweepEdge Opposite"]
119["SweepEdge Opposite"]
- 120["SweepEdge Adjacent"]
+ 120["SweepEdge Opposite"]
121["SweepEdge Opposite"]
- 122["SweepEdge Adjacent"]
+ 122["SweepEdge Opposite"]
123["SweepEdge Opposite"]
- 124["SweepEdge Adjacent"]
+ 124["SweepEdge Opposite"]
125["SweepEdge Opposite"]
- 126["SweepEdge Adjacent"]
+ 126["SweepEdge Opposite"]
127["SweepEdge Opposite"]
- 128["SweepEdge Adjacent"]
+ 128["SweepEdge Opposite"]
129["SweepEdge Opposite"]
- 130["SweepEdge Adjacent"]
+ 130["SweepEdge Opposite"]
131["SweepEdge Opposite"]
- 132["SweepEdge Adjacent"]
+ 132["SweepEdge Opposite"]
133["SweepEdge Opposite"]
- 134["SweepEdge Adjacent"]
+ 134["SweepEdge Opposite"]
135["SweepEdge Opposite"]
- 136["SweepEdge Adjacent"]
+ 136["SweepEdge Opposite"]
137["SweepEdge Opposite"]
- 138["SweepEdge Adjacent"]
+ 138["SweepEdge Opposite"]
139["SweepEdge Opposite"]
- 140["SweepEdge Adjacent"]
+ 140["SweepEdge Opposite"]
141["SweepEdge Opposite"]
- 142["SweepEdge Adjacent"]
+ 142["SweepEdge Opposite"]
143["SweepEdge Opposite"]
- 144["SweepEdge Adjacent"]
+ 144["SweepEdge Opposite"]
145["SweepEdge Opposite"]
- 146["SweepEdge Adjacent"]
+ 146["SweepEdge Opposite"]
147["SweepEdge Opposite"]
- 148["SweepEdge Adjacent"]
+ 148["SweepEdge Opposite"]
149["SweepEdge Opposite"]
- 150["SweepEdge Adjacent"]
+ 150["SweepEdge Opposite"]
151["SweepEdge Opposite"]
- 152["SweepEdge Adjacent"]
+ 152["SweepEdge Opposite"]
153["SweepEdge Opposite"]
- 154["SweepEdge Adjacent"]
+ 154["SweepEdge Opposite"]
155["SweepEdge Opposite"]
- 156["SweepEdge Adjacent"]
- 157["SweepEdge Opposite"]
- 158["SweepEdge Adjacent"]
- 159["SweepEdge Opposite"]
- 160["SweepEdge Adjacent"]
- 161["SweepEdge Opposite"]
- 162["SweepEdge Adjacent"]
- 163["SweepEdge Opposite"]
- 164["SweepEdge Adjacent"]
- 165["SweepEdge Opposite"]
- 166["SweepEdge Adjacent"]
- 167["SweepEdge Opposite"]
- 168["SweepEdge Adjacent"]
- 169["SweepEdge Opposite"]
- 170["SweepEdge Adjacent"]
- 171["SweepEdge Opposite"]
- 172["SweepEdge Adjacent"]
- 173["SweepEdge Opposite"]
- 174["SweepEdge Adjacent"]
- 175["SweepEdge Opposite"]
- 176["SweepEdge Adjacent"]
- 177["SweepEdge Opposite"]
- 178["SweepEdge Adjacent"]
- 179["SweepEdge Opposite"]
- 180["SweepEdge Adjacent"]
- 181["SweepEdge Opposite"]
- 182["SweepEdge Adjacent"]
- 183["SweepEdge Opposite"]
- 184["SweepEdge Adjacent"]
- 185["SweepEdge Opposite"]
- 186["SweepEdge Adjacent"]
- 187["SweepEdge Opposite"]
- 188["SweepEdge Adjacent"]
- 189["SweepEdge Opposite"]
- 190["SweepEdge Adjacent"]
- 191["SweepEdge Opposite"]
- 192["SweepEdge Adjacent"]
- 193["SweepEdge Opposite"]
- 194["SweepEdge Adjacent"]
- 195["SweepEdge Opposite"]
- 196["SweepEdge Adjacent"]
- 197["SweepEdge Opposite"]
- 198["SweepEdge Adjacent"]
- 199["SweepEdge Opposite"]
- 200["SweepEdge Adjacent"]
- 201["SweepEdge Opposite"]
- 202["SweepEdge Adjacent"]
- 203["SweepEdge Opposite"]
- 204["SweepEdge Adjacent"]
- 205["SweepEdge Opposite"]
- 206["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 --- 4
@@ -262,155 +211,154 @@ flowchart LR
2 ---- 54
2 --- 53
3 --- 55
- 3 --- 107
- 3 --- 108
+ 3 x--> 105
4 --- 56
- 4 --- 109
- 4 --- 110
+ 4 --- 107
+ 4 x--> 105
5 --- 57
- 5 --- 111
- 5 --- 112
+ 5 --- 108
+ 5 x--> 105
6 --- 58
- 6 --- 113
- 6 --- 114
+ 6 --- 109
+ 6 x--> 105
7 --- 59
- 7 --- 115
- 7 --- 116
+ 7 --- 110
+ 7 x--> 105
8 --- 60
- 8 --- 117
- 8 --- 118
+ 8 --- 111
+ 8 x--> 105
9 --- 61
- 9 --- 119
- 9 --- 120
+ 9 --- 112
+ 9 x--> 105
10 --- 62
- 10 --- 121
- 10 --- 122
+ 10 --- 113
+ 10 x--> 105
11 --- 63
- 11 --- 123
- 11 --- 124
+ 11 --- 114
+ 11 x--> 105
12 --- 64
- 12 --- 125
- 12 --- 126
+ 12 --- 115
+ 12 x--> 105
13 --- 65
- 13 --- 127
- 13 --- 128
+ 13 --- 116
+ 13 x--> 105
14 --- 66
- 14 --- 129
- 14 --- 130
+ 14 --- 117
+ 14 x--> 105
15 --- 67
- 15 --- 131
- 15 --- 132
+ 15 --- 118
+ 15 x--> 105
16 --- 68
- 16 --- 133
- 16 --- 134
+ 16 --- 119
+ 16 x--> 105
17 --- 69
- 17 --- 135
- 17 --- 136
+ 17 --- 120
+ 17 x--> 105
18 --- 70
- 18 --- 137
- 18 --- 138
+ 18 --- 121
+ 18 x--> 105
19 --- 71
- 19 --- 139
- 19 --- 140
+ 19 --- 122
+ 19 x--> 105
20 --- 72
- 20 --- 141
- 20 --- 142
+ 20 --- 123
+ 20 x--> 105
21 --- 73
- 21 --- 143
- 21 --- 144
+ 21 --- 124
+ 21 x--> 105
22 --- 74
- 22 --- 145
- 22 --- 146
+ 22 --- 125
+ 22 x--> 105
23 --- 75
- 23 --- 147
- 23 --- 148
+ 23 --- 126
+ 23 x--> 105
24 --- 76
- 24 --- 149
- 24 --- 150
+ 24 --- 127
+ 24 x--> 105
25 --- 77
- 25 --- 151
- 25 --- 152
+ 25 --- 128
+ 25 x--> 105
26 --- 78
- 26 --- 153
- 26 --- 154
+ 26 --- 129
+ 26 x--> 105
27 --- 79
- 27 --- 155
- 27 --- 156
+ 27 --- 130
+ 27 x--> 105
28 --- 80
- 28 --- 157
- 28 --- 158
+ 28 --- 131
+ 28 x--> 105
29 --- 81
- 29 --- 159
- 29 --- 160
+ 29 --- 132
+ 29 x--> 105
30 --- 82
- 30 --- 161
- 30 --- 162
+ 30 --- 133
+ 30 x--> 105
31 --- 83
- 31 --- 163
- 31 --- 164
+ 31 --- 134
+ 31 x--> 105
32 --- 84
- 32 --- 165
- 32 --- 166
+ 32 --- 135
+ 32 x--> 105
33 --- 85
- 33 --- 167
- 33 --- 168
+ 33 --- 136
+ 33 x--> 105
34 --- 86
- 34 --- 169
- 34 --- 170
+ 34 --- 137
+ 34 x--> 105
35 --- 87
- 35 --- 171
- 35 --- 172
+ 35 --- 138
+ 35 x--> 105
36 --- 88
- 36 --- 173
- 36 --- 174
+ 36 --- 139
+ 36 x--> 105
37 --- 89
- 37 --- 175
- 37 --- 176
+ 37 --- 140
+ 37 x--> 105
38 --- 90
- 38 --- 177
- 38 --- 178
+ 38 --- 141
+ 38 x--> 105
39 --- 91
- 39 --- 179
- 39 --- 180
+ 39 --- 142
+ 39 x--> 105
40 --- 92
- 40 --- 181
- 40 --- 182
+ 40 --- 143
+ 40 x--> 105
41 --- 93
- 41 --- 183
- 41 --- 184
+ 41 --- 144
+ 41 x--> 105
42 --- 94
- 42 --- 185
- 42 --- 186
+ 42 --- 145
+ 42 x--> 105
43 --- 95
- 43 --- 187
- 43 --- 188
+ 43 --- 146
+ 43 x--> 105
44 --- 96
- 44 --- 189
- 44 --- 190
+ 44 --- 147
+ 44 x--> 105
45 --- 97
- 45 --- 191
- 45 --- 192
+ 45 --- 148
+ 45 x--> 105
46 --- 98
- 46 --- 193
- 46 --- 194
+ 46 --- 149
+ 46 x--> 105
47 --- 99
- 47 --- 195
- 47 --- 196
+ 47 --- 150
+ 47 x--> 105
48 --- 100
- 48 --- 197
- 48 --- 198
+ 48 --- 151
+ 48 x--> 105
49 --- 101
- 49 --- 199
- 49 --- 200
+ 49 --- 152
+ 49 x--> 105
50 --- 102
- 50 --- 201
- 50 --- 202
+ 50 --- 153
+ 50 x--> 105
51 --- 103
- 51 --- 203
- 51 --- 204
+ 51 --- 154
+ 51 x--> 105
52 --- 104
- 52 --- 205
- 52 --- 206
+ 52 --- 155
+ 52 x--> 105
54 --- 55
54 --- 56
54 --- 57
@@ -512,55 +460,102 @@ flowchart LR
54 --- 153
54 --- 154
54 --- 155
- 54 --- 156
- 54 --- 157
- 54 --- 158
- 54 --- 159
- 54 --- 160
- 54 --- 161
- 54 --- 162
- 54 --- 163
- 54 --- 164
- 54 --- 165
- 54 --- 166
- 54 --- 167
- 54 --- 168
- 54 --- 169
- 54 --- 170
- 54 --- 171
- 54 --- 172
- 54 --- 173
- 54 --- 174
- 54 --- 175
- 54 --- 176
- 54 --- 177
- 54 --- 178
- 54 --- 179
- 54 --- 180
- 54 --- 181
- 54 --- 182
- 54 --- 183
- 54 --- 184
- 54 --- 185
- 54 --- 186
- 54 --- 187
- 54 --- 188
- 54 --- 189
- 54 --- 190
- 54 --- 191
- 54 --- 192
- 54 --- 193
- 54 --- 194
- 54 --- 195
- 54 --- 196
- 54 --- 197
- 54 --- 198
- 54 --- 199
- 54 --- 200
- 54 --- 201
- 54 --- 202
- 54 --- 203
- 54 --- 204
- 54 --- 205
- 54 --- 206
+ 107 <--x 56
+ 107 <--x 106
+ 108 <--x 57
+ 108 <--x 106
+ 109 <--x 58
+ 109 <--x 106
+ 110 <--x 59
+ 110 <--x 106
+ 111 <--x 60
+ 111 <--x 106
+ 112 <--x 61
+ 112 <--x 106
+ 113 <--x 62
+ 113 <--x 106
+ 114 <--x 63
+ 114 <--x 106
+ 115 <--x 64
+ 115 <--x 106
+ 116 <--x 65
+ 116 <--x 106
+ 117 <--x 66
+ 117 <--x 106
+ 118 <--x 67
+ 118 <--x 106
+ 119 <--x 68
+ 119 <--x 106
+ 120 <--x 69
+ 120 <--x 106
+ 121 <--x 70
+ 121 <--x 106
+ 122 <--x 71
+ 122 <--x 106
+ 123 <--x 72
+ 123 <--x 106
+ 124 <--x 73
+ 124 <--x 106
+ 125 <--x 74
+ 125 <--x 106
+ 126 <--x 75
+ 126 <--x 106
+ 127 <--x 76
+ 127 <--x 106
+ 128 <--x 77
+ 128 <--x 106
+ 129 <--x 78
+ 129 <--x 106
+ 130 <--x 79
+ 130 <--x 106
+ 131 <--x 80
+ 131 <--x 106
+ 132 <--x 81
+ 132 <--x 106
+ 133 <--x 82
+ 133 <--x 106
+ 134 <--x 83
+ 134 <--x 106
+ 135 <--x 84
+ 135 <--x 106
+ 136 <--x 85
+ 136 <--x 106
+ 137 <--x 86
+ 137 <--x 106
+ 138 <--x 87
+ 138 <--x 106
+ 139 <--x 88
+ 139 <--x 106
+ 140 <--x 89
+ 140 <--x 106
+ 141 <--x 90
+ 141 <--x 106
+ 142 <--x 91
+ 142 <--x 106
+ 143 <--x 92
+ 143 <--x 106
+ 144 <--x 93
+ 144 <--x 106
+ 145 <--x 94
+ 145 <--x 106
+ 146 <--x 95
+ 146 <--x 106
+ 147 <--x 96
+ 147 <--x 106
+ 148 <--x 97
+ 148 <--x 106
+ 149 <--x 98
+ 149 <--x 106
+ 150 <--x 99
+ 150 <--x 106
+ 151 <--x 100
+ 151 <--x 106
+ 152 <--x 101
+ 152 <--x 106
+ 153 <--x 102
+ 153 <--x 106
+ 154 <--x 103
+ 154 <--x 106
+ 155 <--x 104
+ 155 <--x 106
```
diff --git a/rust/kcl-lib/tests/mike_stress_test/artifact_commands.snap b/rust/kcl-lib/tests/mike_stress_test/artifact_commands.snap
index d35e7cadf..28bde0b81 100644
--- a/rust/kcl-lib/tests/mike_stress_test/artifact_commands.snap
+++ b/rust/kcl-lib/tests/mike_stress_test/artifact_commands.snap
@@ -17180,37 +17180,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17220,7 +17217,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17230,30 +17227,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17280,37 +17274,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17320,7 +17311,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17330,30 +17321,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17380,37 +17368,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17420,7 +17405,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17430,30 +17415,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17480,37 +17462,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17520,7 +17499,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17530,30 +17509,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17580,37 +17556,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17620,7 +17593,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17630,30 +17603,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17680,37 +17650,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17720,7 +17687,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17730,30 +17697,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17780,37 +17744,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17820,7 +17781,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17830,30 +17791,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17880,37 +17838,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17920,7 +17875,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -17930,30 +17885,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -17980,37 +17932,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18020,7 +17969,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18030,30 +17979,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -18080,37 +18026,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18120,7 +18063,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18130,30 +18073,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -18180,37 +18120,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18220,7 +18157,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18230,30 +18167,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -18280,37 +18214,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18320,7 +18251,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18330,30 +18261,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -18380,37 +18308,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18420,7 +18345,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18430,30 +18355,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -18480,37 +18402,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18520,7 +18439,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18530,30 +18449,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -18580,37 +18496,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18620,7 +18533,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18630,30 +18543,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -18680,37 +18590,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18720,7 +18627,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18730,30 +18637,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -18780,37 +18684,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18820,7 +18721,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18830,30 +18731,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -18880,37 +18778,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18920,7 +18815,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -18930,30 +18825,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -18980,37 +18872,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19020,7 +18909,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19030,30 +18919,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19080,37 +18966,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19120,7 +19003,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19130,30 +19013,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19180,37 +19060,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19220,7 +19097,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19230,30 +19107,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19280,37 +19154,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19320,7 +19191,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19330,30 +19201,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19380,37 +19248,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19420,7 +19285,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19430,30 +19295,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19480,37 +19342,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19520,7 +19379,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19530,30 +19389,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19580,37 +19436,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19620,7 +19473,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19630,30 +19483,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19680,37 +19530,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19720,7 +19567,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19730,30 +19577,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19780,37 +19624,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19820,7 +19661,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19830,30 +19671,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19880,37 +19718,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19920,7 +19755,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -19930,30 +19765,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -19980,37 +19812,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20020,7 +19849,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20030,30 +19859,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20080,37 +19906,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20120,7 +19943,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20130,30 +19953,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20180,37 +20000,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20220,7 +20037,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20230,30 +20047,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20280,37 +20094,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20320,7 +20131,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20330,30 +20141,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20380,37 +20188,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20420,7 +20225,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20430,30 +20235,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20480,37 +20282,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20520,7 +20319,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20530,30 +20329,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20580,37 +20376,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20620,7 +20413,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20630,30 +20423,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20680,37 +20470,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20720,7 +20507,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20730,30 +20517,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20780,37 +20564,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20820,7 +20601,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20830,30 +20611,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20880,37 +20658,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20920,7 +20695,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -20930,30 +20705,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -20980,37 +20752,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21020,7 +20789,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21030,30 +20799,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -21080,37 +20846,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21120,7 +20883,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21130,30 +20893,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -21180,37 +20940,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21220,7 +20977,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21230,30 +20987,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -21280,37 +21034,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21320,7 +21071,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21330,30 +21081,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -21380,37 +21128,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21420,7 +21165,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21430,30 +21175,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -21480,37 +21222,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21520,7 +21259,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21530,30 +21269,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -21580,37 +21316,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21620,7 +21353,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21630,30 +21363,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -21680,37 +21410,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21720,7 +21447,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21730,30 +21457,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -21780,37 +21504,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21820,7 +21541,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21830,30 +21551,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -21880,37 +21598,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21920,7 +21635,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -21930,30 +21645,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -21980,37 +21692,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22020,7 +21729,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22030,30 +21739,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -22080,37 +21786,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22120,7 +21823,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22130,30 +21833,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -22180,37 +21880,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22220,7 +21917,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22230,30 +21927,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -22280,37 +21974,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22320,7 +22011,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22330,30 +22021,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -22380,37 +22068,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22420,7 +22105,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22430,30 +22115,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -22480,37 +22162,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22520,7 +22199,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22530,30 +22209,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -22580,37 +22256,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22620,7 +22293,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22630,30 +22303,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -22680,37 +22350,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22720,7 +22387,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22730,30 +22397,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -22780,37 +22444,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22820,7 +22481,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22830,30 +22491,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -22880,37 +22538,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22920,7 +22575,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -22930,30 +22585,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -22980,37 +22632,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23020,7 +22669,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23030,30 +22679,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -23080,37 +22726,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23120,7 +22763,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23130,30 +22773,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -23180,37 +22820,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23220,7 +22857,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23230,30 +22867,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -23280,37 +22914,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23320,7 +22951,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23330,30 +22961,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -23380,37 +23008,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23420,7 +23045,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23430,30 +23055,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -23480,37 +23102,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23520,7 +23139,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23530,30 +23149,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -23580,37 +23196,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23620,7 +23233,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23630,30 +23243,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -23680,37 +23290,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23720,7 +23327,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23730,30 +23337,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -23780,37 +23384,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23820,7 +23421,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23830,30 +23431,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -23880,37 +23478,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23920,7 +23515,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -23930,30 +23525,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -23980,37 +23572,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24020,7 +23609,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24030,30 +23619,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -24080,37 +23666,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24120,7 +23703,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24130,30 +23713,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -24180,37 +23760,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24220,7 +23797,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24230,30 +23807,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -24280,37 +23854,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24320,7 +23891,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24330,30 +23901,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -24380,37 +23948,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24420,7 +23985,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24430,30 +23995,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -24480,37 +24042,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24520,7 +24079,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24530,30 +24089,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -24580,37 +24136,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24620,7 +24173,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24630,30 +24183,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -24680,37 +24230,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24720,7 +24267,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24730,30 +24277,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -24780,37 +24324,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24820,7 +24361,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24830,30 +24371,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -24880,37 +24418,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24920,7 +24455,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -24930,30 +24465,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -24980,37 +24512,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25020,7 +24549,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25030,30 +24559,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -25080,37 +24606,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25120,7 +24643,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25130,30 +24653,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -25180,37 +24700,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25220,7 +24737,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25230,30 +24747,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -25280,37 +24794,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25320,7 +24831,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25330,30 +24841,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -25380,37 +24888,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25420,7 +24925,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25430,30 +24935,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -25480,37 +24982,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25520,7 +25019,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25530,30 +25029,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -25580,37 +25076,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25620,7 +25113,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25630,30 +25123,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -25680,37 +25170,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25720,7 +25207,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25730,30 +25217,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -25780,37 +25264,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25820,7 +25301,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25830,30 +25311,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -25880,37 +25358,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25920,7 +25395,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -25930,30 +25405,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -25980,37 +25452,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26020,7 +25489,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26030,30 +25499,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -26080,37 +25546,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26120,7 +25583,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26130,30 +25593,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -26180,37 +25640,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26220,7 +25677,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26230,30 +25687,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -26280,37 +25734,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26320,7 +25771,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26330,30 +25781,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -26380,37 +25828,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26420,7 +25865,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26430,30 +25875,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -26480,37 +25922,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26520,7 +25959,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26530,30 +25969,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -26580,37 +26016,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26620,7 +26053,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26630,30 +26063,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -26680,37 +26110,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26720,7 +26147,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26730,30 +26157,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -26780,37 +26204,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26820,7 +26241,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26830,30 +26251,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -26880,37 +26298,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26920,7 +26335,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -26930,30 +26345,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -26980,37 +26392,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27020,7 +26429,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27030,30 +26439,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -27080,37 +26486,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27120,7 +26523,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27130,30 +26533,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -27180,37 +26580,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27220,7 +26617,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27230,30 +26627,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -27280,37 +26674,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27320,7 +26711,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27330,30 +26721,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -27380,37 +26768,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27420,7 +26805,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27430,30 +26815,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -27480,37 +26862,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27520,7 +26899,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27530,30 +26909,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -27580,37 +26956,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27620,7 +26993,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27630,30 +27003,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -27680,37 +27050,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27720,7 +27087,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27730,30 +27097,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -27780,37 +27144,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27820,7 +27181,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27830,30 +27191,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -27880,37 +27238,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27920,7 +27275,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -27930,30 +27285,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -27980,37 +27332,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28020,7 +27369,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28030,30 +27379,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -28080,37 +27426,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28120,7 +27463,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28130,30 +27473,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -28180,37 +27520,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28220,7 +27557,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28230,30 +27567,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -28280,37 +27614,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28320,7 +27651,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28330,30 +27661,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -28380,37 +27708,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28420,7 +27745,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28430,30 +27755,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -28480,37 +27802,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28520,7 +27839,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28530,30 +27849,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -28580,37 +27896,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28620,7 +27933,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28630,30 +27943,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -28680,37 +27990,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28720,7 +28027,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28730,30 +28037,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -28780,37 +28084,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28820,7 +28121,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28830,30 +28131,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -28880,37 +28178,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28920,7 +28215,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -28930,30 +28225,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -28980,37 +28272,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29020,7 +28309,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29030,30 +28319,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -29080,37 +28366,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29120,7 +28403,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29130,30 +28413,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -29180,37 +28460,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29220,7 +28497,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29230,30 +28507,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -29280,37 +28554,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29320,7 +28591,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29330,30 +28601,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -29380,37 +28648,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29420,7 +28685,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29430,30 +28695,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -29480,37 +28742,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29520,7 +28779,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29530,30 +28789,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -29580,37 +28836,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29620,7 +28873,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29630,30 +28883,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -29680,37 +28930,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29720,7 +28967,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29730,30 +28977,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -29780,37 +29024,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29820,7 +29061,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29830,30 +29071,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -29880,37 +29118,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29920,7 +29155,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -29930,30 +29165,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -29980,37 +29212,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30020,7 +29249,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30030,30 +29259,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -30080,37 +29306,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30120,7 +29343,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30130,30 +29353,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -30180,37 +29400,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30220,7 +29437,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30230,30 +29447,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -30280,37 +29494,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30320,7 +29531,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30330,30 +29541,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -30380,37 +29588,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30420,7 +29625,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30430,30 +29635,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -30480,37 +29682,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30520,7 +29719,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30530,30 +29729,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -30580,37 +29776,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30620,7 +29813,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30630,30 +29823,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -30680,37 +29870,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30720,7 +29907,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30730,30 +29917,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -30780,37 +29964,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30820,7 +30001,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30830,30 +30011,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -30880,37 +30058,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30920,7 +30095,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -30930,30 +30105,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -30980,37 +30152,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31020,7 +30189,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31030,30 +30199,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -31080,37 +30246,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31120,7 +30283,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31130,30 +30293,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -31180,37 +30340,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31220,7 +30377,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31230,30 +30387,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -31280,37 +30434,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31320,7 +30471,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31330,30 +30481,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -31380,37 +30528,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31420,7 +30565,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31430,30 +30575,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -31480,37 +30622,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31520,7 +30659,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31530,30 +30669,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -31580,37 +30716,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31620,7 +30753,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31630,30 +30763,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -31680,37 +30810,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31720,7 +30847,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31730,30 +30857,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -31780,37 +30904,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31820,7 +30941,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31830,30 +30951,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -31880,37 +30998,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31920,7 +31035,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -31930,30 +31045,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -31980,37 +31092,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32020,7 +31129,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32030,30 +31139,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -32080,37 +31186,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32120,7 +31223,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32130,30 +31233,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -32180,37 +31280,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32220,7 +31317,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32230,30 +31327,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -32280,37 +31374,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32320,7 +31411,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32330,30 +31421,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -32380,37 +31468,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32420,7 +31505,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32430,30 +31515,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -32480,37 +31562,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32520,7 +31599,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32530,30 +31609,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -32580,37 +31656,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32620,7 +31693,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32630,30 +31703,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -32680,37 +31750,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32720,7 +31787,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32730,30 +31797,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -32780,37 +31844,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32820,7 +31881,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32830,30 +31891,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -32880,37 +31938,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32920,7 +31975,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -32930,30 +31985,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -32980,37 +32032,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33020,7 +32069,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33030,30 +32079,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -33080,37 +32126,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33120,7 +32163,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33130,30 +32173,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -33180,37 +32220,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33220,7 +32257,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33230,30 +32267,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -33280,37 +32314,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33320,7 +32351,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33330,30 +32361,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -33380,37 +32408,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33420,7 +32445,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33430,30 +32455,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -33480,37 +32502,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33520,7 +32539,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33530,30 +32549,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -33580,37 +32596,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33620,7 +32633,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33630,30 +32643,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -33680,37 +32690,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33720,7 +32727,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33730,30 +32737,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -33780,37 +32784,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33820,7 +32821,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33830,30 +32831,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -33880,37 +32878,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33920,7 +32915,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -33930,30 +32925,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -33980,37 +32972,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -34020,7 +33009,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -34030,30 +33019,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -34080,37 +33066,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -34120,7 +33103,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -34130,30 +33113,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -34180,37 +33160,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -34220,7 +33197,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -34230,30 +33207,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -34280,37 +33254,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -34320,7 +33291,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -34330,30 +33301,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -34380,37 +33348,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -34420,7 +33385,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -34430,30 +33395,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -34480,37 +33442,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -34520,7 +33479,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -34530,30 +33489,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -34580,37 +33536,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -34620,7 +33573,27915 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -34636,6 +61497,33 @@ description: Artifact commands mike_stress_test.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -34656,6 +61544,33 @@ description: Artifact commands mike_stress_test.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -34676,6 +61591,33 @@ description: Artifact commands mike_stress_test.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -34696,6 +61638,33 @@ description: Artifact commands mike_stress_test.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -34716,6 +61685,33 @@ description: Artifact commands mike_stress_test.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -34736,6 +61732,33 @@ description: Artifact commands mike_stress_test.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -34756,6 +61779,33 @@ description: Artifact commands mike_stress_test.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -34776,6 +61826,33 @@ description: Artifact commands mike_stress_test.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -34796,6 +61873,33 @@ description: Artifact commands mike_stress_test.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -34816,6 +61920,33 @@ description: Artifact commands mike_stress_test.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -34836,6 +61967,33 @@ description: Artifact commands mike_stress_test.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -34860,20 +62018,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -34900,37 +62065,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -34940,7 +62102,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -34950,30 +62112,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -35000,37 +62159,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35040,7 +62196,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35050,30 +62206,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -35100,37 +62253,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35140,7 +62290,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35150,30 +62300,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -35200,37 +62347,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35240,7 +62384,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35250,30 +62394,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -35300,37 +62441,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35340,7 +62478,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35350,30 +62488,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -35400,37 +62535,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35440,7 +62572,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35450,30 +62582,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -35500,37 +62629,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35540,7 +62666,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35550,30 +62676,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -35600,37 +62723,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35640,7 +62760,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35650,30 +62770,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -35700,37 +62817,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35740,7 +62854,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35750,30 +62864,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -35800,37 +62911,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35840,7 +62948,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35850,30 +62958,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -35900,37 +63005,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35940,7 +63042,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -35950,30 +63052,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -36000,37 +63099,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
- "object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36040,7 +63136,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36050,30 +63146,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -36100,37 +63193,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36140,7 +63230,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36150,30 +63240,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -36200,37 +63287,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36240,7 +63324,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36250,30 +63334,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -36300,37 +63381,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36340,7 +63418,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36350,30 +63428,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -36400,37 +63475,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36440,7 +63512,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36450,30 +63522,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -36500,37 +63569,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36540,7 +63606,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36550,30 +63616,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -36600,37 +63663,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36640,7 +63700,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36650,30 +63710,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -36700,37 +63757,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36740,7 +63794,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36750,30 +63804,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -36800,37 +63851,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36840,7 +63888,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36850,30 +63898,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -36900,37 +63945,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36940,7 +63982,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -36950,30 +63992,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -37000,37 +64039,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -37040,7 +64076,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -37050,30 +64086,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -37100,37 +64133,34 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_opposite_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -37140,7 +64170,7 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_next_adjacent_edge",
"object_id": "[uuid]",
"edge_id": "[uuid]",
"face_id": "[uuid]"
@@ -37150,30 +64180,27 @@ description: Artifact commands mike_stress_test.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
}
]
diff --git a/rust/kcl-lib/tests/mike_stress_test/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/mike_stress_test/artifact_graph_flowchart.snap.md
index 06a62af6c..f3570082e 100644
--- a/rust/kcl-lib/tests/mike_stress_test/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/mike_stress_test/artifact_graph_flowchart.snap.md
@@ -2011,2007 +2011,1005 @@ flowchart LR
2007["Cap Start"]
2008["Cap End"]
2009["SweepEdge Opposite"]
- 2010["SweepEdge Adjacent"]
+ 2010["SweepEdge Opposite"]
2011["SweepEdge Opposite"]
- 2012["SweepEdge Adjacent"]
+ 2012["SweepEdge Opposite"]
2013["SweepEdge Opposite"]
- 2014["SweepEdge Adjacent"]
+ 2014["SweepEdge Opposite"]
2015["SweepEdge Opposite"]
- 2016["SweepEdge Adjacent"]
+ 2016["SweepEdge Opposite"]
2017["SweepEdge Opposite"]
- 2018["SweepEdge Adjacent"]
+ 2018["SweepEdge Opposite"]
2019["SweepEdge Opposite"]
- 2020["SweepEdge Adjacent"]
+ 2020["SweepEdge Opposite"]
2021["SweepEdge Opposite"]
- 2022["SweepEdge Adjacent"]
+ 2022["SweepEdge Opposite"]
2023["SweepEdge Opposite"]
- 2024["SweepEdge Adjacent"]
+ 2024["SweepEdge Opposite"]
2025["SweepEdge Opposite"]
- 2026["SweepEdge Adjacent"]
+ 2026["SweepEdge Opposite"]
2027["SweepEdge Opposite"]
- 2028["SweepEdge Adjacent"]
+ 2028["SweepEdge Opposite"]
2029["SweepEdge Opposite"]
- 2030["SweepEdge Adjacent"]
+ 2030["SweepEdge Opposite"]
2031["SweepEdge Opposite"]
- 2032["SweepEdge Adjacent"]
+ 2032["SweepEdge Opposite"]
2033["SweepEdge Opposite"]
- 2034["SweepEdge Adjacent"]
+ 2034["SweepEdge Opposite"]
2035["SweepEdge Opposite"]
- 2036["SweepEdge Adjacent"]
+ 2036["SweepEdge Opposite"]
2037["SweepEdge Opposite"]
- 2038["SweepEdge Adjacent"]
+ 2038["SweepEdge Opposite"]
2039["SweepEdge Opposite"]
- 2040["SweepEdge Adjacent"]
+ 2040["SweepEdge Opposite"]
2041["SweepEdge Opposite"]
- 2042["SweepEdge Adjacent"]
+ 2042["SweepEdge Opposite"]
2043["SweepEdge Opposite"]
- 2044["SweepEdge Adjacent"]
+ 2044["SweepEdge Opposite"]
2045["SweepEdge Opposite"]
- 2046["SweepEdge Adjacent"]
+ 2046["SweepEdge Opposite"]
2047["SweepEdge Opposite"]
- 2048["SweepEdge Adjacent"]
+ 2048["SweepEdge Opposite"]
2049["SweepEdge Opposite"]
- 2050["SweepEdge Adjacent"]
+ 2050["SweepEdge Opposite"]
2051["SweepEdge Opposite"]
- 2052["SweepEdge Adjacent"]
+ 2052["SweepEdge Opposite"]
2053["SweepEdge Opposite"]
- 2054["SweepEdge Adjacent"]
+ 2054["SweepEdge Opposite"]
2055["SweepEdge Opposite"]
- 2056["SweepEdge Adjacent"]
+ 2056["SweepEdge Opposite"]
2057["SweepEdge Opposite"]
- 2058["SweepEdge Adjacent"]
+ 2058["SweepEdge Opposite"]
2059["SweepEdge Opposite"]
- 2060["SweepEdge Adjacent"]
+ 2060["SweepEdge Opposite"]
2061["SweepEdge Opposite"]
- 2062["SweepEdge Adjacent"]
+ 2062["SweepEdge Opposite"]
2063["SweepEdge Opposite"]
- 2064["SweepEdge Adjacent"]
+ 2064["SweepEdge Opposite"]
2065["SweepEdge Opposite"]
- 2066["SweepEdge Adjacent"]
+ 2066["SweepEdge Opposite"]
2067["SweepEdge Opposite"]
- 2068["SweepEdge Adjacent"]
+ 2068["SweepEdge Opposite"]
2069["SweepEdge Opposite"]
- 2070["SweepEdge Adjacent"]
+ 2070["SweepEdge Opposite"]
2071["SweepEdge Opposite"]
- 2072["SweepEdge Adjacent"]
+ 2072["SweepEdge Opposite"]
2073["SweepEdge Opposite"]
- 2074["SweepEdge Adjacent"]
+ 2074["SweepEdge Opposite"]
2075["SweepEdge Opposite"]
- 2076["SweepEdge Adjacent"]
+ 2076["SweepEdge Opposite"]
2077["SweepEdge Opposite"]
- 2078["SweepEdge Adjacent"]
+ 2078["SweepEdge Opposite"]
2079["SweepEdge Opposite"]
- 2080["SweepEdge Adjacent"]
+ 2080["SweepEdge Opposite"]
2081["SweepEdge Opposite"]
- 2082["SweepEdge Adjacent"]
+ 2082["SweepEdge Opposite"]
2083["SweepEdge Opposite"]
- 2084["SweepEdge Adjacent"]
+ 2084["SweepEdge Opposite"]
2085["SweepEdge Opposite"]
- 2086["SweepEdge Adjacent"]
+ 2086["SweepEdge Opposite"]
2087["SweepEdge Opposite"]
- 2088["SweepEdge Adjacent"]
+ 2088["SweepEdge Opposite"]
2089["SweepEdge Opposite"]
- 2090["SweepEdge Adjacent"]
+ 2090["SweepEdge Opposite"]
2091["SweepEdge Opposite"]
- 2092["SweepEdge Adjacent"]
+ 2092["SweepEdge Opposite"]
2093["SweepEdge Opposite"]
- 2094["SweepEdge Adjacent"]
+ 2094["SweepEdge Opposite"]
2095["SweepEdge Opposite"]
- 2096["SweepEdge Adjacent"]
+ 2096["SweepEdge Opposite"]
2097["SweepEdge Opposite"]
- 2098["SweepEdge Adjacent"]
+ 2098["SweepEdge Opposite"]
2099["SweepEdge Opposite"]
- 2100["SweepEdge Adjacent"]
+ 2100["SweepEdge Opposite"]
2101["SweepEdge Opposite"]
- 2102["SweepEdge Adjacent"]
+ 2102["SweepEdge Opposite"]
2103["SweepEdge Opposite"]
- 2104["SweepEdge Adjacent"]
+ 2104["SweepEdge Opposite"]
2105["SweepEdge Opposite"]
- 2106["SweepEdge Adjacent"]
+ 2106["SweepEdge Opposite"]
2107["SweepEdge Opposite"]
- 2108["SweepEdge Adjacent"]
+ 2108["SweepEdge Opposite"]
2109["SweepEdge Opposite"]
- 2110["SweepEdge Adjacent"]
+ 2110["SweepEdge Opposite"]
2111["SweepEdge Opposite"]
- 2112["SweepEdge Adjacent"]
+ 2112["SweepEdge Opposite"]
2113["SweepEdge Opposite"]
- 2114["SweepEdge Adjacent"]
+ 2114["SweepEdge Opposite"]
2115["SweepEdge Opposite"]
- 2116["SweepEdge Adjacent"]
+ 2116["SweepEdge Opposite"]
2117["SweepEdge Opposite"]
- 2118["SweepEdge Adjacent"]
+ 2118["SweepEdge Opposite"]
2119["SweepEdge Opposite"]
- 2120["SweepEdge Adjacent"]
+ 2120["SweepEdge Opposite"]
2121["SweepEdge Opposite"]
- 2122["SweepEdge Adjacent"]
+ 2122["SweepEdge Opposite"]
2123["SweepEdge Opposite"]
- 2124["SweepEdge Adjacent"]
+ 2124["SweepEdge Opposite"]
2125["SweepEdge Opposite"]
- 2126["SweepEdge Adjacent"]
+ 2126["SweepEdge Opposite"]
2127["SweepEdge Opposite"]
- 2128["SweepEdge Adjacent"]
+ 2128["SweepEdge Opposite"]
2129["SweepEdge Opposite"]
- 2130["SweepEdge Adjacent"]
+ 2130["SweepEdge Opposite"]
2131["SweepEdge Opposite"]
- 2132["SweepEdge Adjacent"]
+ 2132["SweepEdge Opposite"]
2133["SweepEdge Opposite"]
- 2134["SweepEdge Adjacent"]
+ 2134["SweepEdge Opposite"]
2135["SweepEdge Opposite"]
- 2136["SweepEdge Adjacent"]
+ 2136["SweepEdge Opposite"]
2137["SweepEdge Opposite"]
- 2138["SweepEdge Adjacent"]
+ 2138["SweepEdge Opposite"]
2139["SweepEdge Opposite"]
- 2140["SweepEdge Adjacent"]
+ 2140["SweepEdge Opposite"]
2141["SweepEdge Opposite"]
- 2142["SweepEdge Adjacent"]
+ 2142["SweepEdge Opposite"]
2143["SweepEdge Opposite"]
- 2144["SweepEdge Adjacent"]
+ 2144["SweepEdge Opposite"]
2145["SweepEdge Opposite"]
- 2146["SweepEdge Adjacent"]
+ 2146["SweepEdge Opposite"]
2147["SweepEdge Opposite"]
- 2148["SweepEdge Adjacent"]
+ 2148["SweepEdge Opposite"]
2149["SweepEdge Opposite"]
- 2150["SweepEdge Adjacent"]
+ 2150["SweepEdge Opposite"]
2151["SweepEdge Opposite"]
- 2152["SweepEdge Adjacent"]
+ 2152["SweepEdge Opposite"]
2153["SweepEdge Opposite"]
- 2154["SweepEdge Adjacent"]
+ 2154["SweepEdge Opposite"]
2155["SweepEdge Opposite"]
- 2156["SweepEdge Adjacent"]
+ 2156["SweepEdge Opposite"]
2157["SweepEdge Opposite"]
- 2158["SweepEdge Adjacent"]
+ 2158["SweepEdge Opposite"]
2159["SweepEdge Opposite"]
- 2160["SweepEdge Adjacent"]
+ 2160["SweepEdge Opposite"]
2161["SweepEdge Opposite"]
- 2162["SweepEdge Adjacent"]
+ 2162["SweepEdge Opposite"]
2163["SweepEdge Opposite"]
- 2164["SweepEdge Adjacent"]
+ 2164["SweepEdge Opposite"]
2165["SweepEdge Opposite"]
- 2166["SweepEdge Adjacent"]
+ 2166["SweepEdge Opposite"]
2167["SweepEdge Opposite"]
- 2168["SweepEdge Adjacent"]
+ 2168["SweepEdge Opposite"]
2169["SweepEdge Opposite"]
- 2170["SweepEdge Adjacent"]
+ 2170["SweepEdge Opposite"]
2171["SweepEdge Opposite"]
- 2172["SweepEdge Adjacent"]
+ 2172["SweepEdge Opposite"]
2173["SweepEdge Opposite"]
- 2174["SweepEdge Adjacent"]
+ 2174["SweepEdge Opposite"]
2175["SweepEdge Opposite"]
- 2176["SweepEdge Adjacent"]
+ 2176["SweepEdge Opposite"]
2177["SweepEdge Opposite"]
- 2178["SweepEdge Adjacent"]
+ 2178["SweepEdge Opposite"]
2179["SweepEdge Opposite"]
- 2180["SweepEdge Adjacent"]
+ 2180["SweepEdge Opposite"]
2181["SweepEdge Opposite"]
- 2182["SweepEdge Adjacent"]
+ 2182["SweepEdge Opposite"]
2183["SweepEdge Opposite"]
- 2184["SweepEdge Adjacent"]
+ 2184["SweepEdge Opposite"]
2185["SweepEdge Opposite"]
- 2186["SweepEdge Adjacent"]
+ 2186["SweepEdge Opposite"]
2187["SweepEdge Opposite"]
- 2188["SweepEdge Adjacent"]
+ 2188["SweepEdge Opposite"]
2189["SweepEdge Opposite"]
- 2190["SweepEdge Adjacent"]
+ 2190["SweepEdge Opposite"]
2191["SweepEdge Opposite"]
- 2192["SweepEdge Adjacent"]
+ 2192["SweepEdge Opposite"]
2193["SweepEdge Opposite"]
- 2194["SweepEdge Adjacent"]
+ 2194["SweepEdge Opposite"]
2195["SweepEdge Opposite"]
- 2196["SweepEdge Adjacent"]
+ 2196["SweepEdge Opposite"]
2197["SweepEdge Opposite"]
- 2198["SweepEdge Adjacent"]
+ 2198["SweepEdge Opposite"]
2199["SweepEdge Opposite"]
- 2200["SweepEdge Adjacent"]
+ 2200["SweepEdge Opposite"]
2201["SweepEdge Opposite"]
- 2202["SweepEdge Adjacent"]
+ 2202["SweepEdge Opposite"]
2203["SweepEdge Opposite"]
- 2204["SweepEdge Adjacent"]
+ 2204["SweepEdge Opposite"]
2205["SweepEdge Opposite"]
- 2206["SweepEdge Adjacent"]
+ 2206["SweepEdge Opposite"]
2207["SweepEdge Opposite"]
- 2208["SweepEdge Adjacent"]
+ 2208["SweepEdge Opposite"]
2209["SweepEdge Opposite"]
- 2210["SweepEdge Adjacent"]
+ 2210["SweepEdge Opposite"]
2211["SweepEdge Opposite"]
- 2212["SweepEdge Adjacent"]
+ 2212["SweepEdge Opposite"]
2213["SweepEdge Opposite"]
- 2214["SweepEdge Adjacent"]
+ 2214["SweepEdge Opposite"]
2215["SweepEdge Opposite"]
- 2216["SweepEdge Adjacent"]
+ 2216["SweepEdge Opposite"]
2217["SweepEdge Opposite"]
- 2218["SweepEdge Adjacent"]
+ 2218["SweepEdge Opposite"]
2219["SweepEdge Opposite"]
- 2220["SweepEdge Adjacent"]
+ 2220["SweepEdge Opposite"]
2221["SweepEdge Opposite"]
- 2222["SweepEdge Adjacent"]
+ 2222["SweepEdge Opposite"]
2223["SweepEdge Opposite"]
- 2224["SweepEdge Adjacent"]
+ 2224["SweepEdge Opposite"]
2225["SweepEdge Opposite"]
- 2226["SweepEdge Adjacent"]
+ 2226["SweepEdge Opposite"]
2227["SweepEdge Opposite"]
- 2228["SweepEdge Adjacent"]
+ 2228["SweepEdge Opposite"]
2229["SweepEdge Opposite"]
- 2230["SweepEdge Adjacent"]
+ 2230["SweepEdge Opposite"]
2231["SweepEdge Opposite"]
- 2232["SweepEdge Adjacent"]
+ 2232["SweepEdge Opposite"]
2233["SweepEdge Opposite"]
- 2234["SweepEdge Adjacent"]
+ 2234["SweepEdge Opposite"]
2235["SweepEdge Opposite"]
- 2236["SweepEdge Adjacent"]
+ 2236["SweepEdge Opposite"]
2237["SweepEdge Opposite"]
- 2238["SweepEdge Adjacent"]
+ 2238["SweepEdge Opposite"]
2239["SweepEdge Opposite"]
- 2240["SweepEdge Adjacent"]
+ 2240["SweepEdge Opposite"]
2241["SweepEdge Opposite"]
- 2242["SweepEdge Adjacent"]
+ 2242["SweepEdge Opposite"]
2243["SweepEdge Opposite"]
- 2244["SweepEdge Adjacent"]
+ 2244["SweepEdge Opposite"]
2245["SweepEdge Opposite"]
- 2246["SweepEdge Adjacent"]
+ 2246["SweepEdge Opposite"]
2247["SweepEdge Opposite"]
- 2248["SweepEdge Adjacent"]
+ 2248["SweepEdge Opposite"]
2249["SweepEdge Opposite"]
- 2250["SweepEdge Adjacent"]
+ 2250["SweepEdge Opposite"]
2251["SweepEdge Opposite"]
- 2252["SweepEdge Adjacent"]
+ 2252["SweepEdge Opposite"]
2253["SweepEdge Opposite"]
- 2254["SweepEdge Adjacent"]
+ 2254["SweepEdge Opposite"]
2255["SweepEdge Opposite"]
- 2256["SweepEdge Adjacent"]
+ 2256["SweepEdge Opposite"]
2257["SweepEdge Opposite"]
- 2258["SweepEdge Adjacent"]
+ 2258["SweepEdge Opposite"]
2259["SweepEdge Opposite"]
- 2260["SweepEdge Adjacent"]
+ 2260["SweepEdge Opposite"]
2261["SweepEdge Opposite"]
- 2262["SweepEdge Adjacent"]
+ 2262["SweepEdge Opposite"]
2263["SweepEdge Opposite"]
- 2264["SweepEdge Adjacent"]
+ 2264["SweepEdge Opposite"]
2265["SweepEdge Opposite"]
- 2266["SweepEdge Adjacent"]
+ 2266["SweepEdge Opposite"]
2267["SweepEdge Opposite"]
- 2268["SweepEdge Adjacent"]
+ 2268["SweepEdge Opposite"]
2269["SweepEdge Opposite"]
- 2270["SweepEdge Adjacent"]
+ 2270["SweepEdge Opposite"]
2271["SweepEdge Opposite"]
- 2272["SweepEdge Adjacent"]
+ 2272["SweepEdge Opposite"]
2273["SweepEdge Opposite"]
- 2274["SweepEdge Adjacent"]
+ 2274["SweepEdge Opposite"]
2275["SweepEdge Opposite"]
- 2276["SweepEdge Adjacent"]
+ 2276["SweepEdge Opposite"]
2277["SweepEdge Opposite"]
- 2278["SweepEdge Adjacent"]
+ 2278["SweepEdge Opposite"]
2279["SweepEdge Opposite"]
- 2280["SweepEdge Adjacent"]
+ 2280["SweepEdge Opposite"]
2281["SweepEdge Opposite"]
- 2282["SweepEdge Adjacent"]
+ 2282["SweepEdge Opposite"]
2283["SweepEdge Opposite"]
- 2284["SweepEdge Adjacent"]
+ 2284["SweepEdge Opposite"]
2285["SweepEdge Opposite"]
- 2286["SweepEdge Adjacent"]
+ 2286["SweepEdge Opposite"]
2287["SweepEdge Opposite"]
- 2288["SweepEdge Adjacent"]
+ 2288["SweepEdge Opposite"]
2289["SweepEdge Opposite"]
- 2290["SweepEdge Adjacent"]
+ 2290["SweepEdge Opposite"]
2291["SweepEdge Opposite"]
- 2292["SweepEdge Adjacent"]
+ 2292["SweepEdge Opposite"]
2293["SweepEdge Opposite"]
- 2294["SweepEdge Adjacent"]
+ 2294["SweepEdge Opposite"]
2295["SweepEdge Opposite"]
- 2296["SweepEdge Adjacent"]
+ 2296["SweepEdge Opposite"]
2297["SweepEdge Opposite"]
- 2298["SweepEdge Adjacent"]
+ 2298["SweepEdge Opposite"]
2299["SweepEdge Opposite"]
- 2300["SweepEdge Adjacent"]
+ 2300["SweepEdge Opposite"]
2301["SweepEdge Opposite"]
- 2302["SweepEdge Adjacent"]
+ 2302["SweepEdge Opposite"]
2303["SweepEdge Opposite"]
- 2304["SweepEdge Adjacent"]
+ 2304["SweepEdge Opposite"]
2305["SweepEdge Opposite"]
- 2306["SweepEdge Adjacent"]
+ 2306["SweepEdge Opposite"]
2307["SweepEdge Opposite"]
- 2308["SweepEdge Adjacent"]
+ 2308["SweepEdge Opposite"]
2309["SweepEdge Opposite"]
- 2310["SweepEdge Adjacent"]
+ 2310["SweepEdge Opposite"]
2311["SweepEdge Opposite"]
- 2312["SweepEdge Adjacent"]
+ 2312["SweepEdge Opposite"]
2313["SweepEdge Opposite"]
- 2314["SweepEdge Adjacent"]
+ 2314["SweepEdge Opposite"]
2315["SweepEdge Opposite"]
- 2316["SweepEdge Adjacent"]
+ 2316["SweepEdge Opposite"]
2317["SweepEdge Opposite"]
- 2318["SweepEdge Adjacent"]
+ 2318["SweepEdge Opposite"]
2319["SweepEdge Opposite"]
- 2320["SweepEdge Adjacent"]
+ 2320["SweepEdge Opposite"]
2321["SweepEdge Opposite"]
- 2322["SweepEdge Adjacent"]
+ 2322["SweepEdge Opposite"]
2323["SweepEdge Opposite"]
- 2324["SweepEdge Adjacent"]
+ 2324["SweepEdge Opposite"]
2325["SweepEdge Opposite"]
- 2326["SweepEdge Adjacent"]
+ 2326["SweepEdge Opposite"]
2327["SweepEdge Opposite"]
- 2328["SweepEdge Adjacent"]
+ 2328["SweepEdge Opposite"]
2329["SweepEdge Opposite"]
- 2330["SweepEdge Adjacent"]
+ 2330["SweepEdge Opposite"]
2331["SweepEdge Opposite"]
- 2332["SweepEdge Adjacent"]
+ 2332["SweepEdge Opposite"]
2333["SweepEdge Opposite"]
- 2334["SweepEdge Adjacent"]
+ 2334["SweepEdge Opposite"]
2335["SweepEdge Opposite"]
- 2336["SweepEdge Adjacent"]
+ 2336["SweepEdge Opposite"]
2337["SweepEdge Opposite"]
- 2338["SweepEdge Adjacent"]
+ 2338["SweepEdge Opposite"]
2339["SweepEdge Opposite"]
- 2340["SweepEdge Adjacent"]
+ 2340["SweepEdge Opposite"]
2341["SweepEdge Opposite"]
- 2342["SweepEdge Adjacent"]
+ 2342["SweepEdge Opposite"]
2343["SweepEdge Opposite"]
- 2344["SweepEdge Adjacent"]
+ 2344["SweepEdge Opposite"]
2345["SweepEdge Opposite"]
- 2346["SweepEdge Adjacent"]
+ 2346["SweepEdge Opposite"]
2347["SweepEdge Opposite"]
- 2348["SweepEdge Adjacent"]
+ 2348["SweepEdge Opposite"]
2349["SweepEdge Opposite"]
- 2350["SweepEdge Adjacent"]
+ 2350["SweepEdge Opposite"]
2351["SweepEdge Opposite"]
- 2352["SweepEdge Adjacent"]
+ 2352["SweepEdge Opposite"]
2353["SweepEdge Opposite"]
- 2354["SweepEdge Adjacent"]
+ 2354["SweepEdge Opposite"]
2355["SweepEdge Opposite"]
- 2356["SweepEdge Adjacent"]
+ 2356["SweepEdge Opposite"]
2357["SweepEdge Opposite"]
- 2358["SweepEdge Adjacent"]
+ 2358["SweepEdge Opposite"]
2359["SweepEdge Opposite"]
- 2360["SweepEdge Adjacent"]
+ 2360["SweepEdge Opposite"]
2361["SweepEdge Opposite"]
- 2362["SweepEdge Adjacent"]
+ 2362["SweepEdge Opposite"]
2363["SweepEdge Opposite"]
- 2364["SweepEdge Adjacent"]
+ 2364["SweepEdge Opposite"]
2365["SweepEdge Opposite"]
- 2366["SweepEdge Adjacent"]
+ 2366["SweepEdge Opposite"]
2367["SweepEdge Opposite"]
- 2368["SweepEdge Adjacent"]
+ 2368["SweepEdge Opposite"]
2369["SweepEdge Opposite"]
- 2370["SweepEdge Adjacent"]
+ 2370["SweepEdge Opposite"]
2371["SweepEdge Opposite"]
- 2372["SweepEdge Adjacent"]
+ 2372["SweepEdge Opposite"]
2373["SweepEdge Opposite"]
- 2374["SweepEdge Adjacent"]
+ 2374["SweepEdge Opposite"]
2375["SweepEdge Opposite"]
- 2376["SweepEdge Adjacent"]
+ 2376["SweepEdge Opposite"]
2377["SweepEdge Opposite"]
- 2378["SweepEdge Adjacent"]
+ 2378["SweepEdge Opposite"]
2379["SweepEdge Opposite"]
- 2380["SweepEdge Adjacent"]
+ 2380["SweepEdge Opposite"]
2381["SweepEdge Opposite"]
- 2382["SweepEdge Adjacent"]
+ 2382["SweepEdge Opposite"]
2383["SweepEdge Opposite"]
- 2384["SweepEdge Adjacent"]
+ 2384["SweepEdge Opposite"]
2385["SweepEdge Opposite"]
- 2386["SweepEdge Adjacent"]
+ 2386["SweepEdge Opposite"]
2387["SweepEdge Opposite"]
- 2388["SweepEdge Adjacent"]
+ 2388["SweepEdge Opposite"]
2389["SweepEdge Opposite"]
- 2390["SweepEdge Adjacent"]
+ 2390["SweepEdge Opposite"]
2391["SweepEdge Opposite"]
- 2392["SweepEdge Adjacent"]
+ 2392["SweepEdge Opposite"]
2393["SweepEdge Opposite"]
- 2394["SweepEdge Adjacent"]
+ 2394["SweepEdge Opposite"]
2395["SweepEdge Opposite"]
- 2396["SweepEdge Adjacent"]
+ 2396["SweepEdge Opposite"]
2397["SweepEdge Opposite"]
- 2398["SweepEdge Adjacent"]
+ 2398["SweepEdge Opposite"]
2399["SweepEdge Opposite"]
- 2400["SweepEdge Adjacent"]
+ 2400["SweepEdge Opposite"]
2401["SweepEdge Opposite"]
- 2402["SweepEdge Adjacent"]
+ 2402["SweepEdge Opposite"]
2403["SweepEdge Opposite"]
- 2404["SweepEdge Adjacent"]
+ 2404["SweepEdge Opposite"]
2405["SweepEdge Opposite"]
- 2406["SweepEdge Adjacent"]
+ 2406["SweepEdge Opposite"]
2407["SweepEdge Opposite"]
- 2408["SweepEdge Adjacent"]
+ 2408["SweepEdge Opposite"]
2409["SweepEdge Opposite"]
- 2410["SweepEdge Adjacent"]
+ 2410["SweepEdge Opposite"]
2411["SweepEdge Opposite"]
- 2412["SweepEdge Adjacent"]
+ 2412["SweepEdge Opposite"]
2413["SweepEdge Opposite"]
- 2414["SweepEdge Adjacent"]
+ 2414["SweepEdge Opposite"]
2415["SweepEdge Opposite"]
- 2416["SweepEdge Adjacent"]
+ 2416["SweepEdge Opposite"]
2417["SweepEdge Opposite"]
- 2418["SweepEdge Adjacent"]
+ 2418["SweepEdge Opposite"]
2419["SweepEdge Opposite"]
- 2420["SweepEdge Adjacent"]
+ 2420["SweepEdge Opposite"]
2421["SweepEdge Opposite"]
- 2422["SweepEdge Adjacent"]
+ 2422["SweepEdge Opposite"]
2423["SweepEdge Opposite"]
- 2424["SweepEdge Adjacent"]
+ 2424["SweepEdge Opposite"]
2425["SweepEdge Opposite"]
- 2426["SweepEdge Adjacent"]
+ 2426["SweepEdge Opposite"]
2427["SweepEdge Opposite"]
- 2428["SweepEdge Adjacent"]
+ 2428["SweepEdge Opposite"]
2429["SweepEdge Opposite"]
- 2430["SweepEdge Adjacent"]
+ 2430["SweepEdge Opposite"]
2431["SweepEdge Opposite"]
- 2432["SweepEdge Adjacent"]
+ 2432["SweepEdge Opposite"]
2433["SweepEdge Opposite"]
- 2434["SweepEdge Adjacent"]
+ 2434["SweepEdge Opposite"]
2435["SweepEdge Opposite"]
- 2436["SweepEdge Adjacent"]
+ 2436["SweepEdge Opposite"]
2437["SweepEdge Opposite"]
- 2438["SweepEdge Adjacent"]
+ 2438["SweepEdge Opposite"]
2439["SweepEdge Opposite"]
- 2440["SweepEdge Adjacent"]
+ 2440["SweepEdge Opposite"]
2441["SweepEdge Opposite"]
- 2442["SweepEdge Adjacent"]
+ 2442["SweepEdge Opposite"]
2443["SweepEdge Opposite"]
- 2444["SweepEdge Adjacent"]
+ 2444["SweepEdge Opposite"]
2445["SweepEdge Opposite"]
- 2446["SweepEdge Adjacent"]
+ 2446["SweepEdge Opposite"]
2447["SweepEdge Opposite"]
- 2448["SweepEdge Adjacent"]
+ 2448["SweepEdge Opposite"]
2449["SweepEdge Opposite"]
- 2450["SweepEdge Adjacent"]
+ 2450["SweepEdge Opposite"]
2451["SweepEdge Opposite"]
- 2452["SweepEdge Adjacent"]
+ 2452["SweepEdge Opposite"]
2453["SweepEdge Opposite"]
- 2454["SweepEdge Adjacent"]
+ 2454["SweepEdge Opposite"]
2455["SweepEdge Opposite"]
- 2456["SweepEdge Adjacent"]
+ 2456["SweepEdge Opposite"]
2457["SweepEdge Opposite"]
- 2458["SweepEdge Adjacent"]
+ 2458["SweepEdge Opposite"]
2459["SweepEdge Opposite"]
- 2460["SweepEdge Adjacent"]
+ 2460["SweepEdge Opposite"]
2461["SweepEdge Opposite"]
- 2462["SweepEdge Adjacent"]
+ 2462["SweepEdge Opposite"]
2463["SweepEdge Opposite"]
- 2464["SweepEdge Adjacent"]
+ 2464["SweepEdge Opposite"]
2465["SweepEdge Opposite"]
- 2466["SweepEdge Adjacent"]
+ 2466["SweepEdge Opposite"]
2467["SweepEdge Opposite"]
- 2468["SweepEdge Adjacent"]
+ 2468["SweepEdge Opposite"]
2469["SweepEdge Opposite"]
- 2470["SweepEdge Adjacent"]
+ 2470["SweepEdge Opposite"]
2471["SweepEdge Opposite"]
- 2472["SweepEdge Adjacent"]
+ 2472["SweepEdge Opposite"]
2473["SweepEdge Opposite"]
- 2474["SweepEdge Adjacent"]
+ 2474["SweepEdge Opposite"]
2475["SweepEdge Opposite"]
- 2476["SweepEdge Adjacent"]
+ 2476["SweepEdge Opposite"]
2477["SweepEdge Opposite"]
- 2478["SweepEdge Adjacent"]
+ 2478["SweepEdge Opposite"]
2479["SweepEdge Opposite"]
- 2480["SweepEdge Adjacent"]
+ 2480["SweepEdge Opposite"]
2481["SweepEdge Opposite"]
- 2482["SweepEdge Adjacent"]
+ 2482["SweepEdge Opposite"]
2483["SweepEdge Opposite"]
- 2484["SweepEdge Adjacent"]
+ 2484["SweepEdge Opposite"]
2485["SweepEdge Opposite"]
- 2486["SweepEdge Adjacent"]
+ 2486["SweepEdge Opposite"]
2487["SweepEdge Opposite"]
- 2488["SweepEdge Adjacent"]
+ 2488["SweepEdge Opposite"]
2489["SweepEdge Opposite"]
- 2490["SweepEdge Adjacent"]
+ 2490["SweepEdge Opposite"]
2491["SweepEdge Opposite"]
- 2492["SweepEdge Adjacent"]
+ 2492["SweepEdge Opposite"]
2493["SweepEdge Opposite"]
- 2494["SweepEdge Adjacent"]
+ 2494["SweepEdge Opposite"]
2495["SweepEdge Opposite"]
- 2496["SweepEdge Adjacent"]
+ 2496["SweepEdge Opposite"]
2497["SweepEdge Opposite"]
- 2498["SweepEdge Adjacent"]
+ 2498["SweepEdge Opposite"]
2499["SweepEdge Opposite"]
- 2500["SweepEdge Adjacent"]
+ 2500["SweepEdge Opposite"]
2501["SweepEdge Opposite"]
- 2502["SweepEdge Adjacent"]
+ 2502["SweepEdge Opposite"]
2503["SweepEdge Opposite"]
- 2504["SweepEdge Adjacent"]
+ 2504["SweepEdge Opposite"]
2505["SweepEdge Opposite"]
- 2506["SweepEdge Adjacent"]
+ 2506["SweepEdge Opposite"]
2507["SweepEdge Opposite"]
- 2508["SweepEdge Adjacent"]
+ 2508["SweepEdge Opposite"]
2509["SweepEdge Opposite"]
- 2510["SweepEdge Adjacent"]
+ 2510["SweepEdge Opposite"]
2511["SweepEdge Opposite"]
- 2512["SweepEdge Adjacent"]
+ 2512["SweepEdge Opposite"]
2513["SweepEdge Opposite"]
- 2514["SweepEdge Adjacent"]
+ 2514["SweepEdge Opposite"]
2515["SweepEdge Opposite"]
- 2516["SweepEdge Adjacent"]
+ 2516["SweepEdge Opposite"]
2517["SweepEdge Opposite"]
- 2518["SweepEdge Adjacent"]
+ 2518["SweepEdge Opposite"]
2519["SweepEdge Opposite"]
- 2520["SweepEdge Adjacent"]
+ 2520["SweepEdge Opposite"]
2521["SweepEdge Opposite"]
- 2522["SweepEdge Adjacent"]
+ 2522["SweepEdge Opposite"]
2523["SweepEdge Opposite"]
- 2524["SweepEdge Adjacent"]
+ 2524["SweepEdge Opposite"]
2525["SweepEdge Opposite"]
- 2526["SweepEdge Adjacent"]
+ 2526["SweepEdge Opposite"]
2527["SweepEdge Opposite"]
- 2528["SweepEdge Adjacent"]
+ 2528["SweepEdge Opposite"]
2529["SweepEdge Opposite"]
- 2530["SweepEdge Adjacent"]
+ 2530["SweepEdge Opposite"]
2531["SweepEdge Opposite"]
- 2532["SweepEdge Adjacent"]
+ 2532["SweepEdge Opposite"]
2533["SweepEdge Opposite"]
- 2534["SweepEdge Adjacent"]
+ 2534["SweepEdge Opposite"]
2535["SweepEdge Opposite"]
- 2536["SweepEdge Adjacent"]
+ 2536["SweepEdge Opposite"]
2537["SweepEdge Opposite"]
- 2538["SweepEdge Adjacent"]
+ 2538["SweepEdge Opposite"]
2539["SweepEdge Opposite"]
- 2540["SweepEdge Adjacent"]
+ 2540["SweepEdge Opposite"]
2541["SweepEdge Opposite"]
- 2542["SweepEdge Adjacent"]
+ 2542["SweepEdge Opposite"]
2543["SweepEdge Opposite"]
- 2544["SweepEdge Adjacent"]
+ 2544["SweepEdge Opposite"]
2545["SweepEdge Opposite"]
- 2546["SweepEdge Adjacent"]
+ 2546["SweepEdge Opposite"]
2547["SweepEdge Opposite"]
- 2548["SweepEdge Adjacent"]
+ 2548["SweepEdge Opposite"]
2549["SweepEdge Opposite"]
- 2550["SweepEdge Adjacent"]
+ 2550["SweepEdge Opposite"]
2551["SweepEdge Opposite"]
- 2552["SweepEdge Adjacent"]
+ 2552["SweepEdge Opposite"]
2553["SweepEdge Opposite"]
- 2554["SweepEdge Adjacent"]
+ 2554["SweepEdge Opposite"]
2555["SweepEdge Opposite"]
- 2556["SweepEdge Adjacent"]
+ 2556["SweepEdge Opposite"]
2557["SweepEdge Opposite"]
- 2558["SweepEdge Adjacent"]
+ 2558["SweepEdge Opposite"]
2559["SweepEdge Opposite"]
- 2560["SweepEdge Adjacent"]
+ 2560["SweepEdge Opposite"]
2561["SweepEdge Opposite"]
- 2562["SweepEdge Adjacent"]
+ 2562["SweepEdge Opposite"]
2563["SweepEdge Opposite"]
- 2564["SweepEdge Adjacent"]
+ 2564["SweepEdge Opposite"]
2565["SweepEdge Opposite"]
- 2566["SweepEdge Adjacent"]
+ 2566["SweepEdge Opposite"]
2567["SweepEdge Opposite"]
- 2568["SweepEdge Adjacent"]
+ 2568["SweepEdge Opposite"]
2569["SweepEdge Opposite"]
- 2570["SweepEdge Adjacent"]
+ 2570["SweepEdge Opposite"]
2571["SweepEdge Opposite"]
- 2572["SweepEdge Adjacent"]
+ 2572["SweepEdge Opposite"]
2573["SweepEdge Opposite"]
- 2574["SweepEdge Adjacent"]
+ 2574["SweepEdge Opposite"]
2575["SweepEdge Opposite"]
- 2576["SweepEdge Adjacent"]
+ 2576["SweepEdge Opposite"]
2577["SweepEdge Opposite"]
- 2578["SweepEdge Adjacent"]
+ 2578["SweepEdge Opposite"]
2579["SweepEdge Opposite"]
- 2580["SweepEdge Adjacent"]
+ 2580["SweepEdge Opposite"]
2581["SweepEdge Opposite"]
- 2582["SweepEdge Adjacent"]
+ 2582["SweepEdge Opposite"]
2583["SweepEdge Opposite"]
- 2584["SweepEdge Adjacent"]
+ 2584["SweepEdge Opposite"]
2585["SweepEdge Opposite"]
- 2586["SweepEdge Adjacent"]
+ 2586["SweepEdge Opposite"]
2587["SweepEdge Opposite"]
- 2588["SweepEdge Adjacent"]
+ 2588["SweepEdge Opposite"]
2589["SweepEdge Opposite"]
- 2590["SweepEdge Adjacent"]
+ 2590["SweepEdge Opposite"]
2591["SweepEdge Opposite"]
- 2592["SweepEdge Adjacent"]
+ 2592["SweepEdge Opposite"]
2593["SweepEdge Opposite"]
- 2594["SweepEdge Adjacent"]
+ 2594["SweepEdge Opposite"]
2595["SweepEdge Opposite"]
- 2596["SweepEdge Adjacent"]
+ 2596["SweepEdge Opposite"]
2597["SweepEdge Opposite"]
- 2598["SweepEdge Adjacent"]
+ 2598["SweepEdge Opposite"]
2599["SweepEdge Opposite"]
- 2600["SweepEdge Adjacent"]
+ 2600["SweepEdge Opposite"]
2601["SweepEdge Opposite"]
- 2602["SweepEdge Adjacent"]
+ 2602["SweepEdge Opposite"]
2603["SweepEdge Opposite"]
- 2604["SweepEdge Adjacent"]
+ 2604["SweepEdge Opposite"]
2605["SweepEdge Opposite"]
- 2606["SweepEdge Adjacent"]
+ 2606["SweepEdge Opposite"]
2607["SweepEdge Opposite"]
- 2608["SweepEdge Adjacent"]
+ 2608["SweepEdge Opposite"]
2609["SweepEdge Opposite"]
- 2610["SweepEdge Adjacent"]
+ 2610["SweepEdge Opposite"]
2611["SweepEdge Opposite"]
- 2612["SweepEdge Adjacent"]
+ 2612["SweepEdge Opposite"]
2613["SweepEdge Opposite"]
- 2614["SweepEdge Adjacent"]
+ 2614["SweepEdge Opposite"]
2615["SweepEdge Opposite"]
- 2616["SweepEdge Adjacent"]
+ 2616["SweepEdge Opposite"]
2617["SweepEdge Opposite"]
- 2618["SweepEdge Adjacent"]
+ 2618["SweepEdge Opposite"]
2619["SweepEdge Opposite"]
- 2620["SweepEdge Adjacent"]
+ 2620["SweepEdge Opposite"]
2621["SweepEdge Opposite"]
- 2622["SweepEdge Adjacent"]
+ 2622["SweepEdge Opposite"]
2623["SweepEdge Opposite"]
- 2624["SweepEdge Adjacent"]
+ 2624["SweepEdge Opposite"]
2625["SweepEdge Opposite"]
- 2626["SweepEdge Adjacent"]
+ 2626["SweepEdge Opposite"]
2627["SweepEdge Opposite"]
- 2628["SweepEdge Adjacent"]
+ 2628["SweepEdge Opposite"]
2629["SweepEdge Opposite"]
- 2630["SweepEdge Adjacent"]
+ 2630["SweepEdge Opposite"]
2631["SweepEdge Opposite"]
- 2632["SweepEdge Adjacent"]
+ 2632["SweepEdge Opposite"]
2633["SweepEdge Opposite"]
- 2634["SweepEdge Adjacent"]
+ 2634["SweepEdge Opposite"]
2635["SweepEdge Opposite"]
- 2636["SweepEdge Adjacent"]
+ 2636["SweepEdge Opposite"]
2637["SweepEdge Opposite"]
- 2638["SweepEdge Adjacent"]
+ 2638["SweepEdge Opposite"]
2639["SweepEdge Opposite"]
- 2640["SweepEdge Adjacent"]
+ 2640["SweepEdge Opposite"]
2641["SweepEdge Opposite"]
- 2642["SweepEdge Adjacent"]
+ 2642["SweepEdge Opposite"]
2643["SweepEdge Opposite"]
- 2644["SweepEdge Adjacent"]
+ 2644["SweepEdge Opposite"]
2645["SweepEdge Opposite"]
- 2646["SweepEdge Adjacent"]
+ 2646["SweepEdge Opposite"]
2647["SweepEdge Opposite"]
- 2648["SweepEdge Adjacent"]
+ 2648["SweepEdge Opposite"]
2649["SweepEdge Opposite"]
- 2650["SweepEdge Adjacent"]
+ 2650["SweepEdge Opposite"]
2651["SweepEdge Opposite"]
- 2652["SweepEdge Adjacent"]
+ 2652["SweepEdge Opposite"]
2653["SweepEdge Opposite"]
- 2654["SweepEdge Adjacent"]
+ 2654["SweepEdge Opposite"]
2655["SweepEdge Opposite"]
- 2656["SweepEdge Adjacent"]
+ 2656["SweepEdge Opposite"]
2657["SweepEdge Opposite"]
- 2658["SweepEdge Adjacent"]
+ 2658["SweepEdge Opposite"]
2659["SweepEdge Opposite"]
- 2660["SweepEdge Adjacent"]
+ 2660["SweepEdge Opposite"]
2661["SweepEdge Opposite"]
- 2662["SweepEdge Adjacent"]
+ 2662["SweepEdge Opposite"]
2663["SweepEdge Opposite"]
- 2664["SweepEdge Adjacent"]
+ 2664["SweepEdge Opposite"]
2665["SweepEdge Opposite"]
- 2666["SweepEdge Adjacent"]
+ 2666["SweepEdge Opposite"]
2667["SweepEdge Opposite"]
- 2668["SweepEdge Adjacent"]
+ 2668["SweepEdge Opposite"]
2669["SweepEdge Opposite"]
- 2670["SweepEdge Adjacent"]
+ 2670["SweepEdge Opposite"]
2671["SweepEdge Opposite"]
- 2672["SweepEdge Adjacent"]
+ 2672["SweepEdge Opposite"]
2673["SweepEdge Opposite"]
- 2674["SweepEdge Adjacent"]
+ 2674["SweepEdge Opposite"]
2675["SweepEdge Opposite"]
- 2676["SweepEdge Adjacent"]
+ 2676["SweepEdge Opposite"]
2677["SweepEdge Opposite"]
- 2678["SweepEdge Adjacent"]
+ 2678["SweepEdge Opposite"]
2679["SweepEdge Opposite"]
- 2680["SweepEdge Adjacent"]
+ 2680["SweepEdge Opposite"]
2681["SweepEdge Opposite"]
- 2682["SweepEdge Adjacent"]
+ 2682["SweepEdge Opposite"]
2683["SweepEdge Opposite"]
- 2684["SweepEdge Adjacent"]
+ 2684["SweepEdge Opposite"]
2685["SweepEdge Opposite"]
- 2686["SweepEdge Adjacent"]
+ 2686["SweepEdge Opposite"]
2687["SweepEdge Opposite"]
- 2688["SweepEdge Adjacent"]
+ 2688["SweepEdge Opposite"]
2689["SweepEdge Opposite"]
- 2690["SweepEdge Adjacent"]
+ 2690["SweepEdge Opposite"]
2691["SweepEdge Opposite"]
- 2692["SweepEdge Adjacent"]
+ 2692["SweepEdge Opposite"]
2693["SweepEdge Opposite"]
- 2694["SweepEdge Adjacent"]
+ 2694["SweepEdge Opposite"]
2695["SweepEdge Opposite"]
- 2696["SweepEdge Adjacent"]
+ 2696["SweepEdge Opposite"]
2697["SweepEdge Opposite"]
- 2698["SweepEdge Adjacent"]
+ 2698["SweepEdge Opposite"]
2699["SweepEdge Opposite"]
- 2700["SweepEdge Adjacent"]
+ 2700["SweepEdge Opposite"]
2701["SweepEdge Opposite"]
- 2702["SweepEdge Adjacent"]
+ 2702["SweepEdge Opposite"]
2703["SweepEdge Opposite"]
- 2704["SweepEdge Adjacent"]
+ 2704["SweepEdge Opposite"]
2705["SweepEdge Opposite"]
- 2706["SweepEdge Adjacent"]
+ 2706["SweepEdge Opposite"]
2707["SweepEdge Opposite"]
- 2708["SweepEdge Adjacent"]
+ 2708["SweepEdge Opposite"]
2709["SweepEdge Opposite"]
- 2710["SweepEdge Adjacent"]
+ 2710["SweepEdge Opposite"]
2711["SweepEdge Opposite"]
- 2712["SweepEdge Adjacent"]
+ 2712["SweepEdge Opposite"]
2713["SweepEdge Opposite"]
- 2714["SweepEdge Adjacent"]
+ 2714["SweepEdge Opposite"]
2715["SweepEdge Opposite"]
- 2716["SweepEdge Adjacent"]
+ 2716["SweepEdge Opposite"]
2717["SweepEdge Opposite"]
- 2718["SweepEdge Adjacent"]
+ 2718["SweepEdge Opposite"]
2719["SweepEdge Opposite"]
- 2720["SweepEdge Adjacent"]
+ 2720["SweepEdge Opposite"]
2721["SweepEdge Opposite"]
- 2722["SweepEdge Adjacent"]
+ 2722["SweepEdge Opposite"]
2723["SweepEdge Opposite"]
- 2724["SweepEdge Adjacent"]
+ 2724["SweepEdge Opposite"]
2725["SweepEdge Opposite"]
- 2726["SweepEdge Adjacent"]
+ 2726["SweepEdge Opposite"]
2727["SweepEdge Opposite"]
- 2728["SweepEdge Adjacent"]
+ 2728["SweepEdge Opposite"]
2729["SweepEdge Opposite"]
- 2730["SweepEdge Adjacent"]
+ 2730["SweepEdge Opposite"]
2731["SweepEdge Opposite"]
- 2732["SweepEdge Adjacent"]
+ 2732["SweepEdge Opposite"]
2733["SweepEdge Opposite"]
- 2734["SweepEdge Adjacent"]
+ 2734["SweepEdge Opposite"]
2735["SweepEdge Opposite"]
- 2736["SweepEdge Adjacent"]
+ 2736["SweepEdge Opposite"]
2737["SweepEdge Opposite"]
- 2738["SweepEdge Adjacent"]
+ 2738["SweepEdge Opposite"]
2739["SweepEdge Opposite"]
- 2740["SweepEdge Adjacent"]
+ 2740["SweepEdge Opposite"]
2741["SweepEdge Opposite"]
- 2742["SweepEdge Adjacent"]
+ 2742["SweepEdge Opposite"]
2743["SweepEdge Opposite"]
- 2744["SweepEdge Adjacent"]
+ 2744["SweepEdge Opposite"]
2745["SweepEdge Opposite"]
- 2746["SweepEdge Adjacent"]
+ 2746["SweepEdge Opposite"]
2747["SweepEdge Opposite"]
- 2748["SweepEdge Adjacent"]
+ 2748["SweepEdge Opposite"]
2749["SweepEdge Opposite"]
- 2750["SweepEdge Adjacent"]
+ 2750["SweepEdge Opposite"]
2751["SweepEdge Opposite"]
- 2752["SweepEdge Adjacent"]
+ 2752["SweepEdge Opposite"]
2753["SweepEdge Opposite"]
- 2754["SweepEdge Adjacent"]
+ 2754["SweepEdge Opposite"]
2755["SweepEdge Opposite"]
- 2756["SweepEdge Adjacent"]
+ 2756["SweepEdge Opposite"]
2757["SweepEdge Opposite"]
- 2758["SweepEdge Adjacent"]
+ 2758["SweepEdge Opposite"]
2759["SweepEdge Opposite"]
- 2760["SweepEdge Adjacent"]
+ 2760["SweepEdge Opposite"]
2761["SweepEdge Opposite"]
- 2762["SweepEdge Adjacent"]
+ 2762["SweepEdge Opposite"]
2763["SweepEdge Opposite"]
- 2764["SweepEdge Adjacent"]
+ 2764["SweepEdge Opposite"]
2765["SweepEdge Opposite"]
- 2766["SweepEdge Adjacent"]
+ 2766["SweepEdge Opposite"]
2767["SweepEdge Opposite"]
- 2768["SweepEdge Adjacent"]
+ 2768["SweepEdge Opposite"]
2769["SweepEdge Opposite"]
- 2770["SweepEdge Adjacent"]
+ 2770["SweepEdge Opposite"]
2771["SweepEdge Opposite"]
- 2772["SweepEdge Adjacent"]
+ 2772["SweepEdge Opposite"]
2773["SweepEdge Opposite"]
- 2774["SweepEdge Adjacent"]
+ 2774["SweepEdge Opposite"]
2775["SweepEdge Opposite"]
- 2776["SweepEdge Adjacent"]
+ 2776["SweepEdge Opposite"]
2777["SweepEdge Opposite"]
- 2778["SweepEdge Adjacent"]
+ 2778["SweepEdge Opposite"]
2779["SweepEdge Opposite"]
- 2780["SweepEdge Adjacent"]
+ 2780["SweepEdge Opposite"]
2781["SweepEdge Opposite"]
- 2782["SweepEdge Adjacent"]
+ 2782["SweepEdge Opposite"]
2783["SweepEdge Opposite"]
- 2784["SweepEdge Adjacent"]
+ 2784["SweepEdge Opposite"]
2785["SweepEdge Opposite"]
- 2786["SweepEdge Adjacent"]
+ 2786["SweepEdge Opposite"]
2787["SweepEdge Opposite"]
- 2788["SweepEdge Adjacent"]
+ 2788["SweepEdge Opposite"]
2789["SweepEdge Opposite"]
- 2790["SweepEdge Adjacent"]
+ 2790["SweepEdge Opposite"]
2791["SweepEdge Opposite"]
- 2792["SweepEdge Adjacent"]
+ 2792["SweepEdge Opposite"]
2793["SweepEdge Opposite"]
- 2794["SweepEdge Adjacent"]
+ 2794["SweepEdge Opposite"]
2795["SweepEdge Opposite"]
- 2796["SweepEdge Adjacent"]
+ 2796["SweepEdge Opposite"]
2797["SweepEdge Opposite"]
- 2798["SweepEdge Adjacent"]
+ 2798["SweepEdge Opposite"]
2799["SweepEdge Opposite"]
- 2800["SweepEdge Adjacent"]
+ 2800["SweepEdge Opposite"]
2801["SweepEdge Opposite"]
- 2802["SweepEdge Adjacent"]
+ 2802["SweepEdge Opposite"]
2803["SweepEdge Opposite"]
- 2804["SweepEdge Adjacent"]
+ 2804["SweepEdge Opposite"]
2805["SweepEdge Opposite"]
- 2806["SweepEdge Adjacent"]
+ 2806["SweepEdge Opposite"]
2807["SweepEdge Opposite"]
- 2808["SweepEdge Adjacent"]
+ 2808["SweepEdge Opposite"]
2809["SweepEdge Opposite"]
- 2810["SweepEdge Adjacent"]
+ 2810["SweepEdge Opposite"]
2811["SweepEdge Opposite"]
- 2812["SweepEdge Adjacent"]
+ 2812["SweepEdge Opposite"]
2813["SweepEdge Opposite"]
- 2814["SweepEdge Adjacent"]
+ 2814["SweepEdge Opposite"]
2815["SweepEdge Opposite"]
- 2816["SweepEdge Adjacent"]
+ 2816["SweepEdge Opposite"]
2817["SweepEdge Opposite"]
- 2818["SweepEdge Adjacent"]
+ 2818["SweepEdge Opposite"]
2819["SweepEdge Opposite"]
- 2820["SweepEdge Adjacent"]
+ 2820["SweepEdge Opposite"]
2821["SweepEdge Opposite"]
- 2822["SweepEdge Adjacent"]
+ 2822["SweepEdge Opposite"]
2823["SweepEdge Opposite"]
- 2824["SweepEdge Adjacent"]
+ 2824["SweepEdge Opposite"]
2825["SweepEdge Opposite"]
- 2826["SweepEdge Adjacent"]
+ 2826["SweepEdge Opposite"]
2827["SweepEdge Opposite"]
- 2828["SweepEdge Adjacent"]
+ 2828["SweepEdge Opposite"]
2829["SweepEdge Opposite"]
- 2830["SweepEdge Adjacent"]
+ 2830["SweepEdge Opposite"]
2831["SweepEdge Opposite"]
- 2832["SweepEdge Adjacent"]
+ 2832["SweepEdge Opposite"]
2833["SweepEdge Opposite"]
- 2834["SweepEdge Adjacent"]
+ 2834["SweepEdge Opposite"]
2835["SweepEdge Opposite"]
- 2836["SweepEdge Adjacent"]
+ 2836["SweepEdge Opposite"]
2837["SweepEdge Opposite"]
- 2838["SweepEdge Adjacent"]
+ 2838["SweepEdge Opposite"]
2839["SweepEdge Opposite"]
- 2840["SweepEdge Adjacent"]
+ 2840["SweepEdge Opposite"]
2841["SweepEdge Opposite"]
- 2842["SweepEdge Adjacent"]
+ 2842["SweepEdge Opposite"]
2843["SweepEdge Opposite"]
- 2844["SweepEdge Adjacent"]
+ 2844["SweepEdge Opposite"]
2845["SweepEdge Opposite"]
- 2846["SweepEdge Adjacent"]
+ 2846["SweepEdge Opposite"]
2847["SweepEdge Opposite"]
- 2848["SweepEdge Adjacent"]
+ 2848["SweepEdge Opposite"]
2849["SweepEdge Opposite"]
- 2850["SweepEdge Adjacent"]
+ 2850["SweepEdge Opposite"]
2851["SweepEdge Opposite"]
- 2852["SweepEdge Adjacent"]
+ 2852["SweepEdge Opposite"]
2853["SweepEdge Opposite"]
- 2854["SweepEdge Adjacent"]
+ 2854["SweepEdge Opposite"]
2855["SweepEdge Opposite"]
- 2856["SweepEdge Adjacent"]
+ 2856["SweepEdge Opposite"]
2857["SweepEdge Opposite"]
- 2858["SweepEdge Adjacent"]
+ 2858["SweepEdge Opposite"]
2859["SweepEdge Opposite"]
- 2860["SweepEdge Adjacent"]
+ 2860["SweepEdge Opposite"]
2861["SweepEdge Opposite"]
- 2862["SweepEdge Adjacent"]
+ 2862["SweepEdge Opposite"]
2863["SweepEdge Opposite"]
- 2864["SweepEdge Adjacent"]
+ 2864["SweepEdge Opposite"]
2865["SweepEdge Opposite"]
- 2866["SweepEdge Adjacent"]
+ 2866["SweepEdge Opposite"]
2867["SweepEdge Opposite"]
- 2868["SweepEdge Adjacent"]
+ 2868["SweepEdge Opposite"]
2869["SweepEdge Opposite"]
- 2870["SweepEdge Adjacent"]
+ 2870["SweepEdge Opposite"]
2871["SweepEdge Opposite"]
- 2872["SweepEdge Adjacent"]
+ 2872["SweepEdge Opposite"]
2873["SweepEdge Opposite"]
- 2874["SweepEdge Adjacent"]
+ 2874["SweepEdge Opposite"]
2875["SweepEdge Opposite"]
- 2876["SweepEdge Adjacent"]
+ 2876["SweepEdge Opposite"]
2877["SweepEdge Opposite"]
- 2878["SweepEdge Adjacent"]
+ 2878["SweepEdge Opposite"]
2879["SweepEdge Opposite"]
- 2880["SweepEdge Adjacent"]
+ 2880["SweepEdge Opposite"]
2881["SweepEdge Opposite"]
- 2882["SweepEdge Adjacent"]
+ 2882["SweepEdge Opposite"]
2883["SweepEdge Opposite"]
- 2884["SweepEdge Adjacent"]
+ 2884["SweepEdge Opposite"]
2885["SweepEdge Opposite"]
- 2886["SweepEdge Adjacent"]
+ 2886["SweepEdge Opposite"]
2887["SweepEdge Opposite"]
- 2888["SweepEdge Adjacent"]
+ 2888["SweepEdge Opposite"]
2889["SweepEdge Opposite"]
- 2890["SweepEdge Adjacent"]
+ 2890["SweepEdge Opposite"]
2891["SweepEdge Opposite"]
- 2892["SweepEdge Adjacent"]
+ 2892["SweepEdge Opposite"]
2893["SweepEdge Opposite"]
- 2894["SweepEdge Adjacent"]
+ 2894["SweepEdge Opposite"]
2895["SweepEdge Opposite"]
- 2896["SweepEdge Adjacent"]
+ 2896["SweepEdge Opposite"]
2897["SweepEdge Opposite"]
- 2898["SweepEdge Adjacent"]
+ 2898["SweepEdge Opposite"]
2899["SweepEdge Opposite"]
- 2900["SweepEdge Adjacent"]
+ 2900["SweepEdge Opposite"]
2901["SweepEdge Opposite"]
- 2902["SweepEdge Adjacent"]
+ 2902["SweepEdge Opposite"]
2903["SweepEdge Opposite"]
- 2904["SweepEdge Adjacent"]
+ 2904["SweepEdge Opposite"]
2905["SweepEdge Opposite"]
- 2906["SweepEdge Adjacent"]
+ 2906["SweepEdge Opposite"]
2907["SweepEdge Opposite"]
- 2908["SweepEdge Adjacent"]
+ 2908["SweepEdge Opposite"]
2909["SweepEdge Opposite"]
- 2910["SweepEdge Adjacent"]
+ 2910["SweepEdge Opposite"]
2911["SweepEdge Opposite"]
- 2912["SweepEdge Adjacent"]
+ 2912["SweepEdge Opposite"]
2913["SweepEdge Opposite"]
- 2914["SweepEdge Adjacent"]
+ 2914["SweepEdge Opposite"]
2915["SweepEdge Opposite"]
- 2916["SweepEdge Adjacent"]
+ 2916["SweepEdge Opposite"]
2917["SweepEdge Opposite"]
- 2918["SweepEdge Adjacent"]
+ 2918["SweepEdge Opposite"]
2919["SweepEdge Opposite"]
- 2920["SweepEdge Adjacent"]
+ 2920["SweepEdge Opposite"]
2921["SweepEdge Opposite"]
- 2922["SweepEdge Adjacent"]
+ 2922["SweepEdge Opposite"]
2923["SweepEdge Opposite"]
- 2924["SweepEdge Adjacent"]
+ 2924["SweepEdge Opposite"]
2925["SweepEdge Opposite"]
- 2926["SweepEdge Adjacent"]
+ 2926["SweepEdge Opposite"]
2927["SweepEdge Opposite"]
- 2928["SweepEdge Adjacent"]
+ 2928["SweepEdge Opposite"]
2929["SweepEdge Opposite"]
- 2930["SweepEdge Adjacent"]
+ 2930["SweepEdge Opposite"]
2931["SweepEdge Opposite"]
- 2932["SweepEdge Adjacent"]
+ 2932["SweepEdge Opposite"]
2933["SweepEdge Opposite"]
- 2934["SweepEdge Adjacent"]
+ 2934["SweepEdge Opposite"]
2935["SweepEdge Opposite"]
- 2936["SweepEdge Adjacent"]
+ 2936["SweepEdge Opposite"]
2937["SweepEdge Opposite"]
- 2938["SweepEdge Adjacent"]
+ 2938["SweepEdge Opposite"]
2939["SweepEdge Opposite"]
- 2940["SweepEdge Adjacent"]
+ 2940["SweepEdge Opposite"]
2941["SweepEdge Opposite"]
- 2942["SweepEdge Adjacent"]
+ 2942["SweepEdge Opposite"]
2943["SweepEdge Opposite"]
- 2944["SweepEdge Adjacent"]
+ 2944["SweepEdge Opposite"]
2945["SweepEdge Opposite"]
- 2946["SweepEdge Adjacent"]
+ 2946["SweepEdge Opposite"]
2947["SweepEdge Opposite"]
- 2948["SweepEdge Adjacent"]
+ 2948["SweepEdge Opposite"]
2949["SweepEdge Opposite"]
- 2950["SweepEdge Adjacent"]
+ 2950["SweepEdge Opposite"]
2951["SweepEdge Opposite"]
- 2952["SweepEdge Adjacent"]
+ 2952["SweepEdge Opposite"]
2953["SweepEdge Opposite"]
- 2954["SweepEdge Adjacent"]
+ 2954["SweepEdge Opposite"]
2955["SweepEdge Opposite"]
- 2956["SweepEdge Adjacent"]
+ 2956["SweepEdge Opposite"]
2957["SweepEdge Opposite"]
- 2958["SweepEdge Adjacent"]
+ 2958["SweepEdge Opposite"]
2959["SweepEdge Opposite"]
- 2960["SweepEdge Adjacent"]
+ 2960["SweepEdge Opposite"]
2961["SweepEdge Opposite"]
- 2962["SweepEdge Adjacent"]
+ 2962["SweepEdge Opposite"]
2963["SweepEdge Opposite"]
- 2964["SweepEdge Adjacent"]
+ 2964["SweepEdge Opposite"]
2965["SweepEdge Opposite"]
- 2966["SweepEdge Adjacent"]
+ 2966["SweepEdge Opposite"]
2967["SweepEdge Opposite"]
- 2968["SweepEdge Adjacent"]
+ 2968["SweepEdge Opposite"]
2969["SweepEdge Opposite"]
- 2970["SweepEdge Adjacent"]
+ 2970["SweepEdge Opposite"]
2971["SweepEdge Opposite"]
- 2972["SweepEdge Adjacent"]
+ 2972["SweepEdge Opposite"]
2973["SweepEdge Opposite"]
- 2974["SweepEdge Adjacent"]
+ 2974["SweepEdge Opposite"]
2975["SweepEdge Opposite"]
- 2976["SweepEdge Adjacent"]
+ 2976["SweepEdge Opposite"]
2977["SweepEdge Opposite"]
- 2978["SweepEdge Adjacent"]
+ 2978["SweepEdge Opposite"]
2979["SweepEdge Opposite"]
- 2980["SweepEdge Adjacent"]
+ 2980["SweepEdge Opposite"]
2981["SweepEdge Opposite"]
- 2982["SweepEdge Adjacent"]
+ 2982["SweepEdge Opposite"]
2983["SweepEdge Opposite"]
- 2984["SweepEdge Adjacent"]
+ 2984["SweepEdge Opposite"]
2985["SweepEdge Opposite"]
- 2986["SweepEdge Adjacent"]
+ 2986["SweepEdge Opposite"]
2987["SweepEdge Opposite"]
- 2988["SweepEdge Adjacent"]
+ 2988["SweepEdge Opposite"]
2989["SweepEdge Opposite"]
- 2990["SweepEdge Adjacent"]
+ 2990["SweepEdge Opposite"]
2991["SweepEdge Opposite"]
- 2992["SweepEdge Adjacent"]
+ 2992["SweepEdge Opposite"]
2993["SweepEdge Opposite"]
- 2994["SweepEdge Adjacent"]
+ 2994["SweepEdge Opposite"]
2995["SweepEdge Opposite"]
- 2996["SweepEdge Adjacent"]
+ 2996["SweepEdge Opposite"]
2997["SweepEdge Opposite"]
- 2998["SweepEdge Adjacent"]
+ 2998["SweepEdge Opposite"]
2999["SweepEdge Opposite"]
- 3000["SweepEdge Adjacent"]
+ 3000["SweepEdge Opposite"]
3001["SweepEdge Opposite"]
- 3002["SweepEdge Adjacent"]
+ 3002["SweepEdge Opposite"]
3003["SweepEdge Opposite"]
- 3004["SweepEdge Adjacent"]
+ 3004["SweepEdge Opposite"]
3005["SweepEdge Opposite"]
- 3006["SweepEdge Adjacent"]
+ 3006["SweepEdge Opposite"]
3007["SweepEdge Opposite"]
- 3008["SweepEdge Adjacent"]
- 3009["SweepEdge Opposite"]
- 3010["SweepEdge Adjacent"]
- 3011["SweepEdge Opposite"]
- 3012["SweepEdge Adjacent"]
- 3013["SweepEdge Opposite"]
- 3014["SweepEdge Adjacent"]
- 3015["SweepEdge Opposite"]
- 3016["SweepEdge Adjacent"]
- 3017["SweepEdge Opposite"]
- 3018["SweepEdge Adjacent"]
- 3019["SweepEdge Opposite"]
- 3020["SweepEdge Adjacent"]
- 3021["SweepEdge Opposite"]
- 3022["SweepEdge Adjacent"]
- 3023["SweepEdge Opposite"]
- 3024["SweepEdge Adjacent"]
- 3025["SweepEdge Opposite"]
- 3026["SweepEdge Adjacent"]
- 3027["SweepEdge Opposite"]
- 3028["SweepEdge Adjacent"]
- 3029["SweepEdge Opposite"]
- 3030["SweepEdge Adjacent"]
- 3031["SweepEdge Opposite"]
- 3032["SweepEdge Adjacent"]
- 3033["SweepEdge Opposite"]
- 3034["SweepEdge Adjacent"]
- 3035["SweepEdge Opposite"]
- 3036["SweepEdge Adjacent"]
- 3037["SweepEdge Opposite"]
- 3038["SweepEdge Adjacent"]
- 3039["SweepEdge Opposite"]
- 3040["SweepEdge Adjacent"]
- 3041["SweepEdge Opposite"]
- 3042["SweepEdge Adjacent"]
- 3043["SweepEdge Opposite"]
- 3044["SweepEdge Adjacent"]
- 3045["SweepEdge Opposite"]
- 3046["SweepEdge Adjacent"]
- 3047["SweepEdge Opposite"]
- 3048["SweepEdge Adjacent"]
- 3049["SweepEdge Opposite"]
- 3050["SweepEdge Adjacent"]
- 3051["SweepEdge Opposite"]
- 3052["SweepEdge Adjacent"]
- 3053["SweepEdge Opposite"]
- 3054["SweepEdge Adjacent"]
- 3055["SweepEdge Opposite"]
- 3056["SweepEdge Adjacent"]
- 3057["SweepEdge Opposite"]
- 3058["SweepEdge Adjacent"]
- 3059["SweepEdge Opposite"]
- 3060["SweepEdge Adjacent"]
- 3061["SweepEdge Opposite"]
- 3062["SweepEdge Adjacent"]
- 3063["SweepEdge Opposite"]
- 3064["SweepEdge Adjacent"]
- 3065["SweepEdge Opposite"]
- 3066["SweepEdge Adjacent"]
- 3067["SweepEdge Opposite"]
- 3068["SweepEdge Adjacent"]
- 3069["SweepEdge Opposite"]
- 3070["SweepEdge Adjacent"]
- 3071["SweepEdge Opposite"]
- 3072["SweepEdge Adjacent"]
- 3073["SweepEdge Opposite"]
- 3074["SweepEdge Adjacent"]
- 3075["SweepEdge Opposite"]
- 3076["SweepEdge Adjacent"]
- 3077["SweepEdge Opposite"]
- 3078["SweepEdge Adjacent"]
- 3079["SweepEdge Opposite"]
- 3080["SweepEdge Adjacent"]
- 3081["SweepEdge Opposite"]
- 3082["SweepEdge Adjacent"]
- 3083["SweepEdge Opposite"]
- 3084["SweepEdge Adjacent"]
- 3085["SweepEdge Opposite"]
- 3086["SweepEdge Adjacent"]
- 3087["SweepEdge Opposite"]
- 3088["SweepEdge Adjacent"]
- 3089["SweepEdge Opposite"]
- 3090["SweepEdge Adjacent"]
- 3091["SweepEdge Opposite"]
- 3092["SweepEdge Adjacent"]
- 3093["SweepEdge Opposite"]
- 3094["SweepEdge Adjacent"]
- 3095["SweepEdge Opposite"]
- 3096["SweepEdge Adjacent"]
- 3097["SweepEdge Opposite"]
- 3098["SweepEdge Adjacent"]
- 3099["SweepEdge Opposite"]
- 3100["SweepEdge Adjacent"]
- 3101["SweepEdge Opposite"]
- 3102["SweepEdge Adjacent"]
- 3103["SweepEdge Opposite"]
- 3104["SweepEdge Adjacent"]
- 3105["SweepEdge Opposite"]
- 3106["SweepEdge Adjacent"]
- 3107["SweepEdge Opposite"]
- 3108["SweepEdge Adjacent"]
- 3109["SweepEdge Opposite"]
- 3110["SweepEdge Adjacent"]
- 3111["SweepEdge Opposite"]
- 3112["SweepEdge Adjacent"]
- 3113["SweepEdge Opposite"]
- 3114["SweepEdge Adjacent"]
- 3115["SweepEdge Opposite"]
- 3116["SweepEdge Adjacent"]
- 3117["SweepEdge Opposite"]
- 3118["SweepEdge Adjacent"]
- 3119["SweepEdge Opposite"]
- 3120["SweepEdge Adjacent"]
- 3121["SweepEdge Opposite"]
- 3122["SweepEdge Adjacent"]
- 3123["SweepEdge Opposite"]
- 3124["SweepEdge Adjacent"]
- 3125["SweepEdge Opposite"]
- 3126["SweepEdge Adjacent"]
- 3127["SweepEdge Opposite"]
- 3128["SweepEdge Adjacent"]
- 3129["SweepEdge Opposite"]
- 3130["SweepEdge Adjacent"]
- 3131["SweepEdge Opposite"]
- 3132["SweepEdge Adjacent"]
- 3133["SweepEdge Opposite"]
- 3134["SweepEdge Adjacent"]
- 3135["SweepEdge Opposite"]
- 3136["SweepEdge Adjacent"]
- 3137["SweepEdge Opposite"]
- 3138["SweepEdge Adjacent"]
- 3139["SweepEdge Opposite"]
- 3140["SweepEdge Adjacent"]
- 3141["SweepEdge Opposite"]
- 3142["SweepEdge Adjacent"]
- 3143["SweepEdge Opposite"]
- 3144["SweepEdge Adjacent"]
- 3145["SweepEdge Opposite"]
- 3146["SweepEdge Adjacent"]
- 3147["SweepEdge Opposite"]
- 3148["SweepEdge Adjacent"]
- 3149["SweepEdge Opposite"]
- 3150["SweepEdge Adjacent"]
- 3151["SweepEdge Opposite"]
- 3152["SweepEdge Adjacent"]
- 3153["SweepEdge Opposite"]
- 3154["SweepEdge Adjacent"]
- 3155["SweepEdge Opposite"]
- 3156["SweepEdge Adjacent"]
- 3157["SweepEdge Opposite"]
- 3158["SweepEdge Adjacent"]
- 3159["SweepEdge Opposite"]
- 3160["SweepEdge Adjacent"]
- 3161["SweepEdge Opposite"]
- 3162["SweepEdge Adjacent"]
- 3163["SweepEdge Opposite"]
- 3164["SweepEdge Adjacent"]
- 3165["SweepEdge Opposite"]
- 3166["SweepEdge Adjacent"]
- 3167["SweepEdge Opposite"]
- 3168["SweepEdge Adjacent"]
- 3169["SweepEdge Opposite"]
- 3170["SweepEdge Adjacent"]
- 3171["SweepEdge Opposite"]
- 3172["SweepEdge Adjacent"]
- 3173["SweepEdge Opposite"]
- 3174["SweepEdge Adjacent"]
- 3175["SweepEdge Opposite"]
- 3176["SweepEdge Adjacent"]
- 3177["SweepEdge Opposite"]
- 3178["SweepEdge Adjacent"]
- 3179["SweepEdge Opposite"]
- 3180["SweepEdge Adjacent"]
- 3181["SweepEdge Opposite"]
- 3182["SweepEdge Adjacent"]
- 3183["SweepEdge Opposite"]
- 3184["SweepEdge Adjacent"]
- 3185["SweepEdge Opposite"]
- 3186["SweepEdge Adjacent"]
- 3187["SweepEdge Opposite"]
- 3188["SweepEdge Adjacent"]
- 3189["SweepEdge Opposite"]
- 3190["SweepEdge Adjacent"]
- 3191["SweepEdge Opposite"]
- 3192["SweepEdge Adjacent"]
- 3193["SweepEdge Opposite"]
- 3194["SweepEdge Adjacent"]
- 3195["SweepEdge Opposite"]
- 3196["SweepEdge Adjacent"]
- 3197["SweepEdge Opposite"]
- 3198["SweepEdge Adjacent"]
- 3199["SweepEdge Opposite"]
- 3200["SweepEdge Adjacent"]
- 3201["SweepEdge Opposite"]
- 3202["SweepEdge Adjacent"]
- 3203["SweepEdge Opposite"]
- 3204["SweepEdge Adjacent"]
- 3205["SweepEdge Opposite"]
- 3206["SweepEdge Adjacent"]
- 3207["SweepEdge Opposite"]
- 3208["SweepEdge Adjacent"]
- 3209["SweepEdge Opposite"]
- 3210["SweepEdge Adjacent"]
- 3211["SweepEdge Opposite"]
- 3212["SweepEdge Adjacent"]
- 3213["SweepEdge Opposite"]
- 3214["SweepEdge Adjacent"]
- 3215["SweepEdge Opposite"]
- 3216["SweepEdge Adjacent"]
- 3217["SweepEdge Opposite"]
- 3218["SweepEdge Adjacent"]
- 3219["SweepEdge Opposite"]
- 3220["SweepEdge Adjacent"]
- 3221["SweepEdge Opposite"]
- 3222["SweepEdge Adjacent"]
- 3223["SweepEdge Opposite"]
- 3224["SweepEdge Adjacent"]
- 3225["SweepEdge Opposite"]
- 3226["SweepEdge Adjacent"]
- 3227["SweepEdge Opposite"]
- 3228["SweepEdge Adjacent"]
- 3229["SweepEdge Opposite"]
- 3230["SweepEdge Adjacent"]
- 3231["SweepEdge Opposite"]
- 3232["SweepEdge Adjacent"]
- 3233["SweepEdge Opposite"]
- 3234["SweepEdge Adjacent"]
- 3235["SweepEdge Opposite"]
- 3236["SweepEdge Adjacent"]
- 3237["SweepEdge Opposite"]
- 3238["SweepEdge Adjacent"]
- 3239["SweepEdge Opposite"]
- 3240["SweepEdge Adjacent"]
- 3241["SweepEdge Opposite"]
- 3242["SweepEdge Adjacent"]
- 3243["SweepEdge Opposite"]
- 3244["SweepEdge Adjacent"]
- 3245["SweepEdge Opposite"]
- 3246["SweepEdge Adjacent"]
- 3247["SweepEdge Opposite"]
- 3248["SweepEdge Adjacent"]
- 3249["SweepEdge Opposite"]
- 3250["SweepEdge Adjacent"]
- 3251["SweepEdge Opposite"]
- 3252["SweepEdge Adjacent"]
- 3253["SweepEdge Opposite"]
- 3254["SweepEdge Adjacent"]
- 3255["SweepEdge Opposite"]
- 3256["SweepEdge Adjacent"]
- 3257["SweepEdge Opposite"]
- 3258["SweepEdge Adjacent"]
- 3259["SweepEdge Opposite"]
- 3260["SweepEdge Adjacent"]
- 3261["SweepEdge Opposite"]
- 3262["SweepEdge Adjacent"]
- 3263["SweepEdge Opposite"]
- 3264["SweepEdge Adjacent"]
- 3265["SweepEdge Opposite"]
- 3266["SweepEdge Adjacent"]
- 3267["SweepEdge Opposite"]
- 3268["SweepEdge Adjacent"]
- 3269["SweepEdge Opposite"]
- 3270["SweepEdge Adjacent"]
- 3271["SweepEdge Opposite"]
- 3272["SweepEdge Adjacent"]
- 3273["SweepEdge Opposite"]
- 3274["SweepEdge Adjacent"]
- 3275["SweepEdge Opposite"]
- 3276["SweepEdge Adjacent"]
- 3277["SweepEdge Opposite"]
- 3278["SweepEdge Adjacent"]
- 3279["SweepEdge Opposite"]
- 3280["SweepEdge Adjacent"]
- 3281["SweepEdge Opposite"]
- 3282["SweepEdge Adjacent"]
- 3283["SweepEdge Opposite"]
- 3284["SweepEdge Adjacent"]
- 3285["SweepEdge Opposite"]
- 3286["SweepEdge Adjacent"]
- 3287["SweepEdge Opposite"]
- 3288["SweepEdge Adjacent"]
- 3289["SweepEdge Opposite"]
- 3290["SweepEdge Adjacent"]
- 3291["SweepEdge Opposite"]
- 3292["SweepEdge Adjacent"]
- 3293["SweepEdge Opposite"]
- 3294["SweepEdge Adjacent"]
- 3295["SweepEdge Opposite"]
- 3296["SweepEdge Adjacent"]
- 3297["SweepEdge Opposite"]
- 3298["SweepEdge Adjacent"]
- 3299["SweepEdge Opposite"]
- 3300["SweepEdge Adjacent"]
- 3301["SweepEdge Opposite"]
- 3302["SweepEdge Adjacent"]
- 3303["SweepEdge Opposite"]
- 3304["SweepEdge Adjacent"]
- 3305["SweepEdge Opposite"]
- 3306["SweepEdge Adjacent"]
- 3307["SweepEdge Opposite"]
- 3308["SweepEdge Adjacent"]
- 3309["SweepEdge Opposite"]
- 3310["SweepEdge Adjacent"]
- 3311["SweepEdge Opposite"]
- 3312["SweepEdge Adjacent"]
- 3313["SweepEdge Opposite"]
- 3314["SweepEdge Adjacent"]
- 3315["SweepEdge Opposite"]
- 3316["SweepEdge Adjacent"]
- 3317["SweepEdge Opposite"]
- 3318["SweepEdge Adjacent"]
- 3319["SweepEdge Opposite"]
- 3320["SweepEdge Adjacent"]
- 3321["SweepEdge Opposite"]
- 3322["SweepEdge Adjacent"]
- 3323["SweepEdge Opposite"]
- 3324["SweepEdge Adjacent"]
- 3325["SweepEdge Opposite"]
- 3326["SweepEdge Adjacent"]
- 3327["SweepEdge Opposite"]
- 3328["SweepEdge Adjacent"]
- 3329["SweepEdge Opposite"]
- 3330["SweepEdge Adjacent"]
- 3331["SweepEdge Opposite"]
- 3332["SweepEdge Adjacent"]
- 3333["SweepEdge Opposite"]
- 3334["SweepEdge Adjacent"]
- 3335["SweepEdge Opposite"]
- 3336["SweepEdge Adjacent"]
- 3337["SweepEdge Opposite"]
- 3338["SweepEdge Adjacent"]
- 3339["SweepEdge Opposite"]
- 3340["SweepEdge Adjacent"]
- 3341["SweepEdge Opposite"]
- 3342["SweepEdge Adjacent"]
- 3343["SweepEdge Opposite"]
- 3344["SweepEdge Adjacent"]
- 3345["SweepEdge Opposite"]
- 3346["SweepEdge Adjacent"]
- 3347["SweepEdge Opposite"]
- 3348["SweepEdge Adjacent"]
- 3349["SweepEdge Opposite"]
- 3350["SweepEdge Adjacent"]
- 3351["SweepEdge Opposite"]
- 3352["SweepEdge Adjacent"]
- 3353["SweepEdge Opposite"]
- 3354["SweepEdge Adjacent"]
- 3355["SweepEdge Opposite"]
- 3356["SweepEdge Adjacent"]
- 3357["SweepEdge Opposite"]
- 3358["SweepEdge Adjacent"]
- 3359["SweepEdge Opposite"]
- 3360["SweepEdge Adjacent"]
- 3361["SweepEdge Opposite"]
- 3362["SweepEdge Adjacent"]
- 3363["SweepEdge Opposite"]
- 3364["SweepEdge Adjacent"]
- 3365["SweepEdge Opposite"]
- 3366["SweepEdge Adjacent"]
- 3367["SweepEdge Opposite"]
- 3368["SweepEdge Adjacent"]
- 3369["SweepEdge Opposite"]
- 3370["SweepEdge Adjacent"]
- 3371["SweepEdge Opposite"]
- 3372["SweepEdge Adjacent"]
- 3373["SweepEdge Opposite"]
- 3374["SweepEdge Adjacent"]
- 3375["SweepEdge Opposite"]
- 3376["SweepEdge Adjacent"]
- 3377["SweepEdge Opposite"]
- 3378["SweepEdge Adjacent"]
- 3379["SweepEdge Opposite"]
- 3380["SweepEdge Adjacent"]
- 3381["SweepEdge Opposite"]
- 3382["SweepEdge Adjacent"]
- 3383["SweepEdge Opposite"]
- 3384["SweepEdge Adjacent"]
- 3385["SweepEdge Opposite"]
- 3386["SweepEdge Adjacent"]
- 3387["SweepEdge Opposite"]
- 3388["SweepEdge Adjacent"]
- 3389["SweepEdge Opposite"]
- 3390["SweepEdge Adjacent"]
- 3391["SweepEdge Opposite"]
- 3392["SweepEdge Adjacent"]
- 3393["SweepEdge Opposite"]
- 3394["SweepEdge Adjacent"]
- 3395["SweepEdge Opposite"]
- 3396["SweepEdge Adjacent"]
- 3397["SweepEdge Opposite"]
- 3398["SweepEdge Adjacent"]
- 3399["SweepEdge Opposite"]
- 3400["SweepEdge Adjacent"]
- 3401["SweepEdge Opposite"]
- 3402["SweepEdge Adjacent"]
- 3403["SweepEdge Opposite"]
- 3404["SweepEdge Adjacent"]
- 3405["SweepEdge Opposite"]
- 3406["SweepEdge Adjacent"]
- 3407["SweepEdge Opposite"]
- 3408["SweepEdge Adjacent"]
- 3409["SweepEdge Opposite"]
- 3410["SweepEdge Adjacent"]
- 3411["SweepEdge Opposite"]
- 3412["SweepEdge Adjacent"]
- 3413["SweepEdge Opposite"]
- 3414["SweepEdge Adjacent"]
- 3415["SweepEdge Opposite"]
- 3416["SweepEdge Adjacent"]
- 3417["SweepEdge Opposite"]
- 3418["SweepEdge Adjacent"]
- 3419["SweepEdge Opposite"]
- 3420["SweepEdge Adjacent"]
- 3421["SweepEdge Opposite"]
- 3422["SweepEdge Adjacent"]
- 3423["SweepEdge Opposite"]
- 3424["SweepEdge Adjacent"]
- 3425["SweepEdge Opposite"]
- 3426["SweepEdge Adjacent"]
- 3427["SweepEdge Opposite"]
- 3428["SweepEdge Adjacent"]
- 3429["SweepEdge Opposite"]
- 3430["SweepEdge Adjacent"]
- 3431["SweepEdge Opposite"]
- 3432["SweepEdge Adjacent"]
- 3433["SweepEdge Opposite"]
- 3434["SweepEdge Adjacent"]
- 3435["SweepEdge Opposite"]
- 3436["SweepEdge Adjacent"]
- 3437["SweepEdge Opposite"]
- 3438["SweepEdge Adjacent"]
- 3439["SweepEdge Opposite"]
- 3440["SweepEdge Adjacent"]
- 3441["SweepEdge Opposite"]
- 3442["SweepEdge Adjacent"]
- 3443["SweepEdge Opposite"]
- 3444["SweepEdge Adjacent"]
- 3445["SweepEdge Opposite"]
- 3446["SweepEdge Adjacent"]
- 3447["SweepEdge Opposite"]
- 3448["SweepEdge Adjacent"]
- 3449["SweepEdge Opposite"]
- 3450["SweepEdge Adjacent"]
- 3451["SweepEdge Opposite"]
- 3452["SweepEdge Adjacent"]
- 3453["SweepEdge Opposite"]
- 3454["SweepEdge Adjacent"]
- 3455["SweepEdge Opposite"]
- 3456["SweepEdge Adjacent"]
- 3457["SweepEdge Opposite"]
- 3458["SweepEdge Adjacent"]
- 3459["SweepEdge Opposite"]
- 3460["SweepEdge Adjacent"]
- 3461["SweepEdge Opposite"]
- 3462["SweepEdge Adjacent"]
- 3463["SweepEdge Opposite"]
- 3464["SweepEdge Adjacent"]
- 3465["SweepEdge Opposite"]
- 3466["SweepEdge Adjacent"]
- 3467["SweepEdge Opposite"]
- 3468["SweepEdge Adjacent"]
- 3469["SweepEdge Opposite"]
- 3470["SweepEdge Adjacent"]
- 3471["SweepEdge Opposite"]
- 3472["SweepEdge Adjacent"]
- 3473["SweepEdge Opposite"]
- 3474["SweepEdge Adjacent"]
- 3475["SweepEdge Opposite"]
- 3476["SweepEdge Adjacent"]
- 3477["SweepEdge Opposite"]
- 3478["SweepEdge Adjacent"]
- 3479["SweepEdge Opposite"]
- 3480["SweepEdge Adjacent"]
- 3481["SweepEdge Opposite"]
- 3482["SweepEdge Adjacent"]
- 3483["SweepEdge Opposite"]
- 3484["SweepEdge Adjacent"]
- 3485["SweepEdge Opposite"]
- 3486["SweepEdge Adjacent"]
- 3487["SweepEdge Opposite"]
- 3488["SweepEdge Adjacent"]
- 3489["SweepEdge Opposite"]
- 3490["SweepEdge Adjacent"]
- 3491["SweepEdge Opposite"]
- 3492["SweepEdge Adjacent"]
- 3493["SweepEdge Opposite"]
- 3494["SweepEdge Adjacent"]
- 3495["SweepEdge Opposite"]
- 3496["SweepEdge Adjacent"]
- 3497["SweepEdge Opposite"]
- 3498["SweepEdge Adjacent"]
- 3499["SweepEdge Opposite"]
- 3500["SweepEdge Adjacent"]
- 3501["SweepEdge Opposite"]
- 3502["SweepEdge Adjacent"]
- 3503["SweepEdge Opposite"]
- 3504["SweepEdge Adjacent"]
- 3505["SweepEdge Opposite"]
- 3506["SweepEdge Adjacent"]
- 3507["SweepEdge Opposite"]
- 3508["SweepEdge Adjacent"]
- 3509["SweepEdge Opposite"]
- 3510["SweepEdge Adjacent"]
- 3511["SweepEdge Opposite"]
- 3512["SweepEdge Adjacent"]
- 3513["SweepEdge Opposite"]
- 3514["SweepEdge Adjacent"]
- 3515["SweepEdge Opposite"]
- 3516["SweepEdge Adjacent"]
- 3517["SweepEdge Opposite"]
- 3518["SweepEdge Adjacent"]
- 3519["SweepEdge Opposite"]
- 3520["SweepEdge Adjacent"]
- 3521["SweepEdge Opposite"]
- 3522["SweepEdge Adjacent"]
- 3523["SweepEdge Opposite"]
- 3524["SweepEdge Adjacent"]
- 3525["SweepEdge Opposite"]
- 3526["SweepEdge Adjacent"]
- 3527["SweepEdge Opposite"]
- 3528["SweepEdge Adjacent"]
- 3529["SweepEdge Opposite"]
- 3530["SweepEdge Adjacent"]
- 3531["SweepEdge Opposite"]
- 3532["SweepEdge Adjacent"]
- 3533["SweepEdge Opposite"]
- 3534["SweepEdge Adjacent"]
- 3535["SweepEdge Opposite"]
- 3536["SweepEdge Adjacent"]
- 3537["SweepEdge Opposite"]
- 3538["SweepEdge Adjacent"]
- 3539["SweepEdge Opposite"]
- 3540["SweepEdge Adjacent"]
- 3541["SweepEdge Opposite"]
- 3542["SweepEdge Adjacent"]
- 3543["SweepEdge Opposite"]
- 3544["SweepEdge Adjacent"]
- 3545["SweepEdge Opposite"]
- 3546["SweepEdge Adjacent"]
- 3547["SweepEdge Opposite"]
- 3548["SweepEdge Adjacent"]
- 3549["SweepEdge Opposite"]
- 3550["SweepEdge Adjacent"]
- 3551["SweepEdge Opposite"]
- 3552["SweepEdge Adjacent"]
- 3553["SweepEdge Opposite"]
- 3554["SweepEdge Adjacent"]
- 3555["SweepEdge Opposite"]
- 3556["SweepEdge Adjacent"]
- 3557["SweepEdge Opposite"]
- 3558["SweepEdge Adjacent"]
- 3559["SweepEdge Opposite"]
- 3560["SweepEdge Adjacent"]
- 3561["SweepEdge Opposite"]
- 3562["SweepEdge Adjacent"]
- 3563["SweepEdge Opposite"]
- 3564["SweepEdge Adjacent"]
- 3565["SweepEdge Opposite"]
- 3566["SweepEdge Adjacent"]
- 3567["SweepEdge Opposite"]
- 3568["SweepEdge Adjacent"]
- 3569["SweepEdge Opposite"]
- 3570["SweepEdge Adjacent"]
- 3571["SweepEdge Opposite"]
- 3572["SweepEdge Adjacent"]
- 3573["SweepEdge Opposite"]
- 3574["SweepEdge Adjacent"]
- 3575["SweepEdge Opposite"]
- 3576["SweepEdge Adjacent"]
- 3577["SweepEdge Opposite"]
- 3578["SweepEdge Adjacent"]
- 3579["SweepEdge Opposite"]
- 3580["SweepEdge Adjacent"]
- 3581["SweepEdge Opposite"]
- 3582["SweepEdge Adjacent"]
- 3583["SweepEdge Opposite"]
- 3584["SweepEdge Adjacent"]
- 3585["SweepEdge Opposite"]
- 3586["SweepEdge Adjacent"]
- 3587["SweepEdge Opposite"]
- 3588["SweepEdge Adjacent"]
- 3589["SweepEdge Opposite"]
- 3590["SweepEdge Adjacent"]
- 3591["SweepEdge Opposite"]
- 3592["SweepEdge Adjacent"]
- 3593["SweepEdge Opposite"]
- 3594["SweepEdge Adjacent"]
- 3595["SweepEdge Opposite"]
- 3596["SweepEdge Adjacent"]
- 3597["SweepEdge Opposite"]
- 3598["SweepEdge Adjacent"]
- 3599["SweepEdge Opposite"]
- 3600["SweepEdge Adjacent"]
- 3601["SweepEdge Opposite"]
- 3602["SweepEdge Adjacent"]
- 3603["SweepEdge Opposite"]
- 3604["SweepEdge Adjacent"]
- 3605["SweepEdge Opposite"]
- 3606["SweepEdge Adjacent"]
- 3607["SweepEdge Opposite"]
- 3608["SweepEdge Adjacent"]
- 3609["SweepEdge Opposite"]
- 3610["SweepEdge Adjacent"]
- 3611["SweepEdge Opposite"]
- 3612["SweepEdge Adjacent"]
- 3613["SweepEdge Opposite"]
- 3614["SweepEdge Adjacent"]
- 3615["SweepEdge Opposite"]
- 3616["SweepEdge Adjacent"]
- 3617["SweepEdge Opposite"]
- 3618["SweepEdge Adjacent"]
- 3619["SweepEdge Opposite"]
- 3620["SweepEdge Adjacent"]
- 3621["SweepEdge Opposite"]
- 3622["SweepEdge Adjacent"]
- 3623["SweepEdge Opposite"]
- 3624["SweepEdge Adjacent"]
- 3625["SweepEdge Opposite"]
- 3626["SweepEdge Adjacent"]
- 3627["SweepEdge Opposite"]
- 3628["SweepEdge Adjacent"]
- 3629["SweepEdge Opposite"]
- 3630["SweepEdge Adjacent"]
- 3631["SweepEdge Opposite"]
- 3632["SweepEdge Adjacent"]
- 3633["SweepEdge Opposite"]
- 3634["SweepEdge Adjacent"]
- 3635["SweepEdge Opposite"]
- 3636["SweepEdge Adjacent"]
- 3637["SweepEdge Opposite"]
- 3638["SweepEdge Adjacent"]
- 3639["SweepEdge Opposite"]
- 3640["SweepEdge Adjacent"]
- 3641["SweepEdge Opposite"]
- 3642["SweepEdge Adjacent"]
- 3643["SweepEdge Opposite"]
- 3644["SweepEdge Adjacent"]
- 3645["SweepEdge Opposite"]
- 3646["SweepEdge Adjacent"]
- 3647["SweepEdge Opposite"]
- 3648["SweepEdge Adjacent"]
- 3649["SweepEdge Opposite"]
- 3650["SweepEdge Adjacent"]
- 3651["SweepEdge Opposite"]
- 3652["SweepEdge Adjacent"]
- 3653["SweepEdge Opposite"]
- 3654["SweepEdge Adjacent"]
- 3655["SweepEdge Opposite"]
- 3656["SweepEdge Adjacent"]
- 3657["SweepEdge Opposite"]
- 3658["SweepEdge Adjacent"]
- 3659["SweepEdge Opposite"]
- 3660["SweepEdge Adjacent"]
- 3661["SweepEdge Opposite"]
- 3662["SweepEdge Adjacent"]
- 3663["SweepEdge Opposite"]
- 3664["SweepEdge Adjacent"]
- 3665["SweepEdge Opposite"]
- 3666["SweepEdge Adjacent"]
- 3667["SweepEdge Opposite"]
- 3668["SweepEdge Adjacent"]
- 3669["SweepEdge Opposite"]
- 3670["SweepEdge Adjacent"]
- 3671["SweepEdge Opposite"]
- 3672["SweepEdge Adjacent"]
- 3673["SweepEdge Opposite"]
- 3674["SweepEdge Adjacent"]
- 3675["SweepEdge Opposite"]
- 3676["SweepEdge Adjacent"]
- 3677["SweepEdge Opposite"]
- 3678["SweepEdge Adjacent"]
- 3679["SweepEdge Opposite"]
- 3680["SweepEdge Adjacent"]
- 3681["SweepEdge Opposite"]
- 3682["SweepEdge Adjacent"]
- 3683["SweepEdge Opposite"]
- 3684["SweepEdge Adjacent"]
- 3685["SweepEdge Opposite"]
- 3686["SweepEdge Adjacent"]
- 3687["SweepEdge Opposite"]
- 3688["SweepEdge Adjacent"]
- 3689["SweepEdge Opposite"]
- 3690["SweepEdge Adjacent"]
- 3691["SweepEdge Opposite"]
- 3692["SweepEdge Adjacent"]
- 3693["SweepEdge Opposite"]
- 3694["SweepEdge Adjacent"]
- 3695["SweepEdge Opposite"]
- 3696["SweepEdge Adjacent"]
- 3697["SweepEdge Opposite"]
- 3698["SweepEdge Adjacent"]
- 3699["SweepEdge Opposite"]
- 3700["SweepEdge Adjacent"]
- 3701["SweepEdge Opposite"]
- 3702["SweepEdge Adjacent"]
- 3703["SweepEdge Opposite"]
- 3704["SweepEdge Adjacent"]
- 3705["SweepEdge Opposite"]
- 3706["SweepEdge Adjacent"]
- 3707["SweepEdge Opposite"]
- 3708["SweepEdge Adjacent"]
- 3709["SweepEdge Opposite"]
- 3710["SweepEdge Adjacent"]
- 3711["SweepEdge Opposite"]
- 3712["SweepEdge Adjacent"]
- 3713["SweepEdge Opposite"]
- 3714["SweepEdge Adjacent"]
- 3715["SweepEdge Opposite"]
- 3716["SweepEdge Adjacent"]
- 3717["SweepEdge Opposite"]
- 3718["SweepEdge Adjacent"]
- 3719["SweepEdge Opposite"]
- 3720["SweepEdge Adjacent"]
- 3721["SweepEdge Opposite"]
- 3722["SweepEdge Adjacent"]
- 3723["SweepEdge Opposite"]
- 3724["SweepEdge Adjacent"]
- 3725["SweepEdge Opposite"]
- 3726["SweepEdge Adjacent"]
- 3727["SweepEdge Opposite"]
- 3728["SweepEdge Adjacent"]
- 3729["SweepEdge Opposite"]
- 3730["SweepEdge Adjacent"]
- 3731["SweepEdge Opposite"]
- 3732["SweepEdge Adjacent"]
- 3733["SweepEdge Opposite"]
- 3734["SweepEdge Adjacent"]
- 3735["SweepEdge Opposite"]
- 3736["SweepEdge Adjacent"]
- 3737["SweepEdge Opposite"]
- 3738["SweepEdge Adjacent"]
- 3739["SweepEdge Opposite"]
- 3740["SweepEdge Adjacent"]
- 3741["SweepEdge Opposite"]
- 3742["SweepEdge Adjacent"]
- 3743["SweepEdge Opposite"]
- 3744["SweepEdge Adjacent"]
- 3745["SweepEdge Opposite"]
- 3746["SweepEdge Adjacent"]
- 3747["SweepEdge Opposite"]
- 3748["SweepEdge Adjacent"]
- 3749["SweepEdge Opposite"]
- 3750["SweepEdge Adjacent"]
- 3751["SweepEdge Opposite"]
- 3752["SweepEdge Adjacent"]
- 3753["SweepEdge Opposite"]
- 3754["SweepEdge Adjacent"]
- 3755["SweepEdge Opposite"]
- 3756["SweepEdge Adjacent"]
- 3757["SweepEdge Opposite"]
- 3758["SweepEdge Adjacent"]
- 3759["SweepEdge Opposite"]
- 3760["SweepEdge Adjacent"]
- 3761["SweepEdge Opposite"]
- 3762["SweepEdge Adjacent"]
- 3763["SweepEdge Opposite"]
- 3764["SweepEdge Adjacent"]
- 3765["SweepEdge Opposite"]
- 3766["SweepEdge Adjacent"]
- 3767["SweepEdge Opposite"]
- 3768["SweepEdge Adjacent"]
- 3769["SweepEdge Opposite"]
- 3770["SweepEdge Adjacent"]
- 3771["SweepEdge Opposite"]
- 3772["SweepEdge Adjacent"]
- 3773["SweepEdge Opposite"]
- 3774["SweepEdge Adjacent"]
- 3775["SweepEdge Opposite"]
- 3776["SweepEdge Adjacent"]
- 3777["SweepEdge Opposite"]
- 3778["SweepEdge Adjacent"]
- 3779["SweepEdge Opposite"]
- 3780["SweepEdge Adjacent"]
- 3781["SweepEdge Opposite"]
- 3782["SweepEdge Adjacent"]
- 3783["SweepEdge Opposite"]
- 3784["SweepEdge Adjacent"]
- 3785["SweepEdge Opposite"]
- 3786["SweepEdge Adjacent"]
- 3787["SweepEdge Opposite"]
- 3788["SweepEdge Adjacent"]
- 3789["SweepEdge Opposite"]
- 3790["SweepEdge Adjacent"]
- 3791["SweepEdge Opposite"]
- 3792["SweepEdge Adjacent"]
- 3793["SweepEdge Opposite"]
- 3794["SweepEdge Adjacent"]
- 3795["SweepEdge Opposite"]
- 3796["SweepEdge Adjacent"]
- 3797["SweepEdge Opposite"]
- 3798["SweepEdge Adjacent"]
- 3799["SweepEdge Opposite"]
- 3800["SweepEdge Adjacent"]
- 3801["SweepEdge Opposite"]
- 3802["SweepEdge Adjacent"]
- 3803["SweepEdge Opposite"]
- 3804["SweepEdge Adjacent"]
- 3805["SweepEdge Opposite"]
- 3806["SweepEdge Adjacent"]
- 3807["SweepEdge Opposite"]
- 3808["SweepEdge Adjacent"]
- 3809["SweepEdge Opposite"]
- 3810["SweepEdge Adjacent"]
- 3811["SweepEdge Opposite"]
- 3812["SweepEdge Adjacent"]
- 3813["SweepEdge Opposite"]
- 3814["SweepEdge Adjacent"]
- 3815["SweepEdge Opposite"]
- 3816["SweepEdge Adjacent"]
- 3817["SweepEdge Opposite"]
- 3818["SweepEdge Adjacent"]
- 3819["SweepEdge Opposite"]
- 3820["SweepEdge Adjacent"]
- 3821["SweepEdge Opposite"]
- 3822["SweepEdge Adjacent"]
- 3823["SweepEdge Opposite"]
- 3824["SweepEdge Adjacent"]
- 3825["SweepEdge Opposite"]
- 3826["SweepEdge Adjacent"]
- 3827["SweepEdge Opposite"]
- 3828["SweepEdge Adjacent"]
- 3829["SweepEdge Opposite"]
- 3830["SweepEdge Adjacent"]
- 3831["SweepEdge Opposite"]
- 3832["SweepEdge Adjacent"]
- 3833["SweepEdge Opposite"]
- 3834["SweepEdge Adjacent"]
- 3835["SweepEdge Opposite"]
- 3836["SweepEdge Adjacent"]
- 3837["SweepEdge Opposite"]
- 3838["SweepEdge Adjacent"]
- 3839["SweepEdge Opposite"]
- 3840["SweepEdge Adjacent"]
- 3841["SweepEdge Opposite"]
- 3842["SweepEdge Adjacent"]
- 3843["SweepEdge Opposite"]
- 3844["SweepEdge Adjacent"]
- 3845["SweepEdge Opposite"]
- 3846["SweepEdge Adjacent"]
- 3847["SweepEdge Opposite"]
- 3848["SweepEdge Adjacent"]
- 3849["SweepEdge Opposite"]
- 3850["SweepEdge Adjacent"]
- 3851["SweepEdge Opposite"]
- 3852["SweepEdge Adjacent"]
- 3853["SweepEdge Opposite"]
- 3854["SweepEdge Adjacent"]
- 3855["SweepEdge Opposite"]
- 3856["SweepEdge Adjacent"]
- 3857["SweepEdge Opposite"]
- 3858["SweepEdge Adjacent"]
- 3859["SweepEdge Opposite"]
- 3860["SweepEdge Adjacent"]
- 3861["SweepEdge Opposite"]
- 3862["SweepEdge Adjacent"]
- 3863["SweepEdge Opposite"]
- 3864["SweepEdge Adjacent"]
- 3865["SweepEdge Opposite"]
- 3866["SweepEdge Adjacent"]
- 3867["SweepEdge Opposite"]
- 3868["SweepEdge Adjacent"]
- 3869["SweepEdge Opposite"]
- 3870["SweepEdge Adjacent"]
- 3871["SweepEdge Opposite"]
- 3872["SweepEdge Adjacent"]
- 3873["SweepEdge Opposite"]
- 3874["SweepEdge Adjacent"]
- 3875["SweepEdge Opposite"]
- 3876["SweepEdge Adjacent"]
- 3877["SweepEdge Opposite"]
- 3878["SweepEdge Adjacent"]
- 3879["SweepEdge Opposite"]
- 3880["SweepEdge Adjacent"]
- 3881["SweepEdge Opposite"]
- 3882["SweepEdge Adjacent"]
- 3883["SweepEdge Opposite"]
- 3884["SweepEdge Adjacent"]
- 3885["SweepEdge Opposite"]
- 3886["SweepEdge Adjacent"]
- 3887["SweepEdge Opposite"]
- 3888["SweepEdge Adjacent"]
- 3889["SweepEdge Opposite"]
- 3890["SweepEdge Adjacent"]
- 3891["SweepEdge Opposite"]
- 3892["SweepEdge Adjacent"]
- 3893["SweepEdge Opposite"]
- 3894["SweepEdge Adjacent"]
- 3895["SweepEdge Opposite"]
- 3896["SweepEdge Adjacent"]
- 3897["SweepEdge Opposite"]
- 3898["SweepEdge Adjacent"]
- 3899["SweepEdge Opposite"]
- 3900["SweepEdge Adjacent"]
- 3901["SweepEdge Opposite"]
- 3902["SweepEdge Adjacent"]
- 3903["SweepEdge Opposite"]
- 3904["SweepEdge Adjacent"]
- 3905["SweepEdge Opposite"]
- 3906["SweepEdge Adjacent"]
- 3907["SweepEdge Opposite"]
- 3908["SweepEdge Adjacent"]
- 3909["SweepEdge Opposite"]
- 3910["SweepEdge Adjacent"]
- 3911["SweepEdge Opposite"]
- 3912["SweepEdge Adjacent"]
- 3913["SweepEdge Opposite"]
- 3914["SweepEdge Adjacent"]
- 3915["SweepEdge Opposite"]
- 3916["SweepEdge Adjacent"]
- 3917["SweepEdge Opposite"]
- 3918["SweepEdge Adjacent"]
- 3919["SweepEdge Opposite"]
- 3920["SweepEdge Adjacent"]
- 3921["SweepEdge Opposite"]
- 3922["SweepEdge Adjacent"]
- 3923["SweepEdge Opposite"]
- 3924["SweepEdge Adjacent"]
- 3925["SweepEdge Opposite"]
- 3926["SweepEdge Adjacent"]
- 3927["SweepEdge Opposite"]
- 3928["SweepEdge Adjacent"]
- 3929["SweepEdge Opposite"]
- 3930["SweepEdge Adjacent"]
- 3931["SweepEdge Opposite"]
- 3932["SweepEdge Adjacent"]
- 3933["SweepEdge Opposite"]
- 3934["SweepEdge Adjacent"]
- 3935["SweepEdge Opposite"]
- 3936["SweepEdge Adjacent"]
- 3937["SweepEdge Opposite"]
- 3938["SweepEdge Adjacent"]
- 3939["SweepEdge Opposite"]
- 3940["SweepEdge Adjacent"]
- 3941["SweepEdge Opposite"]
- 3942["SweepEdge Adjacent"]
- 3943["SweepEdge Opposite"]
- 3944["SweepEdge Adjacent"]
- 3945["SweepEdge Opposite"]
- 3946["SweepEdge Adjacent"]
- 3947["SweepEdge Opposite"]
- 3948["SweepEdge Adjacent"]
- 3949["SweepEdge Opposite"]
- 3950["SweepEdge Adjacent"]
- 3951["SweepEdge Opposite"]
- 3952["SweepEdge Adjacent"]
- 3953["SweepEdge Opposite"]
- 3954["SweepEdge Adjacent"]
- 3955["SweepEdge Opposite"]
- 3956["SweepEdge Adjacent"]
- 3957["SweepEdge Opposite"]
- 3958["SweepEdge Adjacent"]
- 3959["SweepEdge Opposite"]
- 3960["SweepEdge Adjacent"]
- 3961["SweepEdge Opposite"]
- 3962["SweepEdge Adjacent"]
- 3963["SweepEdge Opposite"]
- 3964["SweepEdge Adjacent"]
- 3965["SweepEdge Opposite"]
- 3966["SweepEdge Adjacent"]
- 3967["SweepEdge Opposite"]
- 3968["SweepEdge Adjacent"]
- 3969["SweepEdge Opposite"]
- 3970["SweepEdge Adjacent"]
- 3971["SweepEdge Opposite"]
- 3972["SweepEdge Adjacent"]
- 3973["SweepEdge Opposite"]
- 3974["SweepEdge Adjacent"]
- 3975["SweepEdge Opposite"]
- 3976["SweepEdge Adjacent"]
- 3977["SweepEdge Opposite"]
- 3978["SweepEdge Adjacent"]
- 3979["SweepEdge Opposite"]
- 3980["SweepEdge Adjacent"]
- 3981["SweepEdge Opposite"]
- 3982["SweepEdge Adjacent"]
- 3983["SweepEdge Opposite"]
- 3984["SweepEdge Adjacent"]
- 3985["SweepEdge Opposite"]
- 3986["SweepEdge Adjacent"]
- 3987["SweepEdge Opposite"]
- 3988["SweepEdge Adjacent"]
- 3989["SweepEdge Opposite"]
- 3990["SweepEdge Adjacent"]
- 3991["SweepEdge Opposite"]
- 3992["SweepEdge Adjacent"]
- 3993["SweepEdge Opposite"]
- 3994["SweepEdge Adjacent"]
- 3995["SweepEdge Opposite"]
- 3996["SweepEdge Adjacent"]
- 3997["SweepEdge Opposite"]
- 3998["SweepEdge Adjacent"]
- 3999["SweepEdge Opposite"]
- 4000["SweepEdge Adjacent"]
- 4001["SweepEdge Opposite"]
- 4002["SweepEdge Adjacent"]
- 4003["SweepEdge Opposite"]
- 4004["SweepEdge Adjacent"]
- 4005["SweepEdge Opposite"]
- 4006["SweepEdge Adjacent"]
- 4007["SweepEdge Opposite"]
- 4008["SweepEdge Adjacent"]
- 4009["SweepEdge Opposite"]
- 4010["SweepEdge Adjacent"]
+ 3008["SweepEdge Opposite"]
1 --- 2
2 --- 3
2 --- 4
@@ -5017,3008 +4015,3007 @@ flowchart LR
2 ---- 1005
2 --- 1004
3 --- 2006
- 3 --- 4009
- 3 --- 4010
+ 3 --- 3008
+ 3 x--> 2007
4 --- 2005
- 4 --- 4007
- 4 --- 4008
+ 4 --- 3007
+ 4 x--> 2007
5 --- 2004
- 5 --- 4005
- 5 --- 4006
+ 5 --- 3006
+ 5 x--> 2007
6 --- 2003
- 6 --- 4003
- 6 --- 4004
+ 6 --- 3005
+ 6 x--> 2007
7 --- 2002
- 7 --- 4001
- 7 --- 4002
+ 7 --- 3004
+ 7 x--> 2007
8 --- 2001
- 8 --- 3999
- 8 --- 4000
+ 8 --- 3003
+ 8 x--> 2007
9 --- 2000
- 9 --- 3997
- 9 --- 3998
+ 9 --- 3002
+ 9 x--> 2007
10 --- 1999
- 10 --- 3995
- 10 --- 3996
+ 10 --- 3001
+ 10 x--> 2007
11 --- 1998
- 11 --- 3993
- 11 --- 3994
+ 11 --- 3000
+ 11 x--> 2007
12 --- 1997
- 12 --- 3991
- 12 --- 3992
+ 12 --- 2999
+ 12 x--> 2007
13 --- 1996
- 13 --- 3989
- 13 --- 3990
+ 13 --- 2998
+ 13 x--> 2007
14 --- 1995
- 14 --- 3987
- 14 --- 3988
+ 14 --- 2997
+ 14 x--> 2007
15 --- 1994
- 15 --- 3985
- 15 --- 3986
+ 15 --- 2996
+ 15 x--> 2007
16 --- 1993
- 16 --- 3983
- 16 --- 3984
+ 16 --- 2995
+ 16 x--> 2007
17 --- 1992
- 17 --- 3981
- 17 --- 3982
+ 17 --- 2994
+ 17 x--> 2007
18 --- 1991
- 18 --- 3979
- 18 --- 3980
+ 18 --- 2993
+ 18 x--> 2007
19 --- 1990
- 19 --- 3977
- 19 --- 3978
+ 19 --- 2992
+ 19 x--> 2007
20 --- 1989
- 20 --- 3975
- 20 --- 3976
+ 20 --- 2991
+ 20 x--> 2007
21 --- 1988
- 21 --- 3973
- 21 --- 3974
+ 21 --- 2990
+ 21 x--> 2007
22 --- 1987
- 22 --- 3971
- 22 --- 3972
+ 22 --- 2989
+ 22 x--> 2007
23 --- 1986
- 23 --- 3969
- 23 --- 3970
+ 23 --- 2988
+ 23 x--> 2007
24 --- 1985
- 24 --- 3967
- 24 --- 3968
+ 24 --- 2987
+ 24 x--> 2007
25 --- 1984
- 25 --- 3965
- 25 --- 3966
+ 25 --- 2986
+ 25 x--> 2007
26 --- 1983
- 26 --- 3963
- 26 --- 3964
+ 26 --- 2985
+ 26 x--> 2007
27 --- 1982
- 27 --- 3961
- 27 --- 3962
+ 27 --- 2984
+ 27 x--> 2007
28 --- 1981
- 28 --- 3959
- 28 --- 3960
+ 28 --- 2983
+ 28 x--> 2007
29 --- 1980
- 29 --- 3957
- 29 --- 3958
+ 29 --- 2982
+ 29 x--> 2007
30 --- 1979
- 30 --- 3955
- 30 --- 3956
+ 30 --- 2981
+ 30 x--> 2007
31 --- 1978
- 31 --- 3953
- 31 --- 3954
+ 31 --- 2980
+ 31 x--> 2007
32 --- 1977
- 32 --- 3951
- 32 --- 3952
+ 32 --- 2979
+ 32 x--> 2007
33 --- 1976
- 33 --- 3949
- 33 --- 3950
+ 33 --- 2978
+ 33 x--> 2007
34 --- 1975
- 34 --- 3947
- 34 --- 3948
+ 34 --- 2977
+ 34 x--> 2007
35 --- 1974
- 35 --- 3945
- 35 --- 3946
+ 35 --- 2976
+ 35 x--> 2007
36 --- 1973
- 36 --- 3943
- 36 --- 3944
+ 36 --- 2975
+ 36 x--> 2007
37 --- 1972
- 37 --- 3941
- 37 --- 3942
+ 37 --- 2974
+ 37 x--> 2007
38 --- 1971
- 38 --- 3939
- 38 --- 3940
+ 38 --- 2973
+ 38 x--> 2007
39 --- 1970
- 39 --- 3937
- 39 --- 3938
+ 39 --- 2972
+ 39 x--> 2007
40 --- 1969
- 40 --- 3935
- 40 --- 3936
+ 40 --- 2971
+ 40 x--> 2007
41 --- 1968
- 41 --- 3933
- 41 --- 3934
+ 41 --- 2970
+ 41 x--> 2007
42 --- 1967
- 42 --- 3931
- 42 --- 3932
+ 42 --- 2969
+ 42 x--> 2007
43 --- 1966
- 43 --- 3929
- 43 --- 3930
+ 43 --- 2968
+ 43 x--> 2007
44 --- 1965
- 44 --- 3927
- 44 --- 3928
+ 44 --- 2967
+ 44 x--> 2007
45 --- 1964
- 45 --- 3925
- 45 --- 3926
+ 45 --- 2966
+ 45 x--> 2007
46 --- 1963
- 46 --- 3923
- 46 --- 3924
+ 46 --- 2965
+ 46 x--> 2007
47 --- 1962
- 47 --- 3921
- 47 --- 3922
+ 47 --- 2964
+ 47 x--> 2007
48 --- 1961
- 48 --- 3919
- 48 --- 3920
+ 48 --- 2963
+ 48 x--> 2007
49 --- 1960
- 49 --- 3917
- 49 --- 3918
+ 49 --- 2962
+ 49 x--> 2007
50 --- 1959
- 50 --- 3915
- 50 --- 3916
+ 50 --- 2961
+ 50 x--> 2007
51 --- 1958
- 51 --- 3913
- 51 --- 3914
+ 51 --- 2960
+ 51 x--> 2007
52 --- 1957
- 52 --- 3911
- 52 --- 3912
+ 52 --- 2959
+ 52 x--> 2007
53 --- 1956
- 53 --- 3909
- 53 --- 3910
+ 53 --- 2958
+ 53 x--> 2007
54 --- 1955
- 54 --- 3907
- 54 --- 3908
+ 54 --- 2957
+ 54 x--> 2007
55 --- 1954
- 55 --- 3905
- 55 --- 3906
+ 55 --- 2956
+ 55 x--> 2007
56 --- 1953
- 56 --- 3903
- 56 --- 3904
+ 56 --- 2955
+ 56 x--> 2007
57 --- 1952
- 57 --- 3901
- 57 --- 3902
+ 57 --- 2954
+ 57 x--> 2007
58 --- 1951
- 58 --- 3899
- 58 --- 3900
+ 58 --- 2953
+ 58 x--> 2007
59 --- 1950
- 59 --- 3897
- 59 --- 3898
+ 59 --- 2952
+ 59 x--> 2007
60 --- 1949
- 60 --- 3895
- 60 --- 3896
+ 60 --- 2951
+ 60 x--> 2007
61 --- 1948
- 61 --- 3893
- 61 --- 3894
+ 61 --- 2950
+ 61 x--> 2007
62 --- 1947
- 62 --- 3891
- 62 --- 3892
+ 62 --- 2949
+ 62 x--> 2007
63 --- 1946
- 63 --- 3889
- 63 --- 3890
+ 63 --- 2948
+ 63 x--> 2007
64 --- 1945
- 64 --- 3887
- 64 --- 3888
+ 64 --- 2947
+ 64 x--> 2007
65 --- 1944
- 65 --- 3885
- 65 --- 3886
+ 65 --- 2946
+ 65 x--> 2007
66 --- 1943
- 66 --- 3883
- 66 --- 3884
+ 66 --- 2945
+ 66 x--> 2007
67 --- 1942
- 67 --- 3881
- 67 --- 3882
+ 67 --- 2944
+ 67 x--> 2007
68 --- 1941
- 68 --- 3879
- 68 --- 3880
+ 68 --- 2943
+ 68 x--> 2007
69 --- 1940
- 69 --- 3877
- 69 --- 3878
+ 69 --- 2942
+ 69 x--> 2007
70 --- 1939
- 70 --- 3875
- 70 --- 3876
+ 70 --- 2941
+ 70 x--> 2007
71 --- 1938
- 71 --- 3873
- 71 --- 3874
+ 71 --- 2940
+ 71 x--> 2007
72 --- 1937
- 72 --- 3871
- 72 --- 3872
+ 72 --- 2939
+ 72 x--> 2007
73 --- 1936
- 73 --- 3869
- 73 --- 3870
+ 73 --- 2938
+ 73 x--> 2007
74 --- 1935
- 74 --- 3867
- 74 --- 3868
+ 74 --- 2937
+ 74 x--> 2007
75 --- 1934
- 75 --- 3865
- 75 --- 3866
+ 75 --- 2936
+ 75 x--> 2007
76 --- 1933
- 76 --- 3863
- 76 --- 3864
+ 76 --- 2935
+ 76 x--> 2007
77 --- 1932
- 77 --- 3861
- 77 --- 3862
+ 77 --- 2934
+ 77 x--> 2007
78 --- 1931
- 78 --- 3859
- 78 --- 3860
+ 78 --- 2933
+ 78 x--> 2007
79 --- 1930
- 79 --- 3857
- 79 --- 3858
+ 79 --- 2932
+ 79 x--> 2007
80 --- 1929
- 80 --- 3855
- 80 --- 3856
+ 80 --- 2931
+ 80 x--> 2007
81 --- 1928
- 81 --- 3853
- 81 --- 3854
+ 81 --- 2930
+ 81 x--> 2007
82 --- 1927
- 82 --- 3851
- 82 --- 3852
+ 82 --- 2929
+ 82 x--> 2007
83 --- 1926
- 83 --- 3849
- 83 --- 3850
+ 83 --- 2928
+ 83 x--> 2007
84 --- 1925
- 84 --- 3847
- 84 --- 3848
+ 84 --- 2927
+ 84 x--> 2007
85 --- 1924
- 85 --- 3845
- 85 --- 3846
+ 85 --- 2926
+ 85 x--> 2007
86 --- 1923
- 86 --- 3843
- 86 --- 3844
+ 86 --- 2925
+ 86 x--> 2007
87 --- 1922
- 87 --- 3841
- 87 --- 3842
+ 87 --- 2924
+ 87 x--> 2007
88 --- 1921
- 88 --- 3839
- 88 --- 3840
+ 88 --- 2923
+ 88 x--> 2007
89 --- 1920
- 89 --- 3837
- 89 --- 3838
+ 89 --- 2922
+ 89 x--> 2007
90 --- 1919
- 90 --- 3835
- 90 --- 3836
+ 90 --- 2921
+ 90 x--> 2007
91 --- 1918
- 91 --- 3833
- 91 --- 3834
+ 91 --- 2920
+ 91 x--> 2007
92 --- 1917
- 92 --- 3831
- 92 --- 3832
+ 92 --- 2919
+ 92 x--> 2007
93 --- 1916
- 93 --- 3829
- 93 --- 3830
+ 93 --- 2918
+ 93 x--> 2007
94 --- 1915
- 94 --- 3827
- 94 --- 3828
+ 94 --- 2917
+ 94 x--> 2007
95 --- 1914
- 95 --- 3825
- 95 --- 3826
+ 95 --- 2916
+ 95 x--> 2007
96 --- 1913
- 96 --- 3823
- 96 --- 3824
+ 96 --- 2915
+ 96 x--> 2007
97 --- 1912
- 97 --- 3821
- 97 --- 3822
+ 97 --- 2914
+ 97 x--> 2007
98 --- 1911
- 98 --- 3819
- 98 --- 3820
+ 98 --- 2913
+ 98 x--> 2007
99 --- 1910
- 99 --- 3817
- 99 --- 3818
+ 99 --- 2912
+ 99 x--> 2007
100 --- 1909
- 100 --- 3815
- 100 --- 3816
+ 100 --- 2911
+ 100 x--> 2007
101 --- 1908
- 101 --- 3813
- 101 --- 3814
+ 101 --- 2910
+ 101 x--> 2007
102 --- 1907
- 102 --- 3811
- 102 --- 3812
+ 102 --- 2909
+ 102 x--> 2007
103 --- 1906
- 103 --- 3809
- 103 --- 3810
+ 103 --- 2908
+ 103 x--> 2007
104 --- 1905
- 104 --- 3807
- 104 --- 3808
+ 104 --- 2907
+ 104 x--> 2007
105 --- 1904
- 105 --- 3805
- 105 --- 3806
+ 105 --- 2906
+ 105 x--> 2007
106 --- 1903
- 106 --- 3803
- 106 --- 3804
+ 106 --- 2905
+ 106 x--> 2007
107 --- 1902
- 107 --- 3801
- 107 --- 3802
+ 107 --- 2904
+ 107 x--> 2007
108 --- 1901
- 108 --- 3799
- 108 --- 3800
+ 108 --- 2903
+ 108 x--> 2007
109 --- 1900
- 109 --- 3797
- 109 --- 3798
+ 109 --- 2902
+ 109 x--> 2007
110 --- 1899
- 110 --- 3795
- 110 --- 3796
+ 110 --- 2901
+ 110 x--> 2007
111 --- 1898
- 111 --- 3793
- 111 --- 3794
+ 111 --- 2900
+ 111 x--> 2007
112 --- 1897
- 112 --- 3791
- 112 --- 3792
+ 112 --- 2899
+ 112 x--> 2007
113 --- 1896
- 113 --- 3789
- 113 --- 3790
+ 113 --- 2898
+ 113 x--> 2007
114 --- 1895
- 114 --- 3787
- 114 --- 3788
+ 114 --- 2897
+ 114 x--> 2007
115 --- 1894
- 115 --- 3785
- 115 --- 3786
+ 115 --- 2896
+ 115 x--> 2007
116 --- 1893
- 116 --- 3783
- 116 --- 3784
+ 116 --- 2895
+ 116 x--> 2007
117 --- 1892
- 117 --- 3781
- 117 --- 3782
+ 117 --- 2894
+ 117 x--> 2007
118 --- 1891
- 118 --- 3779
- 118 --- 3780
+ 118 --- 2893
+ 118 x--> 2007
119 --- 1890
- 119 --- 3777
- 119 --- 3778
+ 119 --- 2892
+ 119 x--> 2007
120 --- 1889
- 120 --- 3775
- 120 --- 3776
+ 120 --- 2891
+ 120 x--> 2007
121 --- 1888
- 121 --- 3773
- 121 --- 3774
+ 121 --- 2890
+ 121 x--> 2007
122 --- 1887
- 122 --- 3771
- 122 --- 3772
+ 122 --- 2889
+ 122 x--> 2007
123 --- 1886
- 123 --- 3769
- 123 --- 3770
+ 123 --- 2888
+ 123 x--> 2007
124 --- 1885
- 124 --- 3767
- 124 --- 3768
+ 124 --- 2887
+ 124 x--> 2007
125 --- 1884
- 125 --- 3765
- 125 --- 3766
+ 125 --- 2886
+ 125 x--> 2007
126 --- 1883
- 126 --- 3763
- 126 --- 3764
+ 126 --- 2885
+ 126 x--> 2007
127 --- 1882
- 127 --- 3761
- 127 --- 3762
+ 127 --- 2884
+ 127 x--> 2007
128 --- 1881
- 128 --- 3759
- 128 --- 3760
+ 128 --- 2883
+ 128 x--> 2007
129 --- 1880
- 129 --- 3757
- 129 --- 3758
+ 129 --- 2882
+ 129 x--> 2007
130 --- 1879
- 130 --- 3755
- 130 --- 3756
+ 130 --- 2881
+ 130 x--> 2007
131 --- 1878
- 131 --- 3753
- 131 --- 3754
+ 131 --- 2880
+ 131 x--> 2007
132 --- 1877
- 132 --- 3751
- 132 --- 3752
+ 132 --- 2879
+ 132 x--> 2007
133 --- 1876
- 133 --- 3749
- 133 --- 3750
+ 133 --- 2878
+ 133 x--> 2007
134 --- 1875
- 134 --- 3747
- 134 --- 3748
+ 134 --- 2877
+ 134 x--> 2007
135 --- 1874
- 135 --- 3745
- 135 --- 3746
+ 135 --- 2876
+ 135 x--> 2007
136 --- 1873
- 136 --- 3743
- 136 --- 3744
+ 136 --- 2875
+ 136 x--> 2007
137 --- 1872
- 137 --- 3741
- 137 --- 3742
+ 137 --- 2874
+ 137 x--> 2007
138 --- 1871
- 138 --- 3739
- 138 --- 3740
+ 138 --- 2873
+ 138 x--> 2007
139 --- 1870
- 139 --- 3737
- 139 --- 3738
+ 139 --- 2872
+ 139 x--> 2007
140 --- 1869
- 140 --- 3735
- 140 --- 3736
+ 140 --- 2871
+ 140 x--> 2007
141 --- 1868
- 141 --- 3733
- 141 --- 3734
+ 141 --- 2870
+ 141 x--> 2007
142 --- 1867
- 142 --- 3731
- 142 --- 3732
+ 142 --- 2869
+ 142 x--> 2007
143 --- 1866
- 143 --- 3729
- 143 --- 3730
+ 143 --- 2868
+ 143 x--> 2007
144 --- 1865
- 144 --- 3727
- 144 --- 3728
+ 144 --- 2867
+ 144 x--> 2007
145 --- 1864
- 145 --- 3725
- 145 --- 3726
+ 145 --- 2866
+ 145 x--> 2007
146 --- 1863
- 146 --- 3723
- 146 --- 3724
+ 146 --- 2865
+ 146 x--> 2007
147 --- 1862
- 147 --- 3721
- 147 --- 3722
+ 147 --- 2864
+ 147 x--> 2007
148 --- 1861
- 148 --- 3719
- 148 --- 3720
+ 148 --- 2863
+ 148 x--> 2007
149 --- 1860
- 149 --- 3717
- 149 --- 3718
+ 149 --- 2862
+ 149 x--> 2007
150 --- 1859
- 150 --- 3715
- 150 --- 3716
+ 150 --- 2861
+ 150 x--> 2007
151 --- 1858
- 151 --- 3713
- 151 --- 3714
+ 151 --- 2860
+ 151 x--> 2007
152 --- 1857
- 152 --- 3711
- 152 --- 3712
+ 152 --- 2859
+ 152 x--> 2007
153 --- 1856
- 153 --- 3709
- 153 --- 3710
+ 153 --- 2858
+ 153 x--> 2007
154 --- 1855
- 154 --- 3707
- 154 --- 3708
+ 154 --- 2857
+ 154 x--> 2007
155 --- 1854
- 155 --- 3705
- 155 --- 3706
+ 155 --- 2856
+ 155 x--> 2007
156 --- 1853
- 156 --- 3703
- 156 --- 3704
+ 156 --- 2855
+ 156 x--> 2007
157 --- 1852
- 157 --- 3701
- 157 --- 3702
+ 157 --- 2854
+ 157 x--> 2007
158 --- 1851
- 158 --- 3699
- 158 --- 3700
+ 158 --- 2853
+ 158 x--> 2007
159 --- 1850
- 159 --- 3697
- 159 --- 3698
+ 159 --- 2852
+ 159 x--> 2007
160 --- 1849
- 160 --- 3695
- 160 --- 3696
+ 160 --- 2851
+ 160 x--> 2007
161 --- 1848
- 161 --- 3693
- 161 --- 3694
+ 161 --- 2850
+ 161 x--> 2007
162 --- 1847
- 162 --- 3691
- 162 --- 3692
+ 162 --- 2849
+ 162 x--> 2007
163 --- 1846
- 163 --- 3689
- 163 --- 3690
+ 163 --- 2848
+ 163 x--> 2007
164 --- 1845
- 164 --- 3687
- 164 --- 3688
+ 164 --- 2847
+ 164 x--> 2007
165 --- 1844
- 165 --- 3685
- 165 --- 3686
+ 165 --- 2846
+ 165 x--> 2007
166 --- 1843
- 166 --- 3683
- 166 --- 3684
+ 166 --- 2845
+ 166 x--> 2007
167 --- 1842
- 167 --- 3681
- 167 --- 3682
+ 167 --- 2844
+ 167 x--> 2007
168 --- 1841
- 168 --- 3679
- 168 --- 3680
+ 168 --- 2843
+ 168 x--> 2007
169 --- 1840
- 169 --- 3677
- 169 --- 3678
+ 169 --- 2842
+ 169 x--> 2007
170 --- 1839
- 170 --- 3675
- 170 --- 3676
+ 170 --- 2841
+ 170 x--> 2007
171 --- 1838
- 171 --- 3673
- 171 --- 3674
+ 171 --- 2840
+ 171 x--> 2007
172 --- 1837
- 172 --- 3671
- 172 --- 3672
+ 172 --- 2839
+ 172 x--> 2007
173 --- 1836
- 173 --- 3669
- 173 --- 3670
+ 173 --- 2838
+ 173 x--> 2007
174 --- 1835
- 174 --- 3667
- 174 --- 3668
+ 174 --- 2837
+ 174 x--> 2007
175 --- 1834
- 175 --- 3665
- 175 --- 3666
+ 175 --- 2836
+ 175 x--> 2007
176 --- 1833
- 176 --- 3663
- 176 --- 3664
+ 176 --- 2835
+ 176 x--> 2007
177 --- 1832
- 177 --- 3661
- 177 --- 3662
+ 177 --- 2834
+ 177 x--> 2007
178 --- 1831
- 178 --- 3659
- 178 --- 3660
+ 178 --- 2833
+ 178 x--> 2007
179 --- 1830
- 179 --- 3657
- 179 --- 3658
+ 179 --- 2832
+ 179 x--> 2007
180 --- 1829
- 180 --- 3655
- 180 --- 3656
+ 180 --- 2831
+ 180 x--> 2007
181 --- 1828
- 181 --- 3653
- 181 --- 3654
+ 181 --- 2830
+ 181 x--> 2007
182 --- 1827
- 182 --- 3651
- 182 --- 3652
+ 182 --- 2829
+ 182 x--> 2007
183 --- 1826
- 183 --- 3649
- 183 --- 3650
+ 183 --- 2828
+ 183 x--> 2007
184 --- 1825
- 184 --- 3647
- 184 --- 3648
+ 184 --- 2827
+ 184 x--> 2007
185 --- 1824
- 185 --- 3645
- 185 --- 3646
+ 185 --- 2826
+ 185 x--> 2007
186 --- 1823
- 186 --- 3643
- 186 --- 3644
+ 186 --- 2825
+ 186 x--> 2007
187 --- 1822
- 187 --- 3641
- 187 --- 3642
+ 187 --- 2824
+ 187 x--> 2007
188 --- 1821
- 188 --- 3639
- 188 --- 3640
+ 188 --- 2823
+ 188 x--> 2007
189 --- 1820
- 189 --- 3637
- 189 --- 3638
+ 189 --- 2822
+ 189 x--> 2007
190 --- 1819
- 190 --- 3635
- 190 --- 3636
+ 190 --- 2821
+ 190 x--> 2007
191 --- 1818
- 191 --- 3633
- 191 --- 3634
+ 191 --- 2820
+ 191 x--> 2007
192 --- 1817
- 192 --- 3631
- 192 --- 3632
+ 192 --- 2819
+ 192 x--> 2007
193 --- 1816
- 193 --- 3629
- 193 --- 3630
+ 193 --- 2818
+ 193 x--> 2007
194 --- 1815
- 194 --- 3627
- 194 --- 3628
+ 194 --- 2817
+ 194 x--> 2007
195 --- 1814
- 195 --- 3625
- 195 --- 3626
+ 195 --- 2816
+ 195 x--> 2007
196 --- 1813
- 196 --- 3623
- 196 --- 3624
+ 196 --- 2815
+ 196 x--> 2007
197 --- 1812
- 197 --- 3621
- 197 --- 3622
+ 197 --- 2814
+ 197 x--> 2007
198 --- 1811
- 198 --- 3619
- 198 --- 3620
+ 198 --- 2813
+ 198 x--> 2007
199 --- 1810
- 199 --- 3617
- 199 --- 3618
+ 199 --- 2812
+ 199 x--> 2007
200 --- 1809
- 200 --- 3615
- 200 --- 3616
+ 200 --- 2811
+ 200 x--> 2007
201 --- 1808
- 201 --- 3613
- 201 --- 3614
+ 201 --- 2810
+ 201 x--> 2007
202 --- 1807
- 202 --- 3611
- 202 --- 3612
+ 202 --- 2809
+ 202 x--> 2007
203 --- 1806
- 203 --- 3609
- 203 --- 3610
+ 203 --- 2808
+ 203 x--> 2007
204 --- 1805
- 204 --- 3607
- 204 --- 3608
+ 204 --- 2807
+ 204 x--> 2007
205 --- 1804
- 205 --- 3605
- 205 --- 3606
+ 205 --- 2806
+ 205 x--> 2007
206 --- 1803
- 206 --- 3603
- 206 --- 3604
+ 206 --- 2805
+ 206 x--> 2007
207 --- 1802
- 207 --- 3601
- 207 --- 3602
+ 207 --- 2804
+ 207 x--> 2007
208 --- 1801
- 208 --- 3599
- 208 --- 3600
+ 208 --- 2803
+ 208 x--> 2007
209 --- 1800
- 209 --- 3597
- 209 --- 3598
+ 209 --- 2802
+ 209 x--> 2007
210 --- 1799
- 210 --- 3595
- 210 --- 3596
+ 210 --- 2801
+ 210 x--> 2007
211 --- 1798
- 211 --- 3593
- 211 --- 3594
+ 211 --- 2800
+ 211 x--> 2007
212 --- 1797
- 212 --- 3591
- 212 --- 3592
+ 212 --- 2799
+ 212 x--> 2007
213 --- 1796
- 213 --- 3589
- 213 --- 3590
+ 213 --- 2798
+ 213 x--> 2007
214 --- 1795
- 214 --- 3587
- 214 --- 3588
+ 214 --- 2797
+ 214 x--> 2007
215 --- 1794
- 215 --- 3585
- 215 --- 3586
+ 215 --- 2796
+ 215 x--> 2007
216 --- 1793
- 216 --- 3583
- 216 --- 3584
+ 216 --- 2795
+ 216 x--> 2007
217 --- 1792
- 217 --- 3581
- 217 --- 3582
+ 217 --- 2794
+ 217 x--> 2007
218 --- 1791
- 218 --- 3579
- 218 --- 3580
+ 218 --- 2793
+ 218 x--> 2007
219 --- 1790
- 219 --- 3577
- 219 --- 3578
+ 219 --- 2792
+ 219 x--> 2007
220 --- 1789
- 220 --- 3575
- 220 --- 3576
+ 220 --- 2791
+ 220 x--> 2007
221 --- 1788
- 221 --- 3573
- 221 --- 3574
+ 221 --- 2790
+ 221 x--> 2007
222 --- 1787
- 222 --- 3571
- 222 --- 3572
+ 222 --- 2789
+ 222 x--> 2007
223 --- 1786
- 223 --- 3569
- 223 --- 3570
+ 223 --- 2788
+ 223 x--> 2007
224 --- 1785
- 224 --- 3567
- 224 --- 3568
+ 224 --- 2787
+ 224 x--> 2007
225 --- 1784
- 225 --- 3565
- 225 --- 3566
+ 225 --- 2786
+ 225 x--> 2007
226 --- 1783
- 226 --- 3563
- 226 --- 3564
+ 226 --- 2785
+ 226 x--> 2007
227 --- 1782
- 227 --- 3561
- 227 --- 3562
+ 227 --- 2784
+ 227 x--> 2007
228 --- 1781
- 228 --- 3559
- 228 --- 3560
+ 228 --- 2783
+ 228 x--> 2007
229 --- 1780
- 229 --- 3557
- 229 --- 3558
+ 229 --- 2782
+ 229 x--> 2007
230 --- 1779
- 230 --- 3555
- 230 --- 3556
+ 230 --- 2781
+ 230 x--> 2007
231 --- 1778
- 231 --- 3553
- 231 --- 3554
+ 231 --- 2780
+ 231 x--> 2007
232 --- 1777
- 232 --- 3551
- 232 --- 3552
+ 232 --- 2779
+ 232 x--> 2007
233 --- 1776
- 233 --- 3549
- 233 --- 3550
+ 233 --- 2778
+ 233 x--> 2007
234 --- 1775
- 234 --- 3547
- 234 --- 3548
+ 234 --- 2777
+ 234 x--> 2007
235 --- 1774
- 235 --- 3545
- 235 --- 3546
+ 235 --- 2776
+ 235 x--> 2007
236 --- 1773
- 236 --- 3543
- 236 --- 3544
+ 236 --- 2775
+ 236 x--> 2007
237 --- 1772
- 237 --- 3541
- 237 --- 3542
+ 237 --- 2774
+ 237 x--> 2007
238 --- 1771
- 238 --- 3539
- 238 --- 3540
+ 238 --- 2773
+ 238 x--> 2007
239 --- 1770
- 239 --- 3537
- 239 --- 3538
+ 239 --- 2772
+ 239 x--> 2007
240 --- 1769
- 240 --- 3535
- 240 --- 3536
+ 240 --- 2771
+ 240 x--> 2007
241 --- 1768
- 241 --- 3533
- 241 --- 3534
+ 241 --- 2770
+ 241 x--> 2007
242 --- 1767
- 242 --- 3531
- 242 --- 3532
+ 242 --- 2769
+ 242 x--> 2007
243 --- 1766
- 243 --- 3529
- 243 --- 3530
+ 243 --- 2768
+ 243 x--> 2007
244 --- 1765
- 244 --- 3527
- 244 --- 3528
+ 244 --- 2767
+ 244 x--> 2007
245 --- 1764
- 245 --- 3525
- 245 --- 3526
+ 245 --- 2766
+ 245 x--> 2007
246 --- 1763
- 246 --- 3523
- 246 --- 3524
+ 246 --- 2765
+ 246 x--> 2007
247 --- 1762
- 247 --- 3521
- 247 --- 3522
+ 247 --- 2764
+ 247 x--> 2007
248 --- 1761
- 248 --- 3519
- 248 --- 3520
+ 248 --- 2763
+ 248 x--> 2007
249 --- 1760
- 249 --- 3517
- 249 --- 3518
+ 249 --- 2762
+ 249 x--> 2007
250 --- 1759
- 250 --- 3515
- 250 --- 3516
+ 250 --- 2761
+ 250 x--> 2007
251 --- 1758
- 251 --- 3513
- 251 --- 3514
+ 251 --- 2760
+ 251 x--> 2007
252 --- 1757
- 252 --- 3511
- 252 --- 3512
+ 252 --- 2759
+ 252 x--> 2007
253 --- 1756
- 253 --- 3509
- 253 --- 3510
+ 253 --- 2758
+ 253 x--> 2007
254 --- 1755
- 254 --- 3507
- 254 --- 3508
+ 254 --- 2757
+ 254 x--> 2007
255 --- 1754
- 255 --- 3505
- 255 --- 3506
+ 255 --- 2756
+ 255 x--> 2007
256 --- 1753
- 256 --- 3503
- 256 --- 3504
+ 256 --- 2755
+ 256 x--> 2007
257 --- 1752
- 257 --- 3501
- 257 --- 3502
+ 257 --- 2754
+ 257 x--> 2007
258 --- 1751
- 258 --- 3499
- 258 --- 3500
+ 258 --- 2753
+ 258 x--> 2007
259 --- 1750
- 259 --- 3497
- 259 --- 3498
+ 259 --- 2752
+ 259 x--> 2007
260 --- 1749
- 260 --- 3495
- 260 --- 3496
+ 260 --- 2751
+ 260 x--> 2007
261 --- 1748
- 261 --- 3493
- 261 --- 3494
+ 261 --- 2750
+ 261 x--> 2007
262 --- 1747
- 262 --- 3491
- 262 --- 3492
+ 262 --- 2749
+ 262 x--> 2007
263 --- 1746
- 263 --- 3489
- 263 --- 3490
+ 263 --- 2748
+ 263 x--> 2007
264 --- 1745
- 264 --- 3487
- 264 --- 3488
+ 264 --- 2747
+ 264 x--> 2007
265 --- 1744
- 265 --- 3485
- 265 --- 3486
+ 265 --- 2746
+ 265 x--> 2007
266 --- 1743
- 266 --- 3483
- 266 --- 3484
+ 266 --- 2745
+ 266 x--> 2007
267 --- 1742
- 267 --- 3481
- 267 --- 3482
+ 267 --- 2744
+ 267 x--> 2007
268 --- 1741
- 268 --- 3479
- 268 --- 3480
+ 268 --- 2743
+ 268 x--> 2007
269 --- 1740
- 269 --- 3477
- 269 --- 3478
+ 269 --- 2742
+ 269 x--> 2007
270 --- 1739
- 270 --- 3475
- 270 --- 3476
+ 270 --- 2741
+ 270 x--> 2007
271 --- 1738
- 271 --- 3473
- 271 --- 3474
+ 271 --- 2740
+ 271 x--> 2007
272 --- 1737
- 272 --- 3471
- 272 --- 3472
+ 272 --- 2739
+ 272 x--> 2007
273 --- 1736
- 273 --- 3469
- 273 --- 3470
+ 273 --- 2738
+ 273 x--> 2007
274 --- 1735
- 274 --- 3467
- 274 --- 3468
+ 274 --- 2737
+ 274 x--> 2007
275 --- 1734
- 275 --- 3465
- 275 --- 3466
+ 275 --- 2736
+ 275 x--> 2007
276 --- 1733
- 276 --- 3463
- 276 --- 3464
+ 276 --- 2735
+ 276 x--> 2007
277 --- 1732
- 277 --- 3461
- 277 --- 3462
+ 277 --- 2734
+ 277 x--> 2007
278 --- 1731
- 278 --- 3459
- 278 --- 3460
+ 278 --- 2733
+ 278 x--> 2007
279 --- 1730
- 279 --- 3457
- 279 --- 3458
+ 279 --- 2732
+ 279 x--> 2007
280 --- 1729
- 280 --- 3455
- 280 --- 3456
+ 280 --- 2731
+ 280 x--> 2007
281 --- 1728
- 281 --- 3453
- 281 --- 3454
+ 281 --- 2730
+ 281 x--> 2007
282 --- 1727
- 282 --- 3451
- 282 --- 3452
+ 282 --- 2729
+ 282 x--> 2007
283 --- 1726
- 283 --- 3449
- 283 --- 3450
+ 283 --- 2728
+ 283 x--> 2007
284 --- 1725
- 284 --- 3447
- 284 --- 3448
+ 284 --- 2727
+ 284 x--> 2007
285 --- 1724
- 285 --- 3445
- 285 --- 3446
+ 285 --- 2726
+ 285 x--> 2007
286 --- 1723
- 286 --- 3443
- 286 --- 3444
+ 286 --- 2725
+ 286 x--> 2007
287 --- 1722
- 287 --- 3441
- 287 --- 3442
+ 287 --- 2724
+ 287 x--> 2007
288 --- 1721
- 288 --- 3439
- 288 --- 3440
+ 288 --- 2723
+ 288 x--> 2007
289 --- 1720
- 289 --- 3437
- 289 --- 3438
+ 289 --- 2722
+ 289 x--> 2007
290 --- 1719
- 290 --- 3435
- 290 --- 3436
+ 290 --- 2721
+ 290 x--> 2007
291 --- 1718
- 291 --- 3433
- 291 --- 3434
+ 291 --- 2720
+ 291 x--> 2007
292 --- 1717
- 292 --- 3431
- 292 --- 3432
+ 292 --- 2719
+ 292 x--> 2007
293 --- 1716
- 293 --- 3429
- 293 --- 3430
+ 293 --- 2718
+ 293 x--> 2007
294 --- 1715
- 294 --- 3427
- 294 --- 3428
+ 294 --- 2717
+ 294 x--> 2007
295 --- 1714
- 295 --- 3425
- 295 --- 3426
+ 295 --- 2716
+ 295 x--> 2007
296 --- 1713
- 296 --- 3423
- 296 --- 3424
+ 296 --- 2715
+ 296 x--> 2007
297 --- 1712
- 297 --- 3421
- 297 --- 3422
+ 297 --- 2714
+ 297 x--> 2007
298 --- 1711
- 298 --- 3419
- 298 --- 3420
+ 298 --- 2713
+ 298 x--> 2007
299 --- 1710
- 299 --- 3417
- 299 --- 3418
+ 299 --- 2712
+ 299 x--> 2007
300 --- 1709
- 300 --- 3415
- 300 --- 3416
+ 300 --- 2711
+ 300 x--> 2007
301 --- 1708
- 301 --- 3413
- 301 --- 3414
+ 301 --- 2710
+ 301 x--> 2007
302 --- 1707
- 302 --- 3411
- 302 --- 3412
+ 302 --- 2709
+ 302 x--> 2007
303 --- 1706
- 303 --- 3409
- 303 --- 3410
+ 303 --- 2708
+ 303 x--> 2007
304 --- 1705
- 304 --- 3407
- 304 --- 3408
+ 304 --- 2707
+ 304 x--> 2007
305 --- 1704
- 305 --- 3405
- 305 --- 3406
+ 305 --- 2706
+ 305 x--> 2007
306 --- 1703
- 306 --- 3403
- 306 --- 3404
+ 306 --- 2705
+ 306 x--> 2007
307 --- 1702
- 307 --- 3401
- 307 --- 3402
+ 307 --- 2704
+ 307 x--> 2007
308 --- 1701
- 308 --- 3399
- 308 --- 3400
+ 308 --- 2703
+ 308 x--> 2007
309 --- 1700
- 309 --- 3397
- 309 --- 3398
+ 309 --- 2702
+ 309 x--> 2007
310 --- 1699
- 310 --- 3395
- 310 --- 3396
+ 310 --- 2701
+ 310 x--> 2007
311 --- 1698
- 311 --- 3393
- 311 --- 3394
+ 311 --- 2700
+ 311 x--> 2007
312 --- 1697
- 312 --- 3391
- 312 --- 3392
+ 312 --- 2699
+ 312 x--> 2007
313 --- 1696
- 313 --- 3389
- 313 --- 3390
+ 313 --- 2698
+ 313 x--> 2007
314 --- 1695
- 314 --- 3387
- 314 --- 3388
+ 314 --- 2697
+ 314 x--> 2007
315 --- 1694
- 315 --- 3385
- 315 --- 3386
+ 315 --- 2696
+ 315 x--> 2007
316 --- 1693
- 316 --- 3383
- 316 --- 3384
+ 316 --- 2695
+ 316 x--> 2007
317 --- 1692
- 317 --- 3381
- 317 --- 3382
+ 317 --- 2694
+ 317 x--> 2007
318 --- 1691
- 318 --- 3379
- 318 --- 3380
+ 318 --- 2693
+ 318 x--> 2007
319 --- 1690
- 319 --- 3377
- 319 --- 3378
+ 319 --- 2692
+ 319 x--> 2007
320 --- 1689
- 320 --- 3375
- 320 --- 3376
+ 320 --- 2691
+ 320 x--> 2007
321 --- 1688
- 321 --- 3373
- 321 --- 3374
+ 321 --- 2690
+ 321 x--> 2007
322 --- 1687
- 322 --- 3371
- 322 --- 3372
+ 322 --- 2689
+ 322 x--> 2007
323 --- 1686
- 323 --- 3369
- 323 --- 3370
+ 323 --- 2688
+ 323 x--> 2007
324 --- 1685
- 324 --- 3367
- 324 --- 3368
+ 324 --- 2687
+ 324 x--> 2007
325 --- 1684
- 325 --- 3365
- 325 --- 3366
+ 325 --- 2686
+ 325 x--> 2007
326 --- 1683
- 326 --- 3363
- 326 --- 3364
+ 326 --- 2685
+ 326 x--> 2007
327 --- 1682
- 327 --- 3361
- 327 --- 3362
+ 327 --- 2684
+ 327 x--> 2007
328 --- 1681
- 328 --- 3359
- 328 --- 3360
+ 328 --- 2683
+ 328 x--> 2007
329 --- 1680
- 329 --- 3357
- 329 --- 3358
+ 329 --- 2682
+ 329 x--> 2007
330 --- 1679
- 330 --- 3355
- 330 --- 3356
+ 330 --- 2681
+ 330 x--> 2007
331 --- 1678
- 331 --- 3353
- 331 --- 3354
+ 331 --- 2680
+ 331 x--> 2007
332 --- 1677
- 332 --- 3351
- 332 --- 3352
+ 332 --- 2679
+ 332 x--> 2007
333 --- 1676
- 333 --- 3349
- 333 --- 3350
+ 333 --- 2678
+ 333 x--> 2007
334 --- 1675
- 334 --- 3347
- 334 --- 3348
+ 334 --- 2677
+ 334 x--> 2007
335 --- 1674
- 335 --- 3345
- 335 --- 3346
+ 335 --- 2676
+ 335 x--> 2007
336 --- 1673
- 336 --- 3343
- 336 --- 3344
+ 336 --- 2675
+ 336 x--> 2007
337 --- 1672
- 337 --- 3341
- 337 --- 3342
+ 337 --- 2674
+ 337 x--> 2007
338 --- 1671
- 338 --- 3339
- 338 --- 3340
+ 338 --- 2673
+ 338 x--> 2007
339 --- 1670
- 339 --- 3337
- 339 --- 3338
+ 339 --- 2672
+ 339 x--> 2007
340 --- 1669
- 340 --- 3335
- 340 --- 3336
+ 340 --- 2671
+ 340 x--> 2007
341 --- 1668
- 341 --- 3333
- 341 --- 3334
+ 341 --- 2670
+ 341 x--> 2007
342 --- 1667
- 342 --- 3331
- 342 --- 3332
+ 342 --- 2669
+ 342 x--> 2007
343 --- 1666
- 343 --- 3329
- 343 --- 3330
+ 343 --- 2668
+ 343 x--> 2007
344 --- 1665
- 344 --- 3327
- 344 --- 3328
+ 344 --- 2667
+ 344 x--> 2007
345 --- 1664
- 345 --- 3325
- 345 --- 3326
+ 345 --- 2666
+ 345 x--> 2007
346 --- 1663
- 346 --- 3323
- 346 --- 3324
+ 346 --- 2665
+ 346 x--> 2007
347 --- 1662
- 347 --- 3321
- 347 --- 3322
+ 347 --- 2664
+ 347 x--> 2007
348 --- 1661
- 348 --- 3319
- 348 --- 3320
+ 348 --- 2663
+ 348 x--> 2007
349 --- 1660
- 349 --- 3317
- 349 --- 3318
+ 349 --- 2662
+ 349 x--> 2007
350 --- 1659
- 350 --- 3315
- 350 --- 3316
+ 350 --- 2661
+ 350 x--> 2007
351 --- 1658
- 351 --- 3313
- 351 --- 3314
+ 351 --- 2660
+ 351 x--> 2007
352 --- 1657
- 352 --- 3311
- 352 --- 3312
+ 352 --- 2659
+ 352 x--> 2007
353 --- 1656
- 353 --- 3309
- 353 --- 3310
+ 353 --- 2658
+ 353 x--> 2007
354 --- 1655
- 354 --- 3307
- 354 --- 3308
+ 354 --- 2657
+ 354 x--> 2007
355 --- 1654
- 355 --- 3305
- 355 --- 3306
+ 355 --- 2656
+ 355 x--> 2007
356 --- 1653
- 356 --- 3303
- 356 --- 3304
+ 356 --- 2655
+ 356 x--> 2007
357 --- 1652
- 357 --- 3301
- 357 --- 3302
+ 357 --- 2654
+ 357 x--> 2007
358 --- 1651
- 358 --- 3299
- 358 --- 3300
+ 358 --- 2653
+ 358 x--> 2007
359 --- 1650
- 359 --- 3297
- 359 --- 3298
+ 359 --- 2652
+ 359 x--> 2007
360 --- 1649
- 360 --- 3295
- 360 --- 3296
+ 360 --- 2651
+ 360 x--> 2007
361 --- 1648
- 361 --- 3293
- 361 --- 3294
+ 361 --- 2650
+ 361 x--> 2007
362 --- 1647
- 362 --- 3291
- 362 --- 3292
+ 362 --- 2649
+ 362 x--> 2007
363 --- 1646
- 363 --- 3289
- 363 --- 3290
+ 363 --- 2648
+ 363 x--> 2007
364 --- 1645
- 364 --- 3287
- 364 --- 3288
+ 364 --- 2647
+ 364 x--> 2007
365 --- 1644
- 365 --- 3285
- 365 --- 3286
+ 365 --- 2646
+ 365 x--> 2007
366 --- 1643
- 366 --- 3283
- 366 --- 3284
+ 366 --- 2645
+ 366 x--> 2007
367 --- 1642
- 367 --- 3281
- 367 --- 3282
+ 367 --- 2644
+ 367 x--> 2007
368 --- 1641
- 368 --- 3279
- 368 --- 3280
+ 368 --- 2643
+ 368 x--> 2007
369 --- 1640
- 369 --- 3277
- 369 --- 3278
+ 369 --- 2642
+ 369 x--> 2007
370 --- 1639
- 370 --- 3275
- 370 --- 3276
+ 370 --- 2641
+ 370 x--> 2007
371 --- 1638
- 371 --- 3273
- 371 --- 3274
+ 371 --- 2640
+ 371 x--> 2007
372 --- 1637
- 372 --- 3271
- 372 --- 3272
+ 372 --- 2639
+ 372 x--> 2007
373 --- 1636
- 373 --- 3269
- 373 --- 3270
+ 373 --- 2638
+ 373 x--> 2007
374 --- 1635
- 374 --- 3267
- 374 --- 3268
+ 374 --- 2637
+ 374 x--> 2007
375 --- 1634
- 375 --- 3265
- 375 --- 3266
+ 375 --- 2636
+ 375 x--> 2007
376 --- 1633
- 376 --- 3263
- 376 --- 3264
+ 376 --- 2635
+ 376 x--> 2007
377 --- 1632
- 377 --- 3261
- 377 --- 3262
+ 377 --- 2634
+ 377 x--> 2007
378 --- 1631
- 378 --- 3259
- 378 --- 3260
+ 378 --- 2633
+ 378 x--> 2007
379 --- 1630
- 379 --- 3257
- 379 --- 3258
+ 379 --- 2632
+ 379 x--> 2007
380 --- 1629
- 380 --- 3255
- 380 --- 3256
+ 380 --- 2631
+ 380 x--> 2007
381 --- 1628
- 381 --- 3253
- 381 --- 3254
+ 381 --- 2630
+ 381 x--> 2007
382 --- 1627
- 382 --- 3251
- 382 --- 3252
+ 382 --- 2629
+ 382 x--> 2007
383 --- 1626
- 383 --- 3249
- 383 --- 3250
+ 383 --- 2628
+ 383 x--> 2007
384 --- 1625
- 384 --- 3247
- 384 --- 3248
+ 384 --- 2627
+ 384 x--> 2007
385 --- 1624
- 385 --- 3245
- 385 --- 3246
+ 385 --- 2626
+ 385 x--> 2007
386 --- 1623
- 386 --- 3243
- 386 --- 3244
+ 386 --- 2625
+ 386 x--> 2007
387 --- 1622
- 387 --- 3241
- 387 --- 3242
+ 387 --- 2624
+ 387 x--> 2007
388 --- 1621
- 388 --- 3239
- 388 --- 3240
+ 388 --- 2623
+ 388 x--> 2007
389 --- 1620
- 389 --- 3237
- 389 --- 3238
+ 389 --- 2622
+ 389 x--> 2007
390 --- 1619
- 390 --- 3235
- 390 --- 3236
+ 390 --- 2621
+ 390 x--> 2007
391 --- 1618
- 391 --- 3233
- 391 --- 3234
+ 391 --- 2620
+ 391 x--> 2007
392 --- 1617
- 392 --- 3231
- 392 --- 3232
+ 392 --- 2619
+ 392 x--> 2007
393 --- 1616
- 393 --- 3229
- 393 --- 3230
+ 393 --- 2618
+ 393 x--> 2007
394 --- 1615
- 394 --- 3227
- 394 --- 3228
+ 394 --- 2617
+ 394 x--> 2007
395 --- 1614
- 395 --- 3225
- 395 --- 3226
+ 395 --- 2616
+ 395 x--> 2007
396 --- 1613
- 396 --- 3223
- 396 --- 3224
+ 396 --- 2615
+ 396 x--> 2007
397 --- 1612
- 397 --- 3221
- 397 --- 3222
+ 397 --- 2614
+ 397 x--> 2007
398 --- 1611
- 398 --- 3219
- 398 --- 3220
+ 398 --- 2613
+ 398 x--> 2007
399 --- 1610
- 399 --- 3217
- 399 --- 3218
+ 399 --- 2612
+ 399 x--> 2007
400 --- 1609
- 400 --- 3215
- 400 --- 3216
+ 400 --- 2611
+ 400 x--> 2007
401 --- 1608
- 401 --- 3213
- 401 --- 3214
+ 401 --- 2610
+ 401 x--> 2007
402 --- 1607
- 402 --- 3211
- 402 --- 3212
+ 402 --- 2609
+ 402 x--> 2007
403 --- 1606
- 403 --- 3209
- 403 --- 3210
+ 403 --- 2608
+ 403 x--> 2007
404 --- 1605
- 404 --- 3207
- 404 --- 3208
+ 404 --- 2607
+ 404 x--> 2007
405 --- 1604
- 405 --- 3205
- 405 --- 3206
+ 405 --- 2606
+ 405 x--> 2007
406 --- 1603
- 406 --- 3203
- 406 --- 3204
+ 406 --- 2605
+ 406 x--> 2007
407 --- 1602
- 407 --- 3201
- 407 --- 3202
+ 407 --- 2604
+ 407 x--> 2007
408 --- 1601
- 408 --- 3199
- 408 --- 3200
+ 408 --- 2603
+ 408 x--> 2007
409 --- 1600
- 409 --- 3197
- 409 --- 3198
+ 409 --- 2602
+ 409 x--> 2007
410 --- 1599
- 410 --- 3195
- 410 --- 3196
+ 410 --- 2601
+ 410 x--> 2007
411 --- 1598
- 411 --- 3193
- 411 --- 3194
+ 411 --- 2600
+ 411 x--> 2007
412 --- 1597
- 412 --- 3191
- 412 --- 3192
+ 412 --- 2599
+ 412 x--> 2007
413 --- 1596
- 413 --- 3189
- 413 --- 3190
+ 413 --- 2598
+ 413 x--> 2007
414 --- 1595
- 414 --- 3187
- 414 --- 3188
+ 414 --- 2597
+ 414 x--> 2007
415 --- 1594
- 415 --- 3185
- 415 --- 3186
+ 415 --- 2596
+ 415 x--> 2007
416 --- 1593
- 416 --- 3183
- 416 --- 3184
+ 416 --- 2595
+ 416 x--> 2007
417 --- 1592
- 417 --- 3181
- 417 --- 3182
+ 417 --- 2594
+ 417 x--> 2007
418 --- 1591
- 418 --- 3179
- 418 --- 3180
+ 418 --- 2593
+ 418 x--> 2007
419 --- 1590
- 419 --- 3177
- 419 --- 3178
+ 419 --- 2592
+ 419 x--> 2007
420 --- 1589
- 420 --- 3175
- 420 --- 3176
+ 420 --- 2591
+ 420 x--> 2007
421 --- 1588
- 421 --- 3173
- 421 --- 3174
+ 421 --- 2590
+ 421 x--> 2007
422 --- 1587
- 422 --- 3171
- 422 --- 3172
+ 422 --- 2589
+ 422 x--> 2007
423 --- 1586
- 423 --- 3169
- 423 --- 3170
+ 423 --- 2588
+ 423 x--> 2007
424 --- 1585
- 424 --- 3167
- 424 --- 3168
+ 424 --- 2587
+ 424 x--> 2007
425 --- 1584
- 425 --- 3165
- 425 --- 3166
+ 425 --- 2586
+ 425 x--> 2007
426 --- 1583
- 426 --- 3163
- 426 --- 3164
+ 426 --- 2585
+ 426 x--> 2007
427 --- 1582
- 427 --- 3161
- 427 --- 3162
+ 427 --- 2584
+ 427 x--> 2007
428 --- 1581
- 428 --- 3159
- 428 --- 3160
+ 428 --- 2583
+ 428 x--> 2007
429 --- 1580
- 429 --- 3157
- 429 --- 3158
+ 429 --- 2582
+ 429 x--> 2007
430 --- 1579
- 430 --- 3155
- 430 --- 3156
+ 430 --- 2581
+ 430 x--> 2007
431 --- 1578
- 431 --- 3153
- 431 --- 3154
+ 431 --- 2580
+ 431 x--> 2007
432 --- 1577
- 432 --- 3151
- 432 --- 3152
+ 432 --- 2579
+ 432 x--> 2007
433 --- 1576
- 433 --- 3149
- 433 --- 3150
+ 433 --- 2578
+ 433 x--> 2007
434 --- 1575
- 434 --- 3147
- 434 --- 3148
+ 434 --- 2577
+ 434 x--> 2007
435 --- 1574
- 435 --- 3145
- 435 --- 3146
+ 435 --- 2576
+ 435 x--> 2007
436 --- 1573
- 436 --- 3143
- 436 --- 3144
+ 436 --- 2575
+ 436 x--> 2007
437 --- 1572
- 437 --- 3141
- 437 --- 3142
+ 437 --- 2574
+ 437 x--> 2007
438 --- 1571
- 438 --- 3139
- 438 --- 3140
+ 438 --- 2573
+ 438 x--> 2007
439 --- 1570
- 439 --- 3137
- 439 --- 3138
+ 439 --- 2572
+ 439 x--> 2007
440 --- 1569
- 440 --- 3135
- 440 --- 3136
+ 440 --- 2571
+ 440 x--> 2007
441 --- 1568
- 441 --- 3133
- 441 --- 3134
+ 441 --- 2570
+ 441 x--> 2007
442 --- 1567
- 442 --- 3131
- 442 --- 3132
+ 442 --- 2569
+ 442 x--> 2007
443 --- 1566
- 443 --- 3129
- 443 --- 3130
+ 443 --- 2568
+ 443 x--> 2007
444 --- 1565
- 444 --- 3127
- 444 --- 3128
+ 444 --- 2567
+ 444 x--> 2007
445 --- 1564
- 445 --- 3125
- 445 --- 3126
+ 445 --- 2566
+ 445 x--> 2007
446 --- 1563
- 446 --- 3123
- 446 --- 3124
+ 446 --- 2565
+ 446 x--> 2007
447 --- 1562
- 447 --- 3121
- 447 --- 3122
+ 447 --- 2564
+ 447 x--> 2007
448 --- 1561
- 448 --- 3119
- 448 --- 3120
+ 448 --- 2563
+ 448 x--> 2007
449 --- 1560
- 449 --- 3117
- 449 --- 3118
+ 449 --- 2562
+ 449 x--> 2007
450 --- 1559
- 450 --- 3115
- 450 --- 3116
+ 450 --- 2561
+ 450 x--> 2007
451 --- 1558
- 451 --- 3113
- 451 --- 3114
+ 451 --- 2560
+ 451 x--> 2007
452 --- 1557
- 452 --- 3111
- 452 --- 3112
+ 452 --- 2559
+ 452 x--> 2007
453 --- 1556
- 453 --- 3109
- 453 --- 3110
+ 453 --- 2558
+ 453 x--> 2007
454 --- 1555
- 454 --- 3107
- 454 --- 3108
+ 454 --- 2557
+ 454 x--> 2007
455 --- 1554
- 455 --- 3105
- 455 --- 3106
+ 455 --- 2556
+ 455 x--> 2007
456 --- 1553
- 456 --- 3103
- 456 --- 3104
+ 456 --- 2555
+ 456 x--> 2007
457 --- 1552
- 457 --- 3101
- 457 --- 3102
+ 457 --- 2554
+ 457 x--> 2007
458 --- 1551
- 458 --- 3099
- 458 --- 3100
+ 458 --- 2553
+ 458 x--> 2007
459 --- 1550
- 459 --- 3097
- 459 --- 3098
+ 459 --- 2552
+ 459 x--> 2007
460 --- 1549
- 460 --- 3095
- 460 --- 3096
+ 460 --- 2551
+ 460 x--> 2007
461 --- 1548
- 461 --- 3093
- 461 --- 3094
+ 461 --- 2550
+ 461 x--> 2007
462 --- 1547
- 462 --- 3091
- 462 --- 3092
+ 462 --- 2549
+ 462 x--> 2007
463 --- 1546
- 463 --- 3089
- 463 --- 3090
+ 463 --- 2548
+ 463 x--> 2007
464 --- 1545
- 464 --- 3087
- 464 --- 3088
+ 464 --- 2547
+ 464 x--> 2007
465 --- 1544
- 465 --- 3085
- 465 --- 3086
+ 465 --- 2546
+ 465 x--> 2007
466 --- 1543
- 466 --- 3083
- 466 --- 3084
+ 466 --- 2545
+ 466 x--> 2007
467 --- 1542
- 467 --- 3081
- 467 --- 3082
+ 467 --- 2544
+ 467 x--> 2007
468 --- 1541
- 468 --- 3079
- 468 --- 3080
+ 468 --- 2543
+ 468 x--> 2007
469 --- 1540
- 469 --- 3077
- 469 --- 3078
+ 469 --- 2542
+ 469 x--> 2007
470 --- 1539
- 470 --- 3075
- 470 --- 3076
+ 470 --- 2541
+ 470 x--> 2007
471 --- 1538
- 471 --- 3073
- 471 --- 3074
+ 471 --- 2540
+ 471 x--> 2007
472 --- 1537
- 472 --- 3071
- 472 --- 3072
+ 472 --- 2539
+ 472 x--> 2007
473 --- 1536
- 473 --- 3069
- 473 --- 3070
+ 473 --- 2538
+ 473 x--> 2007
474 --- 1535
- 474 --- 3067
- 474 --- 3068
+ 474 --- 2537
+ 474 x--> 2007
475 --- 1534
- 475 --- 3065
- 475 --- 3066
+ 475 --- 2536
+ 475 x--> 2007
476 --- 1533
- 476 --- 3063
- 476 --- 3064
+ 476 --- 2535
+ 476 x--> 2007
477 --- 1532
- 477 --- 3061
- 477 --- 3062
+ 477 --- 2534
+ 477 x--> 2007
478 --- 1531
- 478 --- 3059
- 478 --- 3060
+ 478 --- 2533
+ 478 x--> 2007
479 --- 1530
- 479 --- 3057
- 479 --- 3058
+ 479 --- 2532
+ 479 x--> 2007
480 --- 1529
- 480 --- 3055
- 480 --- 3056
+ 480 --- 2531
+ 480 x--> 2007
481 --- 1528
- 481 --- 3053
- 481 --- 3054
+ 481 --- 2530
+ 481 x--> 2007
482 --- 1527
- 482 --- 3051
- 482 --- 3052
+ 482 --- 2529
+ 482 x--> 2007
483 --- 1526
- 483 --- 3049
- 483 --- 3050
+ 483 --- 2528
+ 483 x--> 2007
484 --- 1525
- 484 --- 3047
- 484 --- 3048
+ 484 --- 2527
+ 484 x--> 2007
485 --- 1524
- 485 --- 3045
- 485 --- 3046
+ 485 --- 2526
+ 485 x--> 2007
486 --- 1523
- 486 --- 3043
- 486 --- 3044
+ 486 --- 2525
+ 486 x--> 2007
487 --- 1522
- 487 --- 3041
- 487 --- 3042
+ 487 --- 2524
+ 487 x--> 2007
488 --- 1521
- 488 --- 3039
- 488 --- 3040
+ 488 --- 2523
+ 488 x--> 2007
489 --- 1520
- 489 --- 3037
- 489 --- 3038
+ 489 --- 2522
+ 489 x--> 2007
490 --- 1519
- 490 --- 3035
- 490 --- 3036
+ 490 --- 2521
+ 490 x--> 2007
491 --- 1518
- 491 --- 3033
- 491 --- 3034
+ 491 --- 2520
+ 491 x--> 2007
492 --- 1517
- 492 --- 3031
- 492 --- 3032
+ 492 --- 2519
+ 492 x--> 2007
493 --- 1516
- 493 --- 3029
- 493 --- 3030
+ 493 --- 2518
+ 493 x--> 2007
494 --- 1515
- 494 --- 3027
- 494 --- 3028
+ 494 --- 2517
+ 494 x--> 2007
495 --- 1514
- 495 --- 3025
- 495 --- 3026
+ 495 --- 2516
+ 495 x--> 2007
496 --- 1513
- 496 --- 3023
- 496 --- 3024
+ 496 --- 2515
+ 496 x--> 2007
497 --- 1512
- 497 --- 3021
- 497 --- 3022
+ 497 --- 2514
+ 497 x--> 2007
498 --- 1511
- 498 --- 3019
- 498 --- 3020
+ 498 --- 2513
+ 498 x--> 2007
499 --- 1510
- 499 --- 3017
- 499 --- 3018
+ 499 --- 2512
+ 499 x--> 2007
500 --- 1509
- 500 --- 3015
- 500 --- 3016
+ 500 --- 2511
+ 500 x--> 2007
501 --- 1508
- 501 --- 3013
- 501 --- 3014
+ 501 --- 2510
+ 501 x--> 2007
502 --- 1507
- 502 --- 3011
- 502 --- 3012
+ 502 --- 2509
+ 502 x--> 2007
503 --- 1506
- 503 --- 3009
- 503 --- 3010
+ 503 --- 2508
+ 503 x--> 2007
504 --- 1505
- 504 --- 3007
- 504 --- 3008
+ 504 --- 2507
+ 504 x--> 2007
505 --- 1504
- 505 --- 3005
- 505 --- 3006
+ 505 --- 2506
+ 505 x--> 2007
506 --- 1503
- 506 --- 3003
- 506 --- 3004
+ 506 --- 2505
+ 506 x--> 2007
507 --- 1502
- 507 --- 3001
- 507 --- 3002
+ 507 --- 2504
+ 507 x--> 2007
508 --- 1501
- 508 --- 2999
- 508 --- 3000
+ 508 --- 2503
+ 508 x--> 2007
509 --- 1500
- 509 --- 2997
- 509 --- 2998
+ 509 --- 2502
+ 509 x--> 2007
510 --- 1499
- 510 --- 2995
- 510 --- 2996
+ 510 --- 2501
+ 510 x--> 2007
511 --- 1498
- 511 --- 2993
- 511 --- 2994
+ 511 --- 2500
+ 511 x--> 2007
512 --- 1497
- 512 --- 2991
- 512 --- 2992
+ 512 --- 2499
+ 512 x--> 2007
513 --- 1496
- 513 --- 2989
- 513 --- 2990
+ 513 --- 2498
+ 513 x--> 2007
514 --- 1495
- 514 --- 2987
- 514 --- 2988
+ 514 --- 2497
+ 514 x--> 2007
515 --- 1494
- 515 --- 2985
- 515 --- 2986
+ 515 --- 2496
+ 515 x--> 2007
516 --- 1493
- 516 --- 2983
- 516 --- 2984
+ 516 --- 2495
+ 516 x--> 2007
517 --- 1492
- 517 --- 2981
- 517 --- 2982
+ 517 --- 2494
+ 517 x--> 2007
518 --- 1491
- 518 --- 2979
- 518 --- 2980
+ 518 --- 2493
+ 518 x--> 2007
519 --- 1490
- 519 --- 2977
- 519 --- 2978
+ 519 --- 2492
+ 519 x--> 2007
520 --- 1489
- 520 --- 2975
- 520 --- 2976
+ 520 --- 2491
+ 520 x--> 2007
521 --- 1488
- 521 --- 2973
- 521 --- 2974
+ 521 --- 2490
+ 521 x--> 2007
522 --- 1487
- 522 --- 2971
- 522 --- 2972
+ 522 --- 2489
+ 522 x--> 2007
523 --- 1486
- 523 --- 2969
- 523 --- 2970
+ 523 --- 2488
+ 523 x--> 2007
524 --- 1485
- 524 --- 2967
- 524 --- 2968
+ 524 --- 2487
+ 524 x--> 2007
525 --- 1484
- 525 --- 2965
- 525 --- 2966
+ 525 --- 2486
+ 525 x--> 2007
526 --- 1483
- 526 --- 2963
- 526 --- 2964
+ 526 --- 2485
+ 526 x--> 2007
527 --- 1482
- 527 --- 2961
- 527 --- 2962
+ 527 --- 2484
+ 527 x--> 2007
528 --- 1481
- 528 --- 2959
- 528 --- 2960
+ 528 --- 2483
+ 528 x--> 2007
529 --- 1480
- 529 --- 2957
- 529 --- 2958
+ 529 --- 2482
+ 529 x--> 2007
530 --- 1479
- 530 --- 2955
- 530 --- 2956
+ 530 --- 2481
+ 530 x--> 2007
531 --- 1478
- 531 --- 2953
- 531 --- 2954
+ 531 --- 2480
+ 531 x--> 2007
532 --- 1477
- 532 --- 2951
- 532 --- 2952
+ 532 --- 2479
+ 532 x--> 2007
533 --- 1476
- 533 --- 2949
- 533 --- 2950
+ 533 --- 2478
+ 533 x--> 2007
534 --- 1475
- 534 --- 2947
- 534 --- 2948
+ 534 --- 2477
+ 534 x--> 2007
535 --- 1474
- 535 --- 2945
- 535 --- 2946
+ 535 --- 2476
+ 535 x--> 2007
536 --- 1473
- 536 --- 2943
- 536 --- 2944
+ 536 --- 2475
+ 536 x--> 2007
537 --- 1472
- 537 --- 2941
- 537 --- 2942
+ 537 --- 2474
+ 537 x--> 2007
538 --- 1471
- 538 --- 2939
- 538 --- 2940
+ 538 --- 2473
+ 538 x--> 2007
539 --- 1470
- 539 --- 2937
- 539 --- 2938
+ 539 --- 2472
+ 539 x--> 2007
540 --- 1469
- 540 --- 2935
- 540 --- 2936
+ 540 --- 2471
+ 540 x--> 2007
541 --- 1468
- 541 --- 2933
- 541 --- 2934
+ 541 --- 2470
+ 541 x--> 2007
542 --- 1467
- 542 --- 2931
- 542 --- 2932
+ 542 --- 2469
+ 542 x--> 2007
543 --- 1466
- 543 --- 2929
- 543 --- 2930
+ 543 --- 2468
+ 543 x--> 2007
544 --- 1465
- 544 --- 2927
- 544 --- 2928
+ 544 --- 2467
+ 544 x--> 2007
545 --- 1464
- 545 --- 2925
- 545 --- 2926
+ 545 --- 2466
+ 545 x--> 2007
546 --- 1463
- 546 --- 2923
- 546 --- 2924
+ 546 --- 2465
+ 546 x--> 2007
547 --- 1462
- 547 --- 2921
- 547 --- 2922
+ 547 --- 2464
+ 547 x--> 2007
548 --- 1461
- 548 --- 2919
- 548 --- 2920
+ 548 --- 2463
+ 548 x--> 2007
549 --- 1460
- 549 --- 2917
- 549 --- 2918
+ 549 --- 2462
+ 549 x--> 2007
550 --- 1459
- 550 --- 2915
- 550 --- 2916
+ 550 --- 2461
+ 550 x--> 2007
551 --- 1458
- 551 --- 2913
- 551 --- 2914
+ 551 --- 2460
+ 551 x--> 2007
552 --- 1457
- 552 --- 2911
- 552 --- 2912
+ 552 --- 2459
+ 552 x--> 2007
553 --- 1456
- 553 --- 2909
- 553 --- 2910
+ 553 --- 2458
+ 553 x--> 2007
554 --- 1455
- 554 --- 2907
- 554 --- 2908
+ 554 --- 2457
+ 554 x--> 2007
555 --- 1454
- 555 --- 2905
- 555 --- 2906
+ 555 --- 2456
+ 555 x--> 2007
556 --- 1453
- 556 --- 2903
- 556 --- 2904
+ 556 --- 2455
+ 556 x--> 2007
557 --- 1452
- 557 --- 2901
- 557 --- 2902
+ 557 --- 2454
+ 557 x--> 2007
558 --- 1451
- 558 --- 2899
- 558 --- 2900
+ 558 --- 2453
+ 558 x--> 2007
559 --- 1450
- 559 --- 2897
- 559 --- 2898
+ 559 --- 2452
+ 559 x--> 2007
560 --- 1449
- 560 --- 2895
- 560 --- 2896
+ 560 --- 2451
+ 560 x--> 2007
561 --- 1448
- 561 --- 2893
- 561 --- 2894
+ 561 --- 2450
+ 561 x--> 2007
562 --- 1447
- 562 --- 2891
- 562 --- 2892
+ 562 --- 2449
+ 562 x--> 2007
563 --- 1446
- 563 --- 2889
- 563 --- 2890
+ 563 --- 2448
+ 563 x--> 2007
564 --- 1445
- 564 --- 2887
- 564 --- 2888
+ 564 --- 2447
+ 564 x--> 2007
565 --- 1444
- 565 --- 2885
- 565 --- 2886
+ 565 --- 2446
+ 565 x--> 2007
566 --- 1443
- 566 --- 2883
- 566 --- 2884
+ 566 --- 2445
+ 566 x--> 2007
567 --- 1442
- 567 --- 2881
- 567 --- 2882
+ 567 --- 2444
+ 567 x--> 2007
568 --- 1441
- 568 --- 2879
- 568 --- 2880
+ 568 --- 2443
+ 568 x--> 2007
569 --- 1440
- 569 --- 2877
- 569 --- 2878
+ 569 --- 2442
+ 569 x--> 2007
570 --- 1439
- 570 --- 2875
- 570 --- 2876
+ 570 --- 2441
+ 570 x--> 2007
571 --- 1438
- 571 --- 2873
- 571 --- 2874
+ 571 --- 2440
+ 571 x--> 2007
572 --- 1437
- 572 --- 2871
- 572 --- 2872
+ 572 --- 2439
+ 572 x--> 2007
573 --- 1436
- 573 --- 2869
- 573 --- 2870
+ 573 --- 2438
+ 573 x--> 2007
574 --- 1435
- 574 --- 2867
- 574 --- 2868
+ 574 --- 2437
+ 574 x--> 2007
575 --- 1434
- 575 --- 2865
- 575 --- 2866
+ 575 --- 2436
+ 575 x--> 2007
576 --- 1433
- 576 --- 2863
- 576 --- 2864
+ 576 --- 2435
+ 576 x--> 2007
577 --- 1432
- 577 --- 2861
- 577 --- 2862
+ 577 --- 2434
+ 577 x--> 2007
578 --- 1431
- 578 --- 2859
- 578 --- 2860
+ 578 --- 2433
+ 578 x--> 2007
579 --- 1430
- 579 --- 2857
- 579 --- 2858
+ 579 --- 2432
+ 579 x--> 2007
580 --- 1429
- 580 --- 2855
- 580 --- 2856
+ 580 --- 2431
+ 580 x--> 2007
581 --- 1428
- 581 --- 2853
- 581 --- 2854
+ 581 --- 2430
+ 581 x--> 2007
582 --- 1427
- 582 --- 2851
- 582 --- 2852
+ 582 --- 2429
+ 582 x--> 2007
583 --- 1426
- 583 --- 2849
- 583 --- 2850
+ 583 --- 2428
+ 583 x--> 2007
584 --- 1425
- 584 --- 2847
- 584 --- 2848
+ 584 --- 2427
+ 584 x--> 2007
585 --- 1424
- 585 --- 2845
- 585 --- 2846
+ 585 --- 2426
+ 585 x--> 2007
586 --- 1423
- 586 --- 2843
- 586 --- 2844
+ 586 --- 2425
+ 586 x--> 2007
587 --- 1422
- 587 --- 2841
- 587 --- 2842
+ 587 --- 2424
+ 587 x--> 2007
588 --- 1421
- 588 --- 2839
- 588 --- 2840
+ 588 --- 2423
+ 588 x--> 2007
589 --- 1420
- 589 --- 2837
- 589 --- 2838
+ 589 --- 2422
+ 589 x--> 2007
590 --- 1419
- 590 --- 2835
- 590 --- 2836
+ 590 --- 2421
+ 590 x--> 2007
591 --- 1418
- 591 --- 2833
- 591 --- 2834
+ 591 --- 2420
+ 591 x--> 2007
592 --- 1417
- 592 --- 2831
- 592 --- 2832
+ 592 --- 2419
+ 592 x--> 2007
593 --- 1416
- 593 --- 2829
- 593 --- 2830
+ 593 --- 2418
+ 593 x--> 2007
594 --- 1415
- 594 --- 2827
- 594 --- 2828
+ 594 --- 2417
+ 594 x--> 2007
595 --- 1414
- 595 --- 2825
- 595 --- 2826
+ 595 --- 2416
+ 595 x--> 2007
596 --- 1413
- 596 --- 2823
- 596 --- 2824
+ 596 --- 2415
+ 596 x--> 2007
597 --- 1412
- 597 --- 2821
- 597 --- 2822
+ 597 --- 2414
+ 597 x--> 2007
598 --- 1411
- 598 --- 2819
- 598 --- 2820
+ 598 --- 2413
+ 598 x--> 2007
599 --- 1410
- 599 --- 2817
- 599 --- 2818
+ 599 --- 2412
+ 599 x--> 2007
600 --- 1409
- 600 --- 2815
- 600 --- 2816
+ 600 --- 2411
+ 600 x--> 2007
601 --- 1408
- 601 --- 2813
- 601 --- 2814
+ 601 --- 2410
+ 601 x--> 2007
602 --- 1407
- 602 --- 2811
- 602 --- 2812
+ 602 --- 2409
+ 602 x--> 2007
603 --- 1406
- 603 --- 2809
- 603 --- 2810
+ 603 --- 2408
+ 603 x--> 2007
604 --- 1405
- 604 --- 2807
- 604 --- 2808
+ 604 --- 2407
+ 604 x--> 2007
605 --- 1404
- 605 --- 2805
- 605 --- 2806
+ 605 --- 2406
+ 605 x--> 2007
606 --- 1403
- 606 --- 2803
- 606 --- 2804
+ 606 --- 2405
+ 606 x--> 2007
607 --- 1402
- 607 --- 2801
- 607 --- 2802
+ 607 --- 2404
+ 607 x--> 2007
608 --- 1401
- 608 --- 2799
- 608 --- 2800
+ 608 --- 2403
+ 608 x--> 2007
609 --- 1400
- 609 --- 2797
- 609 --- 2798
+ 609 --- 2402
+ 609 x--> 2007
610 --- 1399
- 610 --- 2795
- 610 --- 2796
+ 610 --- 2401
+ 610 x--> 2007
611 --- 1398
- 611 --- 2793
- 611 --- 2794
+ 611 --- 2400
+ 611 x--> 2007
612 --- 1397
- 612 --- 2791
- 612 --- 2792
+ 612 --- 2399
+ 612 x--> 2007
613 --- 1396
- 613 --- 2789
- 613 --- 2790
+ 613 --- 2398
+ 613 x--> 2007
614 --- 1395
- 614 --- 2787
- 614 --- 2788
+ 614 --- 2397
+ 614 x--> 2007
615 --- 1394
- 615 --- 2785
- 615 --- 2786
+ 615 --- 2396
+ 615 x--> 2007
616 --- 1393
- 616 --- 2783
- 616 --- 2784
+ 616 --- 2395
+ 616 x--> 2007
617 --- 1392
- 617 --- 2781
- 617 --- 2782
+ 617 --- 2394
+ 617 x--> 2007
618 --- 1391
- 618 --- 2779
- 618 --- 2780
+ 618 --- 2393
+ 618 x--> 2007
619 --- 1390
- 619 --- 2777
- 619 --- 2778
+ 619 --- 2392
+ 619 x--> 2007
620 --- 1389
- 620 --- 2775
- 620 --- 2776
+ 620 --- 2391
+ 620 x--> 2007
621 --- 1388
- 621 --- 2773
- 621 --- 2774
+ 621 --- 2390
+ 621 x--> 2007
622 --- 1387
- 622 --- 2771
- 622 --- 2772
+ 622 --- 2389
+ 622 x--> 2007
623 --- 1386
- 623 --- 2769
- 623 --- 2770
+ 623 --- 2388
+ 623 x--> 2007
624 --- 1385
- 624 --- 2767
- 624 --- 2768
+ 624 --- 2387
+ 624 x--> 2007
625 --- 1384
- 625 --- 2765
- 625 --- 2766
+ 625 --- 2386
+ 625 x--> 2007
626 --- 1383
- 626 --- 2763
- 626 --- 2764
+ 626 --- 2385
+ 626 x--> 2007
627 --- 1382
- 627 --- 2761
- 627 --- 2762
+ 627 --- 2384
+ 627 x--> 2007
628 --- 1381
- 628 --- 2759
- 628 --- 2760
+ 628 --- 2383
+ 628 x--> 2007
629 --- 1380
- 629 --- 2757
- 629 --- 2758
+ 629 --- 2382
+ 629 x--> 2007
630 --- 1379
- 630 --- 2755
- 630 --- 2756
+ 630 --- 2381
+ 630 x--> 2007
631 --- 1378
- 631 --- 2753
- 631 --- 2754
+ 631 --- 2380
+ 631 x--> 2007
632 --- 1377
- 632 --- 2751
- 632 --- 2752
+ 632 --- 2379
+ 632 x--> 2007
633 --- 1376
- 633 --- 2749
- 633 --- 2750
+ 633 --- 2378
+ 633 x--> 2007
634 --- 1375
- 634 --- 2747
- 634 --- 2748
+ 634 --- 2377
+ 634 x--> 2007
635 --- 1374
- 635 --- 2745
- 635 --- 2746
+ 635 --- 2376
+ 635 x--> 2007
636 --- 1373
- 636 --- 2743
- 636 --- 2744
+ 636 --- 2375
+ 636 x--> 2007
637 --- 1372
- 637 --- 2741
- 637 --- 2742
+ 637 --- 2374
+ 637 x--> 2007
638 --- 1371
- 638 --- 2739
- 638 --- 2740
+ 638 --- 2373
+ 638 x--> 2007
639 --- 1370
- 639 --- 2737
- 639 --- 2738
+ 639 --- 2372
+ 639 x--> 2007
640 --- 1369
- 640 --- 2735
- 640 --- 2736
+ 640 --- 2371
+ 640 x--> 2007
641 --- 1368
- 641 --- 2733
- 641 --- 2734
+ 641 --- 2370
+ 641 x--> 2007
642 --- 1367
- 642 --- 2731
- 642 --- 2732
+ 642 --- 2369
+ 642 x--> 2007
643 --- 1366
- 643 --- 2729
- 643 --- 2730
+ 643 --- 2368
+ 643 x--> 2007
644 --- 1365
- 644 --- 2727
- 644 --- 2728
+ 644 --- 2367
+ 644 x--> 2007
645 --- 1364
- 645 --- 2725
- 645 --- 2726
+ 645 --- 2366
+ 645 x--> 2007
646 --- 1363
- 646 --- 2723
- 646 --- 2724
+ 646 --- 2365
+ 646 x--> 2007
647 --- 1362
- 647 --- 2721
- 647 --- 2722
+ 647 --- 2364
+ 647 x--> 2007
648 --- 1361
- 648 --- 2719
- 648 --- 2720
+ 648 --- 2363
+ 648 x--> 2007
649 --- 1360
- 649 --- 2717
- 649 --- 2718
+ 649 --- 2362
+ 649 x--> 2007
650 --- 1359
- 650 --- 2715
- 650 --- 2716
+ 650 --- 2361
+ 650 x--> 2007
651 --- 1358
- 651 --- 2713
- 651 --- 2714
+ 651 --- 2360
+ 651 x--> 2007
652 --- 1357
- 652 --- 2711
- 652 --- 2712
+ 652 --- 2359
+ 652 x--> 2007
653 --- 1356
- 653 --- 2709
- 653 --- 2710
+ 653 --- 2358
+ 653 x--> 2007
654 --- 1355
- 654 --- 2707
- 654 --- 2708
+ 654 --- 2357
+ 654 x--> 2007
655 --- 1354
- 655 --- 2705
- 655 --- 2706
+ 655 --- 2356
+ 655 x--> 2007
656 --- 1353
- 656 --- 2703
- 656 --- 2704
+ 656 --- 2355
+ 656 x--> 2007
657 --- 1352
- 657 --- 2701
- 657 --- 2702
+ 657 --- 2354
+ 657 x--> 2007
658 --- 1351
- 658 --- 2699
- 658 --- 2700
+ 658 --- 2353
+ 658 x--> 2007
659 --- 1350
- 659 --- 2697
- 659 --- 2698
+ 659 --- 2352
+ 659 x--> 2007
660 --- 1349
- 660 --- 2695
- 660 --- 2696
+ 660 --- 2351
+ 660 x--> 2007
661 --- 1348
- 661 --- 2693
- 661 --- 2694
+ 661 --- 2350
+ 661 x--> 2007
662 --- 1347
- 662 --- 2691
- 662 --- 2692
+ 662 --- 2349
+ 662 x--> 2007
663 --- 1346
- 663 --- 2689
- 663 --- 2690
+ 663 --- 2348
+ 663 x--> 2007
664 --- 1345
- 664 --- 2687
- 664 --- 2688
+ 664 --- 2347
+ 664 x--> 2007
665 --- 1344
- 665 --- 2685
- 665 --- 2686
+ 665 --- 2346
+ 665 x--> 2007
666 --- 1343
- 666 --- 2683
- 666 --- 2684
+ 666 --- 2345
+ 666 x--> 2007
667 --- 1342
- 667 --- 2681
- 667 --- 2682
+ 667 --- 2344
+ 667 x--> 2007
668 --- 1341
- 668 --- 2679
- 668 --- 2680
+ 668 --- 2343
+ 668 x--> 2007
669 --- 1340
- 669 --- 2677
- 669 --- 2678
+ 669 --- 2342
+ 669 x--> 2007
670 --- 1339
- 670 --- 2675
- 670 --- 2676
+ 670 --- 2341
+ 670 x--> 2007
671 --- 1338
- 671 --- 2673
- 671 --- 2674
+ 671 --- 2340
+ 671 x--> 2007
672 --- 1337
- 672 --- 2671
- 672 --- 2672
+ 672 --- 2339
+ 672 x--> 2007
673 --- 1336
- 673 --- 2669
- 673 --- 2670
+ 673 --- 2338
+ 673 x--> 2007
674 --- 1335
- 674 --- 2667
- 674 --- 2668
+ 674 --- 2337
+ 674 x--> 2007
675 --- 1334
- 675 --- 2665
- 675 --- 2666
+ 675 --- 2336
+ 675 x--> 2007
676 --- 1333
- 676 --- 2663
- 676 --- 2664
+ 676 --- 2335
+ 676 x--> 2007
677 --- 1332
- 677 --- 2661
- 677 --- 2662
+ 677 --- 2334
+ 677 x--> 2007
678 --- 1331
- 678 --- 2659
- 678 --- 2660
+ 678 --- 2333
+ 678 x--> 2007
679 --- 1330
- 679 --- 2657
- 679 --- 2658
+ 679 --- 2332
+ 679 x--> 2007
680 --- 1329
- 680 --- 2655
- 680 --- 2656
+ 680 --- 2331
+ 680 x--> 2007
681 --- 1328
- 681 --- 2653
- 681 --- 2654
+ 681 --- 2330
+ 681 x--> 2007
682 --- 1327
- 682 --- 2651
- 682 --- 2652
+ 682 --- 2329
+ 682 x--> 2007
683 --- 1326
- 683 --- 2649
- 683 --- 2650
+ 683 --- 2328
+ 683 x--> 2007
684 --- 1325
- 684 --- 2647
- 684 --- 2648
+ 684 --- 2327
+ 684 x--> 2007
685 --- 1324
- 685 --- 2645
- 685 --- 2646
+ 685 --- 2326
+ 685 x--> 2007
686 --- 1323
- 686 --- 2643
- 686 --- 2644
+ 686 --- 2325
+ 686 x--> 2007
687 --- 1322
- 687 --- 2641
- 687 --- 2642
+ 687 --- 2324
+ 687 x--> 2007
688 --- 1321
- 688 --- 2639
- 688 --- 2640
+ 688 --- 2323
+ 688 x--> 2007
689 --- 1320
- 689 --- 2637
- 689 --- 2638
+ 689 --- 2322
+ 689 x--> 2007
690 --- 1319
- 690 --- 2635
- 690 --- 2636
+ 690 --- 2321
+ 690 x--> 2007
691 --- 1318
- 691 --- 2633
- 691 --- 2634
+ 691 --- 2320
+ 691 x--> 2007
692 --- 1317
- 692 --- 2631
- 692 --- 2632
+ 692 --- 2319
+ 692 x--> 2007
693 --- 1316
- 693 --- 2629
- 693 --- 2630
+ 693 --- 2318
+ 693 x--> 2007
694 --- 1315
- 694 --- 2627
- 694 --- 2628
+ 694 --- 2317
+ 694 x--> 2007
695 --- 1314
- 695 --- 2625
- 695 --- 2626
+ 695 --- 2316
+ 695 x--> 2007
696 --- 1313
- 696 --- 2623
- 696 --- 2624
+ 696 --- 2315
+ 696 x--> 2007
697 --- 1312
- 697 --- 2621
- 697 --- 2622
+ 697 --- 2314
+ 697 x--> 2007
698 --- 1311
- 698 --- 2619
- 698 --- 2620
+ 698 --- 2313
+ 698 x--> 2007
699 --- 1310
- 699 --- 2617
- 699 --- 2618
+ 699 --- 2312
+ 699 x--> 2007
700 --- 1309
- 700 --- 2615
- 700 --- 2616
+ 700 --- 2311
+ 700 x--> 2007
701 --- 1308
- 701 --- 2613
- 701 --- 2614
+ 701 --- 2310
+ 701 x--> 2007
702 --- 1307
- 702 --- 2611
- 702 --- 2612
+ 702 --- 2309
+ 702 x--> 2007
703 --- 1306
- 703 --- 2609
- 703 --- 2610
+ 703 --- 2308
+ 703 x--> 2007
704 --- 1305
- 704 --- 2607
- 704 --- 2608
+ 704 --- 2307
+ 704 x--> 2007
705 --- 1304
- 705 --- 2605
- 705 --- 2606
+ 705 --- 2306
+ 705 x--> 2007
706 --- 1303
- 706 --- 2603
- 706 --- 2604
+ 706 --- 2305
+ 706 x--> 2007
707 --- 1302
- 707 --- 2601
- 707 --- 2602
+ 707 --- 2304
+ 707 x--> 2007
708 --- 1301
- 708 --- 2599
- 708 --- 2600
+ 708 --- 2303
+ 708 x--> 2007
709 --- 1300
- 709 --- 2597
- 709 --- 2598
+ 709 --- 2302
+ 709 x--> 2007
710 --- 1299
- 710 --- 2595
- 710 --- 2596
+ 710 --- 2301
+ 710 x--> 2007
711 --- 1298
- 711 --- 2593
- 711 --- 2594
+ 711 --- 2300
+ 711 x--> 2007
712 --- 1297
- 712 --- 2591
- 712 --- 2592
+ 712 --- 2299
+ 712 x--> 2007
713 --- 1296
- 713 --- 2589
- 713 --- 2590
+ 713 --- 2298
+ 713 x--> 2007
714 --- 1295
- 714 --- 2587
- 714 --- 2588
+ 714 --- 2297
+ 714 x--> 2007
715 --- 1294
- 715 --- 2585
- 715 --- 2586
+ 715 --- 2296
+ 715 x--> 2007
716 --- 1293
- 716 --- 2583
- 716 --- 2584
+ 716 --- 2295
+ 716 x--> 2007
717 --- 1292
- 717 --- 2581
- 717 --- 2582
+ 717 --- 2294
+ 717 x--> 2007
718 --- 1291
- 718 --- 2579
- 718 --- 2580
+ 718 --- 2293
+ 718 x--> 2007
719 --- 1290
- 719 --- 2577
- 719 --- 2578
+ 719 --- 2292
+ 719 x--> 2007
720 --- 1289
- 720 --- 2575
- 720 --- 2576
+ 720 --- 2291
+ 720 x--> 2007
721 --- 1288
- 721 --- 2573
- 721 --- 2574
+ 721 --- 2290
+ 721 x--> 2007
722 --- 1287
- 722 --- 2571
- 722 --- 2572
+ 722 --- 2289
+ 722 x--> 2007
723 --- 1286
- 723 --- 2569
- 723 --- 2570
+ 723 --- 2288
+ 723 x--> 2007
724 --- 1285
- 724 --- 2567
- 724 --- 2568
+ 724 --- 2287
+ 724 x--> 2007
725 --- 1284
- 725 --- 2565
- 725 --- 2566
+ 725 --- 2286
+ 725 x--> 2007
726 --- 1283
- 726 --- 2563
- 726 --- 2564
+ 726 --- 2285
+ 726 x--> 2007
727 --- 1282
- 727 --- 2561
- 727 --- 2562
+ 727 --- 2284
+ 727 x--> 2007
728 --- 1281
- 728 --- 2559
- 728 --- 2560
+ 728 --- 2283
+ 728 x--> 2007
729 --- 1280
- 729 --- 2557
- 729 --- 2558
+ 729 --- 2282
+ 729 x--> 2007
730 --- 1279
- 730 --- 2555
- 730 --- 2556
+ 730 --- 2281
+ 730 x--> 2007
731 --- 1278
- 731 --- 2553
- 731 --- 2554
+ 731 --- 2280
+ 731 x--> 2007
732 --- 1277
- 732 --- 2551
- 732 --- 2552
+ 732 --- 2279
+ 732 x--> 2007
733 --- 1276
- 733 --- 2549
- 733 --- 2550
+ 733 --- 2278
+ 733 x--> 2007
734 --- 1275
- 734 --- 2547
- 734 --- 2548
+ 734 --- 2277
+ 734 x--> 2007
735 --- 1274
- 735 --- 2545
- 735 --- 2546
+ 735 --- 2276
+ 735 x--> 2007
736 --- 1273
- 736 --- 2543
- 736 --- 2544
+ 736 --- 2275
+ 736 x--> 2007
737 --- 1272
- 737 --- 2541
- 737 --- 2542
+ 737 --- 2274
+ 737 x--> 2007
738 --- 1271
- 738 --- 2539
- 738 --- 2540
+ 738 --- 2273
+ 738 x--> 2007
739 --- 1270
- 739 --- 2537
- 739 --- 2538
+ 739 --- 2272
+ 739 x--> 2007
740 --- 1269
- 740 --- 2535
- 740 --- 2536
+ 740 --- 2271
+ 740 x--> 2007
741 --- 1268
- 741 --- 2533
- 741 --- 2534
+ 741 --- 2270
+ 741 x--> 2007
742 --- 1267
- 742 --- 2531
- 742 --- 2532
+ 742 --- 2269
+ 742 x--> 2007
743 --- 1266
- 743 --- 2529
- 743 --- 2530
+ 743 --- 2268
+ 743 x--> 2007
744 --- 1265
- 744 --- 2527
- 744 --- 2528
+ 744 --- 2267
+ 744 x--> 2007
745 --- 1264
- 745 --- 2525
- 745 --- 2526
+ 745 --- 2266
+ 745 x--> 2007
746 --- 1263
- 746 --- 2523
- 746 --- 2524
+ 746 --- 2265
+ 746 x--> 2007
747 --- 1262
- 747 --- 2521
- 747 --- 2522
+ 747 --- 2264
+ 747 x--> 2007
748 --- 1261
- 748 --- 2519
- 748 --- 2520
+ 748 --- 2263
+ 748 x--> 2007
749 --- 1260
- 749 --- 2517
- 749 --- 2518
+ 749 --- 2262
+ 749 x--> 2007
750 --- 1259
- 750 --- 2515
- 750 --- 2516
+ 750 --- 2261
+ 750 x--> 2007
751 --- 1258
- 751 --- 2513
- 751 --- 2514
+ 751 --- 2260
+ 751 x--> 2007
752 --- 1257
- 752 --- 2511
- 752 --- 2512
+ 752 --- 2259
+ 752 x--> 2007
753 --- 1256
- 753 --- 2509
- 753 --- 2510
+ 753 --- 2258
+ 753 x--> 2007
754 --- 1255
- 754 --- 2507
- 754 --- 2508
+ 754 --- 2257
+ 754 x--> 2007
755 --- 1254
- 755 --- 2505
- 755 --- 2506
+ 755 --- 2256
+ 755 x--> 2007
756 --- 1253
- 756 --- 2503
- 756 --- 2504
+ 756 --- 2255
+ 756 x--> 2007
757 --- 1252
- 757 --- 2501
- 757 --- 2502
+ 757 --- 2254
+ 757 x--> 2007
758 --- 1251
- 758 --- 2499
- 758 --- 2500
+ 758 --- 2253
+ 758 x--> 2007
759 --- 1250
- 759 --- 2497
- 759 --- 2498
+ 759 --- 2252
+ 759 x--> 2007
760 --- 1249
- 760 --- 2495
- 760 --- 2496
+ 760 --- 2251
+ 760 x--> 2007
761 --- 1248
- 761 --- 2493
- 761 --- 2494
+ 761 --- 2250
+ 761 x--> 2007
762 --- 1247
- 762 --- 2491
- 762 --- 2492
+ 762 --- 2249
+ 762 x--> 2007
763 --- 1246
- 763 --- 2489
- 763 --- 2490
+ 763 --- 2248
+ 763 x--> 2007
764 --- 1245
- 764 --- 2487
- 764 --- 2488
+ 764 --- 2247
+ 764 x--> 2007
765 --- 1244
- 765 --- 2485
- 765 --- 2486
+ 765 --- 2246
+ 765 x--> 2007
766 --- 1243
- 766 --- 2483
- 766 --- 2484
+ 766 --- 2245
+ 766 x--> 2007
767 --- 1242
- 767 --- 2481
- 767 --- 2482
+ 767 --- 2244
+ 767 x--> 2007
768 --- 1241
- 768 --- 2479
- 768 --- 2480
+ 768 --- 2243
+ 768 x--> 2007
769 --- 1240
- 769 --- 2477
- 769 --- 2478
+ 769 --- 2242
+ 769 x--> 2007
770 --- 1239
- 770 --- 2475
- 770 --- 2476
+ 770 --- 2241
+ 770 x--> 2007
771 --- 1238
- 771 --- 2473
- 771 --- 2474
+ 771 --- 2240
+ 771 x--> 2007
772 --- 1237
- 772 --- 2471
- 772 --- 2472
+ 772 --- 2239
+ 772 x--> 2007
773 --- 1236
- 773 --- 2469
- 773 --- 2470
+ 773 --- 2238
+ 773 x--> 2007
774 --- 1235
- 774 --- 2467
- 774 --- 2468
+ 774 --- 2237
+ 774 x--> 2007
775 --- 1234
- 775 --- 2465
- 775 --- 2466
+ 775 --- 2236
+ 775 x--> 2007
776 --- 1233
- 776 --- 2463
- 776 --- 2464
+ 776 --- 2235
+ 776 x--> 2007
777 --- 1232
- 777 --- 2461
- 777 --- 2462
+ 777 --- 2234
+ 777 x--> 2007
778 --- 1231
- 778 --- 2459
- 778 --- 2460
+ 778 --- 2233
+ 778 x--> 2007
779 --- 1230
- 779 --- 2457
- 779 --- 2458
+ 779 --- 2232
+ 779 x--> 2007
780 --- 1229
- 780 --- 2455
- 780 --- 2456
+ 780 --- 2231
+ 780 x--> 2007
781 --- 1228
- 781 --- 2453
- 781 --- 2454
+ 781 --- 2230
+ 781 x--> 2007
782 --- 1227
- 782 --- 2451
- 782 --- 2452
+ 782 --- 2229
+ 782 x--> 2007
783 --- 1226
- 783 --- 2449
- 783 --- 2450
+ 783 --- 2228
+ 783 x--> 2007
784 --- 1225
- 784 --- 2447
- 784 --- 2448
+ 784 --- 2227
+ 784 x--> 2007
785 --- 1224
- 785 --- 2445
- 785 --- 2446
+ 785 --- 2226
+ 785 x--> 2007
786 --- 1223
- 786 --- 2443
- 786 --- 2444
+ 786 --- 2225
+ 786 x--> 2007
787 --- 1222
- 787 --- 2441
- 787 --- 2442
+ 787 --- 2224
+ 787 x--> 2007
788 --- 1221
- 788 --- 2439
- 788 --- 2440
+ 788 --- 2223
+ 788 x--> 2007
789 --- 1220
- 789 --- 2437
- 789 --- 2438
+ 789 --- 2222
+ 789 x--> 2007
790 --- 1219
- 790 --- 2435
- 790 --- 2436
+ 790 --- 2221
+ 790 x--> 2007
791 --- 1218
- 791 --- 2433
- 791 --- 2434
+ 791 --- 2220
+ 791 x--> 2007
792 --- 1217
- 792 --- 2431
- 792 --- 2432
+ 792 --- 2219
+ 792 x--> 2007
793 --- 1216
- 793 --- 2429
- 793 --- 2430
+ 793 --- 2218
+ 793 x--> 2007
794 --- 1215
- 794 --- 2427
- 794 --- 2428
+ 794 --- 2217
+ 794 x--> 2007
795 --- 1214
- 795 --- 2425
- 795 --- 2426
+ 795 --- 2216
+ 795 x--> 2007
796 --- 1213
- 796 --- 2423
- 796 --- 2424
+ 796 --- 2215
+ 796 x--> 2007
797 --- 1212
- 797 --- 2421
- 797 --- 2422
+ 797 --- 2214
+ 797 x--> 2007
798 --- 1211
- 798 --- 2419
- 798 --- 2420
+ 798 --- 2213
+ 798 x--> 2007
799 --- 1210
- 799 --- 2417
- 799 --- 2418
+ 799 --- 2212
+ 799 x--> 2007
800 --- 1209
- 800 --- 2415
- 800 --- 2416
+ 800 --- 2211
+ 800 x--> 2007
801 --- 1208
- 801 --- 2413
- 801 --- 2414
+ 801 --- 2210
+ 801 x--> 2007
802 --- 1207
- 802 --- 2411
- 802 --- 2412
+ 802 --- 2209
+ 802 x--> 2007
803 --- 1206
- 803 --- 2409
- 803 --- 2410
+ 803 --- 2208
+ 803 x--> 2007
804 --- 1205
- 804 --- 2407
- 804 --- 2408
+ 804 --- 2207
+ 804 x--> 2007
805 --- 1204
- 805 --- 2405
- 805 --- 2406
+ 805 --- 2206
+ 805 x--> 2007
806 --- 1203
- 806 --- 2403
- 806 --- 2404
+ 806 --- 2205
+ 806 x--> 2007
807 --- 1202
- 807 --- 2401
- 807 --- 2402
+ 807 --- 2204
+ 807 x--> 2007
808 --- 1201
- 808 --- 2399
- 808 --- 2400
+ 808 --- 2203
+ 808 x--> 2007
809 --- 1200
- 809 --- 2397
- 809 --- 2398
+ 809 --- 2202
+ 809 x--> 2007
810 --- 1199
- 810 --- 2395
- 810 --- 2396
+ 810 --- 2201
+ 810 x--> 2007
811 --- 1198
- 811 --- 2393
- 811 --- 2394
+ 811 --- 2200
+ 811 x--> 2007
812 --- 1197
- 812 --- 2391
- 812 --- 2392
+ 812 --- 2199
+ 812 x--> 2007
813 --- 1196
- 813 --- 2389
- 813 --- 2390
+ 813 --- 2198
+ 813 x--> 2007
814 --- 1195
- 814 --- 2387
- 814 --- 2388
+ 814 --- 2197
+ 814 x--> 2007
815 --- 1194
- 815 --- 2385
- 815 --- 2386
+ 815 --- 2196
+ 815 x--> 2007
816 --- 1193
- 816 --- 2383
- 816 --- 2384
+ 816 --- 2195
+ 816 x--> 2007
817 --- 1192
- 817 --- 2381
- 817 --- 2382
+ 817 --- 2194
+ 817 x--> 2007
818 --- 1191
- 818 --- 2379
- 818 --- 2380
+ 818 --- 2193
+ 818 x--> 2007
819 --- 1190
- 819 --- 2377
- 819 --- 2378
+ 819 --- 2192
+ 819 x--> 2007
820 --- 1189
- 820 --- 2375
- 820 --- 2376
+ 820 --- 2191
+ 820 x--> 2007
821 --- 1188
- 821 --- 2373
- 821 --- 2374
+ 821 --- 2190
+ 821 x--> 2007
822 --- 1187
- 822 --- 2371
- 822 --- 2372
+ 822 --- 2189
+ 822 x--> 2007
823 --- 1186
- 823 --- 2369
- 823 --- 2370
+ 823 --- 2188
+ 823 x--> 2007
824 --- 1185
- 824 --- 2367
- 824 --- 2368
+ 824 --- 2187
+ 824 x--> 2007
825 --- 1184
- 825 --- 2365
- 825 --- 2366
+ 825 --- 2186
+ 825 x--> 2007
826 --- 1183
- 826 --- 2363
- 826 --- 2364
+ 826 --- 2185
+ 826 x--> 2007
827 --- 1182
- 827 --- 2361
- 827 --- 2362
+ 827 --- 2184
+ 827 x--> 2007
828 --- 1181
- 828 --- 2359
- 828 --- 2360
+ 828 --- 2183
+ 828 x--> 2007
829 --- 1180
- 829 --- 2357
- 829 --- 2358
+ 829 --- 2182
+ 829 x--> 2007
830 --- 1179
- 830 --- 2355
- 830 --- 2356
+ 830 --- 2181
+ 830 x--> 2007
831 --- 1178
- 831 --- 2353
- 831 --- 2354
+ 831 --- 2180
+ 831 x--> 2007
832 --- 1177
- 832 --- 2351
- 832 --- 2352
+ 832 --- 2179
+ 832 x--> 2007
833 --- 1176
- 833 --- 2349
- 833 --- 2350
+ 833 --- 2178
+ 833 x--> 2007
834 --- 1175
- 834 --- 2347
- 834 --- 2348
+ 834 --- 2177
+ 834 x--> 2007
835 --- 1174
- 835 --- 2345
- 835 --- 2346
+ 835 --- 2176
+ 835 x--> 2007
836 --- 1173
- 836 --- 2343
- 836 --- 2344
+ 836 --- 2175
+ 836 x--> 2007
837 --- 1172
- 837 --- 2341
- 837 --- 2342
+ 837 --- 2174
+ 837 x--> 2007
838 --- 1171
- 838 --- 2339
- 838 --- 2340
+ 838 --- 2173
+ 838 x--> 2007
839 --- 1170
- 839 --- 2337
- 839 --- 2338
+ 839 --- 2172
+ 839 x--> 2007
840 --- 1169
- 840 --- 2335
- 840 --- 2336
+ 840 --- 2171
+ 840 x--> 2007
841 --- 1168
- 841 --- 2333
- 841 --- 2334
+ 841 --- 2170
+ 841 x--> 2007
842 --- 1167
- 842 --- 2331
- 842 --- 2332
+ 842 --- 2169
+ 842 x--> 2007
843 --- 1166
- 843 --- 2329
- 843 --- 2330
+ 843 --- 2168
+ 843 x--> 2007
844 --- 1165
- 844 --- 2327
- 844 --- 2328
+ 844 --- 2167
+ 844 x--> 2007
845 --- 1164
- 845 --- 2325
- 845 --- 2326
+ 845 --- 2166
+ 845 x--> 2007
846 --- 1163
- 846 --- 2323
- 846 --- 2324
+ 846 --- 2165
+ 846 x--> 2007
847 --- 1162
- 847 --- 2321
- 847 --- 2322
+ 847 --- 2164
+ 847 x--> 2007
848 --- 1161
- 848 --- 2319
- 848 --- 2320
+ 848 --- 2163
+ 848 x--> 2007
849 --- 1160
- 849 --- 2317
- 849 --- 2318
+ 849 --- 2162
+ 849 x--> 2007
850 --- 1159
- 850 --- 2315
- 850 --- 2316
+ 850 --- 2161
+ 850 x--> 2007
851 --- 1158
- 851 --- 2313
- 851 --- 2314
+ 851 --- 2160
+ 851 x--> 2007
852 --- 1157
- 852 --- 2311
- 852 --- 2312
+ 852 --- 2159
+ 852 x--> 2007
853 --- 1156
- 853 --- 2309
- 853 --- 2310
+ 853 --- 2158
+ 853 x--> 2007
854 --- 1155
- 854 --- 2307
- 854 --- 2308
+ 854 --- 2157
+ 854 x--> 2007
855 --- 1154
- 855 --- 2305
- 855 --- 2306
+ 855 --- 2156
+ 855 x--> 2007
856 --- 1153
- 856 --- 2303
- 856 --- 2304
+ 856 --- 2155
+ 856 x--> 2007
857 --- 1152
- 857 --- 2301
- 857 --- 2302
+ 857 --- 2154
+ 857 x--> 2007
858 --- 1151
- 858 --- 2299
- 858 --- 2300
+ 858 --- 2153
+ 858 x--> 2007
859 --- 1150
- 859 --- 2297
- 859 --- 2298
+ 859 --- 2152
+ 859 x--> 2007
860 --- 1149
- 860 --- 2295
- 860 --- 2296
+ 860 --- 2151
+ 860 x--> 2007
861 --- 1148
- 861 --- 2293
- 861 --- 2294
+ 861 --- 2150
+ 861 x--> 2007
862 --- 1147
- 862 --- 2291
- 862 --- 2292
+ 862 --- 2149
+ 862 x--> 2007
863 --- 1146
- 863 --- 2289
- 863 --- 2290
+ 863 --- 2148
+ 863 x--> 2007
864 --- 1145
- 864 --- 2287
- 864 --- 2288
+ 864 --- 2147
+ 864 x--> 2007
865 --- 1144
- 865 --- 2285
- 865 --- 2286
+ 865 --- 2146
+ 865 x--> 2007
866 --- 1143
- 866 --- 2283
- 866 --- 2284
+ 866 --- 2145
+ 866 x--> 2007
867 --- 1142
- 867 --- 2281
- 867 --- 2282
+ 867 --- 2144
+ 867 x--> 2007
868 --- 1141
- 868 --- 2279
- 868 --- 2280
+ 868 --- 2143
+ 868 x--> 2007
869 --- 1140
- 869 --- 2277
- 869 --- 2278
+ 869 --- 2142
+ 869 x--> 2007
870 --- 1139
- 870 --- 2275
- 870 --- 2276
+ 870 --- 2141
+ 870 x--> 2007
871 --- 1138
- 871 --- 2273
- 871 --- 2274
+ 871 --- 2140
+ 871 x--> 2007
872 --- 1137
- 872 --- 2271
- 872 --- 2272
+ 872 --- 2139
+ 872 x--> 2007
873 --- 1136
- 873 --- 2269
- 873 --- 2270
+ 873 --- 2138
+ 873 x--> 2007
874 --- 1135
- 874 --- 2267
- 874 --- 2268
+ 874 --- 2137
+ 874 x--> 2007
875 --- 1134
- 875 --- 2265
- 875 --- 2266
+ 875 --- 2136
+ 875 x--> 2007
876 --- 1133
- 876 --- 2263
- 876 --- 2264
+ 876 --- 2135
+ 876 x--> 2007
877 --- 1132
- 877 --- 2261
- 877 --- 2262
+ 877 --- 2134
+ 877 x--> 2007
878 --- 1131
- 878 --- 2259
- 878 --- 2260
+ 878 --- 2133
+ 878 x--> 2007
879 --- 1130
- 879 --- 2257
- 879 --- 2258
+ 879 --- 2132
+ 879 x--> 2007
880 --- 1129
- 880 --- 2255
- 880 --- 2256
+ 880 --- 2131
+ 880 x--> 2007
881 --- 1128
- 881 --- 2253
- 881 --- 2254
+ 881 --- 2130
+ 881 x--> 2007
882 --- 1127
- 882 --- 2251
- 882 --- 2252
+ 882 --- 2129
+ 882 x--> 2007
883 --- 1126
- 883 --- 2249
- 883 --- 2250
+ 883 --- 2128
+ 883 x--> 2007
884 --- 1125
- 884 --- 2247
- 884 --- 2248
+ 884 --- 2127
+ 884 x--> 2007
885 --- 1124
- 885 --- 2245
- 885 --- 2246
+ 885 --- 2126
+ 885 x--> 2007
886 --- 1123
- 886 --- 2243
- 886 --- 2244
+ 886 --- 2125
+ 886 x--> 2007
887 --- 1122
- 887 --- 2241
- 887 --- 2242
+ 887 --- 2124
+ 887 x--> 2007
888 --- 1121
- 888 --- 2239
- 888 --- 2240
+ 888 --- 2123
+ 888 x--> 2007
889 --- 1120
- 889 --- 2237
- 889 --- 2238
+ 889 --- 2122
+ 889 x--> 2007
890 --- 1119
- 890 --- 2235
- 890 --- 2236
+ 890 --- 2121
+ 890 x--> 2007
891 --- 1118
- 891 --- 2233
- 891 --- 2234
+ 891 --- 2120
+ 891 x--> 2007
892 --- 1117
- 892 --- 2231
- 892 --- 2232
+ 892 --- 2119
+ 892 x--> 2007
893 --- 1116
- 893 --- 2229
- 893 --- 2230
+ 893 --- 2118
+ 893 x--> 2007
894 --- 1115
- 894 --- 2227
- 894 --- 2228
+ 894 --- 2117
+ 894 x--> 2007
895 --- 1114
- 895 --- 2225
- 895 --- 2226
+ 895 --- 2116
+ 895 x--> 2007
896 --- 1113
- 896 --- 2223
- 896 --- 2224
+ 896 --- 2115
+ 896 x--> 2007
897 --- 1112
- 897 --- 2221
- 897 --- 2222
+ 897 --- 2114
+ 897 x--> 2007
898 --- 1111
- 898 --- 2219
- 898 --- 2220
+ 898 --- 2113
+ 898 x--> 2007
899 --- 1110
- 899 --- 2217
- 899 --- 2218
+ 899 --- 2112
+ 899 x--> 2007
900 --- 1109
- 900 --- 2215
- 900 --- 2216
+ 900 --- 2111
+ 900 x--> 2007
901 --- 1108
- 901 --- 2213
- 901 --- 2214
+ 901 --- 2110
+ 901 x--> 2007
902 --- 1107
- 902 --- 2211
- 902 --- 2212
+ 902 --- 2109
+ 902 x--> 2007
903 --- 1106
- 903 --- 2209
- 903 --- 2210
+ 903 --- 2108
+ 903 x--> 2007
904 --- 1105
- 904 --- 2207
- 904 --- 2208
+ 904 --- 2107
+ 904 x--> 2007
905 --- 1104
- 905 --- 2205
- 905 --- 2206
+ 905 --- 2106
+ 905 x--> 2007
906 --- 1103
- 906 --- 2203
- 906 --- 2204
+ 906 --- 2105
+ 906 x--> 2007
907 --- 1102
- 907 --- 2201
- 907 --- 2202
+ 907 --- 2104
+ 907 x--> 2007
908 --- 1101
- 908 --- 2199
- 908 --- 2200
+ 908 --- 2103
+ 908 x--> 2007
909 --- 1100
- 909 --- 2197
- 909 --- 2198
+ 909 --- 2102
+ 909 x--> 2007
910 --- 1099
- 910 --- 2195
- 910 --- 2196
+ 910 --- 2101
+ 910 x--> 2007
911 --- 1098
- 911 --- 2193
- 911 --- 2194
+ 911 --- 2100
+ 911 x--> 2007
912 --- 1097
- 912 --- 2191
- 912 --- 2192
+ 912 --- 2099
+ 912 x--> 2007
913 --- 1096
- 913 --- 2189
- 913 --- 2190
+ 913 --- 2098
+ 913 x--> 2007
914 --- 1095
- 914 --- 2187
- 914 --- 2188
+ 914 --- 2097
+ 914 x--> 2007
915 --- 1094
- 915 --- 2185
- 915 --- 2186
+ 915 --- 2096
+ 915 x--> 2007
916 --- 1093
- 916 --- 2183
- 916 --- 2184
+ 916 --- 2095
+ 916 x--> 2007
917 --- 1092
- 917 --- 2181
- 917 --- 2182
+ 917 --- 2094
+ 917 x--> 2007
918 --- 1091
- 918 --- 2179
- 918 --- 2180
+ 918 --- 2093
+ 918 x--> 2007
919 --- 1090
- 919 --- 2177
- 919 --- 2178
+ 919 --- 2092
+ 919 x--> 2007
920 --- 1089
- 920 --- 2175
- 920 --- 2176
+ 920 --- 2091
+ 920 x--> 2007
921 --- 1088
- 921 --- 2173
- 921 --- 2174
+ 921 --- 2090
+ 921 x--> 2007
922 --- 1087
- 922 --- 2171
- 922 --- 2172
+ 922 --- 2089
+ 922 x--> 2007
923 --- 1086
- 923 --- 2169
- 923 --- 2170
+ 923 --- 2088
+ 923 x--> 2007
924 --- 1085
- 924 --- 2167
- 924 --- 2168
+ 924 --- 2087
+ 924 x--> 2007
925 --- 1084
- 925 --- 2165
- 925 --- 2166
+ 925 --- 2086
+ 925 x--> 2007
926 --- 1083
- 926 --- 2163
- 926 --- 2164
+ 926 --- 2085
+ 926 x--> 2007
927 --- 1082
- 927 --- 2161
- 927 --- 2162
+ 927 --- 2084
+ 927 x--> 2007
928 --- 1081
- 928 --- 2159
- 928 --- 2160
+ 928 --- 2083
+ 928 x--> 2007
929 --- 1080
- 929 --- 2157
- 929 --- 2158
+ 929 --- 2082
+ 929 x--> 2007
930 --- 1079
- 930 --- 2155
- 930 --- 2156
+ 930 --- 2081
+ 930 x--> 2007
931 --- 1078
- 931 --- 2153
- 931 --- 2154
+ 931 --- 2080
+ 931 x--> 2007
932 --- 1077
- 932 --- 2151
- 932 --- 2152
+ 932 --- 2079
+ 932 x--> 2007
933 --- 1076
- 933 --- 2149
- 933 --- 2150
+ 933 --- 2078
+ 933 x--> 2007
934 --- 1075
- 934 --- 2147
- 934 --- 2148
+ 934 --- 2077
+ 934 x--> 2007
935 --- 1074
- 935 --- 2145
- 935 --- 2146
+ 935 --- 2076
+ 935 x--> 2007
936 --- 1073
- 936 --- 2143
- 936 --- 2144
+ 936 --- 2075
+ 936 x--> 2007
937 --- 1072
- 937 --- 2141
- 937 --- 2142
+ 937 --- 2074
+ 937 x--> 2007
938 --- 1071
- 938 --- 2139
- 938 --- 2140
+ 938 --- 2073
+ 938 x--> 2007
939 --- 1070
- 939 --- 2137
- 939 --- 2138
+ 939 --- 2072
+ 939 x--> 2007
940 --- 1069
- 940 --- 2135
- 940 --- 2136
+ 940 --- 2071
+ 940 x--> 2007
941 --- 1068
- 941 --- 2133
- 941 --- 2134
+ 941 --- 2070
+ 941 x--> 2007
942 --- 1067
- 942 --- 2131
- 942 --- 2132
+ 942 --- 2069
+ 942 x--> 2007
943 --- 1066
- 943 --- 2129
- 943 --- 2130
+ 943 --- 2068
+ 943 x--> 2007
944 --- 1065
- 944 --- 2127
- 944 --- 2128
+ 944 --- 2067
+ 944 x--> 2007
945 --- 1064
- 945 --- 2125
- 945 --- 2126
+ 945 --- 2066
+ 945 x--> 2007
946 --- 1063
- 946 --- 2123
- 946 --- 2124
+ 946 --- 2065
+ 946 x--> 2007
947 --- 1062
- 947 --- 2121
- 947 --- 2122
+ 947 --- 2064
+ 947 x--> 2007
948 --- 1061
- 948 --- 2119
- 948 --- 2120
+ 948 --- 2063
+ 948 x--> 2007
949 --- 1060
- 949 --- 2117
- 949 --- 2118
+ 949 --- 2062
+ 949 x--> 2007
950 --- 1059
- 950 --- 2115
- 950 --- 2116
+ 950 --- 2061
+ 950 x--> 2007
951 --- 1058
- 951 --- 2113
- 951 --- 2114
+ 951 --- 2060
+ 951 x--> 2007
952 --- 1057
- 952 --- 2111
- 952 --- 2112
+ 952 --- 2059
+ 952 x--> 2007
953 --- 1056
- 953 --- 2109
- 953 --- 2110
+ 953 --- 2058
+ 953 x--> 2007
954 --- 1055
- 954 --- 2107
- 954 --- 2108
+ 954 --- 2057
+ 954 x--> 2007
955 --- 1054
- 955 --- 2105
- 955 --- 2106
+ 955 --- 2056
+ 955 x--> 2007
956 --- 1053
- 956 --- 2103
- 956 --- 2104
+ 956 --- 2055
+ 956 x--> 2007
957 --- 1052
- 957 --- 2101
- 957 --- 2102
+ 957 --- 2054
+ 957 x--> 2007
958 --- 1051
- 958 --- 2099
- 958 --- 2100
+ 958 --- 2053
+ 958 x--> 2007
959 --- 1050
- 959 --- 2097
- 959 --- 2098
+ 959 --- 2052
+ 959 x--> 2007
960 --- 1049
- 960 --- 2095
- 960 --- 2096
+ 960 --- 2051
+ 960 x--> 2007
961 --- 1048
- 961 --- 2093
- 961 --- 2094
+ 961 --- 2050
+ 961 x--> 2007
962 --- 1047
- 962 --- 2091
- 962 --- 2092
+ 962 --- 2049
+ 962 x--> 2007
963 --- 1046
- 963 --- 2089
- 963 --- 2090
+ 963 --- 2048
+ 963 x--> 2007
964 --- 1045
- 964 --- 2087
- 964 --- 2088
+ 964 --- 2047
+ 964 x--> 2007
965 --- 1044
- 965 --- 2085
- 965 --- 2086
+ 965 --- 2046
+ 965 x--> 2007
966 --- 1043
- 966 --- 2083
- 966 --- 2084
+ 966 --- 2045
+ 966 x--> 2007
967 --- 1042
- 967 --- 2081
- 967 --- 2082
+ 967 --- 2044
+ 967 x--> 2007
968 --- 1041
- 968 --- 2079
- 968 --- 2080
+ 968 --- 2043
+ 968 x--> 2007
969 --- 1040
- 969 --- 2077
- 969 --- 2078
+ 969 --- 2042
+ 969 x--> 2007
970 --- 1039
- 970 --- 2075
- 970 --- 2076
+ 970 --- 2041
+ 970 x--> 2007
971 --- 1038
- 971 --- 2073
- 971 --- 2074
+ 971 --- 2040
+ 971 x--> 2007
972 --- 1037
- 972 --- 2071
- 972 --- 2072
+ 972 --- 2039
+ 972 x--> 2007
973 --- 1036
- 973 --- 2069
- 973 --- 2070
+ 973 --- 2038
+ 973 x--> 2007
974 --- 1035
- 974 --- 2067
- 974 --- 2068
+ 974 --- 2037
+ 974 x--> 2007
975 --- 1034
- 975 --- 2065
- 975 --- 2066
+ 975 --- 2036
+ 975 x--> 2007
976 --- 1033
- 976 --- 2063
- 976 --- 2064
+ 976 --- 2035
+ 976 x--> 2007
977 --- 1032
- 977 --- 2061
- 977 --- 2062
+ 977 --- 2034
+ 977 x--> 2007
978 --- 1031
- 978 --- 2059
- 978 --- 2060
+ 978 --- 2033
+ 978 x--> 2007
979 --- 1030
- 979 --- 2057
- 979 --- 2058
+ 979 --- 2032
+ 979 x--> 2007
980 --- 1029
- 980 --- 2055
- 980 --- 2056
+ 980 --- 2031
+ 980 x--> 2007
981 --- 1028
- 981 --- 2053
- 981 --- 2054
+ 981 --- 2030
+ 981 x--> 2007
982 --- 1027
- 982 --- 2051
- 982 --- 2052
+ 982 --- 2029
+ 982 x--> 2007
983 --- 1026
- 983 --- 2049
- 983 --- 2050
+ 983 --- 2028
+ 983 x--> 2007
984 --- 1025
- 984 --- 2047
- 984 --- 2048
+ 984 --- 2027
+ 984 x--> 2007
985 --- 1024
- 985 --- 2045
- 985 --- 2046
+ 985 --- 2026
+ 985 x--> 2007
986 --- 1023
- 986 --- 2043
- 986 --- 2044
+ 986 --- 2025
+ 986 x--> 2007
987 --- 1022
- 987 --- 2041
- 987 --- 2042
+ 987 --- 2024
+ 987 x--> 2007
988 --- 1021
- 988 --- 2039
- 988 --- 2040
+ 988 --- 2023
+ 988 x--> 2007
989 --- 1020
- 989 --- 2037
- 989 --- 2038
+ 989 --- 2022
+ 989 x--> 2007
990 --- 1019
- 990 --- 2035
- 990 --- 2036
+ 990 --- 2021
+ 990 x--> 2007
991 --- 1018
- 991 --- 2033
- 991 --- 2034
+ 991 --- 2020
+ 991 x--> 2007
992 --- 1017
- 992 --- 2031
- 992 --- 2032
+ 992 --- 2019
+ 992 x--> 2007
993 --- 1016
- 993 --- 2029
- 993 --- 2030
+ 993 --- 2018
+ 993 x--> 2007
994 --- 1015
- 994 --- 2027
- 994 --- 2028
+ 994 --- 2017
+ 994 x--> 2007
995 --- 1014
- 995 --- 2025
- 995 --- 2026
+ 995 --- 2016
+ 995 x--> 2007
996 --- 1013
- 996 --- 2023
- 996 --- 2024
+ 996 --- 2015
+ 996 x--> 2007
997 --- 1012
- 997 --- 2021
- 997 --- 2022
+ 997 --- 2014
+ 997 x--> 2007
998 --- 1011
- 998 --- 2019
- 998 --- 2020
+ 998 --- 2013
+ 998 x--> 2007
999 --- 1010
- 999 --- 2017
- 999 --- 2018
+ 999 --- 2012
+ 999 x--> 2007
1000 --- 1009
- 1000 --- 2015
- 1000 --- 2016
+ 1000 --- 2011
+ 1000 x--> 2007
1001 --- 1008
- 1001 --- 2013
- 1001 --- 2014
+ 1001 --- 2010
+ 1001 x--> 2007
1002 --- 1007
- 1002 --- 2011
- 1002 --- 2012
+ 1002 --- 2009
+ 1002 x--> 2007
1003 --- 1006
- 1003 --- 2009
- 1003 --- 2010
+ 1003 x--> 2007
1005 --- 1006
1005 --- 1007
1005 --- 1008
@@ -10022,1006 +9019,2004 @@ flowchart LR
1005 --- 3006
1005 --- 3007
1005 --- 3008
- 1005 --- 3009
- 1005 --- 3010
- 1005 --- 3011
- 1005 --- 3012
- 1005 --- 3013
- 1005 --- 3014
- 1005 --- 3015
- 1005 --- 3016
- 1005 --- 3017
- 1005 --- 3018
- 1005 --- 3019
- 1005 --- 3020
- 1005 --- 3021
- 1005 --- 3022
- 1005 --- 3023
- 1005 --- 3024
- 1005 --- 3025
- 1005 --- 3026
- 1005 --- 3027
- 1005 --- 3028
- 1005 --- 3029
- 1005 --- 3030
- 1005 --- 3031
- 1005 --- 3032
- 1005 --- 3033
- 1005 --- 3034
- 1005 --- 3035
- 1005 --- 3036
- 1005 --- 3037
- 1005 --- 3038
- 1005 --- 3039
- 1005 --- 3040
- 1005 --- 3041
- 1005 --- 3042
- 1005 --- 3043
- 1005 --- 3044
- 1005 --- 3045
- 1005 --- 3046
- 1005 --- 3047
- 1005 --- 3048
- 1005 --- 3049
- 1005 --- 3050
- 1005 --- 3051
- 1005 --- 3052
- 1005 --- 3053
- 1005 --- 3054
- 1005 --- 3055
- 1005 --- 3056
- 1005 --- 3057
- 1005 --- 3058
- 1005 --- 3059
- 1005 --- 3060
- 1005 --- 3061
- 1005 --- 3062
- 1005 --- 3063
- 1005 --- 3064
- 1005 --- 3065
- 1005 --- 3066
- 1005 --- 3067
- 1005 --- 3068
- 1005 --- 3069
- 1005 --- 3070
- 1005 --- 3071
- 1005 --- 3072
- 1005 --- 3073
- 1005 --- 3074
- 1005 --- 3075
- 1005 --- 3076
- 1005 --- 3077
- 1005 --- 3078
- 1005 --- 3079
- 1005 --- 3080
- 1005 --- 3081
- 1005 --- 3082
- 1005 --- 3083
- 1005 --- 3084
- 1005 --- 3085
- 1005 --- 3086
- 1005 --- 3087
- 1005 --- 3088
- 1005 --- 3089
- 1005 --- 3090
- 1005 --- 3091
- 1005 --- 3092
- 1005 --- 3093
- 1005 --- 3094
- 1005 --- 3095
- 1005 --- 3096
- 1005 --- 3097
- 1005 --- 3098
- 1005 --- 3099
- 1005 --- 3100
- 1005 --- 3101
- 1005 --- 3102
- 1005 --- 3103
- 1005 --- 3104
- 1005 --- 3105
- 1005 --- 3106
- 1005 --- 3107
- 1005 --- 3108
- 1005 --- 3109
- 1005 --- 3110
- 1005 --- 3111
- 1005 --- 3112
- 1005 --- 3113
- 1005 --- 3114
- 1005 --- 3115
- 1005 --- 3116
- 1005 --- 3117
- 1005 --- 3118
- 1005 --- 3119
- 1005 --- 3120
- 1005 --- 3121
- 1005 --- 3122
- 1005 --- 3123
- 1005 --- 3124
- 1005 --- 3125
- 1005 --- 3126
- 1005 --- 3127
- 1005 --- 3128
- 1005 --- 3129
- 1005 --- 3130
- 1005 --- 3131
- 1005 --- 3132
- 1005 --- 3133
- 1005 --- 3134
- 1005 --- 3135
- 1005 --- 3136
- 1005 --- 3137
- 1005 --- 3138
- 1005 --- 3139
- 1005 --- 3140
- 1005 --- 3141
- 1005 --- 3142
- 1005 --- 3143
- 1005 --- 3144
- 1005 --- 3145
- 1005 --- 3146
- 1005 --- 3147
- 1005 --- 3148
- 1005 --- 3149
- 1005 --- 3150
- 1005 --- 3151
- 1005 --- 3152
- 1005 --- 3153
- 1005 --- 3154
- 1005 --- 3155
- 1005 --- 3156
- 1005 --- 3157
- 1005 --- 3158
- 1005 --- 3159
- 1005 --- 3160
- 1005 --- 3161
- 1005 --- 3162
- 1005 --- 3163
- 1005 --- 3164
- 1005 --- 3165
- 1005 --- 3166
- 1005 --- 3167
- 1005 --- 3168
- 1005 --- 3169
- 1005 --- 3170
- 1005 --- 3171
- 1005 --- 3172
- 1005 --- 3173
- 1005 --- 3174
- 1005 --- 3175
- 1005 --- 3176
- 1005 --- 3177
- 1005 --- 3178
- 1005 --- 3179
- 1005 --- 3180
- 1005 --- 3181
- 1005 --- 3182
- 1005 --- 3183
- 1005 --- 3184
- 1005 --- 3185
- 1005 --- 3186
- 1005 --- 3187
- 1005 --- 3188
- 1005 --- 3189
- 1005 --- 3190
- 1005 --- 3191
- 1005 --- 3192
- 1005 --- 3193
- 1005 --- 3194
- 1005 --- 3195
- 1005 --- 3196
- 1005 --- 3197
- 1005 --- 3198
- 1005 --- 3199
- 1005 --- 3200
- 1005 --- 3201
- 1005 --- 3202
- 1005 --- 3203
- 1005 --- 3204
- 1005 --- 3205
- 1005 --- 3206
- 1005 --- 3207
- 1005 --- 3208
- 1005 --- 3209
- 1005 --- 3210
- 1005 --- 3211
- 1005 --- 3212
- 1005 --- 3213
- 1005 --- 3214
- 1005 --- 3215
- 1005 --- 3216
- 1005 --- 3217
- 1005 --- 3218
- 1005 --- 3219
- 1005 --- 3220
- 1005 --- 3221
- 1005 --- 3222
- 1005 --- 3223
- 1005 --- 3224
- 1005 --- 3225
- 1005 --- 3226
- 1005 --- 3227
- 1005 --- 3228
- 1005 --- 3229
- 1005 --- 3230
- 1005 --- 3231
- 1005 --- 3232
- 1005 --- 3233
- 1005 --- 3234
- 1005 --- 3235
- 1005 --- 3236
- 1005 --- 3237
- 1005 --- 3238
- 1005 --- 3239
- 1005 --- 3240
- 1005 --- 3241
- 1005 --- 3242
- 1005 --- 3243
- 1005 --- 3244
- 1005 --- 3245
- 1005 --- 3246
- 1005 --- 3247
- 1005 --- 3248
- 1005 --- 3249
- 1005 --- 3250
- 1005 --- 3251
- 1005 --- 3252
- 1005 --- 3253
- 1005 --- 3254
- 1005 --- 3255
- 1005 --- 3256
- 1005 --- 3257
- 1005 --- 3258
- 1005 --- 3259
- 1005 --- 3260
- 1005 --- 3261
- 1005 --- 3262
- 1005 --- 3263
- 1005 --- 3264
- 1005 --- 3265
- 1005 --- 3266
- 1005 --- 3267
- 1005 --- 3268
- 1005 --- 3269
- 1005 --- 3270
- 1005 --- 3271
- 1005 --- 3272
- 1005 --- 3273
- 1005 --- 3274
- 1005 --- 3275
- 1005 --- 3276
- 1005 --- 3277
- 1005 --- 3278
- 1005 --- 3279
- 1005 --- 3280
- 1005 --- 3281
- 1005 --- 3282
- 1005 --- 3283
- 1005 --- 3284
- 1005 --- 3285
- 1005 --- 3286
- 1005 --- 3287
- 1005 --- 3288
- 1005 --- 3289
- 1005 --- 3290
- 1005 --- 3291
- 1005 --- 3292
- 1005 --- 3293
- 1005 --- 3294
- 1005 --- 3295
- 1005 --- 3296
- 1005 --- 3297
- 1005 --- 3298
- 1005 --- 3299
- 1005 --- 3300
- 1005 --- 3301
- 1005 --- 3302
- 1005 --- 3303
- 1005 --- 3304
- 1005 --- 3305
- 1005 --- 3306
- 1005 --- 3307
- 1005 --- 3308
- 1005 --- 3309
- 1005 --- 3310
- 1005 --- 3311
- 1005 --- 3312
- 1005 --- 3313
- 1005 --- 3314
- 1005 --- 3315
- 1005 --- 3316
- 1005 --- 3317
- 1005 --- 3318
- 1005 --- 3319
- 1005 --- 3320
- 1005 --- 3321
- 1005 --- 3322
- 1005 --- 3323
- 1005 --- 3324
- 1005 --- 3325
- 1005 --- 3326
- 1005 --- 3327
- 1005 --- 3328
- 1005 --- 3329
- 1005 --- 3330
- 1005 --- 3331
- 1005 --- 3332
- 1005 --- 3333
- 1005 --- 3334
- 1005 --- 3335
- 1005 --- 3336
- 1005 --- 3337
- 1005 --- 3338
- 1005 --- 3339
- 1005 --- 3340
- 1005 --- 3341
- 1005 --- 3342
- 1005 --- 3343
- 1005 --- 3344
- 1005 --- 3345
- 1005 --- 3346
- 1005 --- 3347
- 1005 --- 3348
- 1005 --- 3349
- 1005 --- 3350
- 1005 --- 3351
- 1005 --- 3352
- 1005 --- 3353
- 1005 --- 3354
- 1005 --- 3355
- 1005 --- 3356
- 1005 --- 3357
- 1005 --- 3358
- 1005 --- 3359
- 1005 --- 3360
- 1005 --- 3361
- 1005 --- 3362
- 1005 --- 3363
- 1005 --- 3364
- 1005 --- 3365
- 1005 --- 3366
- 1005 --- 3367
- 1005 --- 3368
- 1005 --- 3369
- 1005 --- 3370
- 1005 --- 3371
- 1005 --- 3372
- 1005 --- 3373
- 1005 --- 3374
- 1005 --- 3375
- 1005 --- 3376
- 1005 --- 3377
- 1005 --- 3378
- 1005 --- 3379
- 1005 --- 3380
- 1005 --- 3381
- 1005 --- 3382
- 1005 --- 3383
- 1005 --- 3384
- 1005 --- 3385
- 1005 --- 3386
- 1005 --- 3387
- 1005 --- 3388
- 1005 --- 3389
- 1005 --- 3390
- 1005 --- 3391
- 1005 --- 3392
- 1005 --- 3393
- 1005 --- 3394
- 1005 --- 3395
- 1005 --- 3396
- 1005 --- 3397
- 1005 --- 3398
- 1005 --- 3399
- 1005 --- 3400
- 1005 --- 3401
- 1005 --- 3402
- 1005 --- 3403
- 1005 --- 3404
- 1005 --- 3405
- 1005 --- 3406
- 1005 --- 3407
- 1005 --- 3408
- 1005 --- 3409
- 1005 --- 3410
- 1005 --- 3411
- 1005 --- 3412
- 1005 --- 3413
- 1005 --- 3414
- 1005 --- 3415
- 1005 --- 3416
- 1005 --- 3417
- 1005 --- 3418
- 1005 --- 3419
- 1005 --- 3420
- 1005 --- 3421
- 1005 --- 3422
- 1005 --- 3423
- 1005 --- 3424
- 1005 --- 3425
- 1005 --- 3426
- 1005 --- 3427
- 1005 --- 3428
- 1005 --- 3429
- 1005 --- 3430
- 1005 --- 3431
- 1005 --- 3432
- 1005 --- 3433
- 1005 --- 3434
- 1005 --- 3435
- 1005 --- 3436
- 1005 --- 3437
- 1005 --- 3438
- 1005 --- 3439
- 1005 --- 3440
- 1005 --- 3441
- 1005 --- 3442
- 1005 --- 3443
- 1005 --- 3444
- 1005 --- 3445
- 1005 --- 3446
- 1005 --- 3447
- 1005 --- 3448
- 1005 --- 3449
- 1005 --- 3450
- 1005 --- 3451
- 1005 --- 3452
- 1005 --- 3453
- 1005 --- 3454
- 1005 --- 3455
- 1005 --- 3456
- 1005 --- 3457
- 1005 --- 3458
- 1005 --- 3459
- 1005 --- 3460
- 1005 --- 3461
- 1005 --- 3462
- 1005 --- 3463
- 1005 --- 3464
- 1005 --- 3465
- 1005 --- 3466
- 1005 --- 3467
- 1005 --- 3468
- 1005 --- 3469
- 1005 --- 3470
- 1005 --- 3471
- 1005 --- 3472
- 1005 --- 3473
- 1005 --- 3474
- 1005 --- 3475
- 1005 --- 3476
- 1005 --- 3477
- 1005 --- 3478
- 1005 --- 3479
- 1005 --- 3480
- 1005 --- 3481
- 1005 --- 3482
- 1005 --- 3483
- 1005 --- 3484
- 1005 --- 3485
- 1005 --- 3486
- 1005 --- 3487
- 1005 --- 3488
- 1005 --- 3489
- 1005 --- 3490
- 1005 --- 3491
- 1005 --- 3492
- 1005 --- 3493
- 1005 --- 3494
- 1005 --- 3495
- 1005 --- 3496
- 1005 --- 3497
- 1005 --- 3498
- 1005 --- 3499
- 1005 --- 3500
- 1005 --- 3501
- 1005 --- 3502
- 1005 --- 3503
- 1005 --- 3504
- 1005 --- 3505
- 1005 --- 3506
- 1005 --- 3507
- 1005 --- 3508
- 1005 --- 3509
- 1005 --- 3510
- 1005 --- 3511
- 1005 --- 3512
- 1005 --- 3513
- 1005 --- 3514
- 1005 --- 3515
- 1005 --- 3516
- 1005 --- 3517
- 1005 --- 3518
- 1005 --- 3519
- 1005 --- 3520
- 1005 --- 3521
- 1005 --- 3522
- 1005 --- 3523
- 1005 --- 3524
- 1005 --- 3525
- 1005 --- 3526
- 1005 --- 3527
- 1005 --- 3528
- 1005 --- 3529
- 1005 --- 3530
- 1005 --- 3531
- 1005 --- 3532
- 1005 --- 3533
- 1005 --- 3534
- 1005 --- 3535
- 1005 --- 3536
- 1005 --- 3537
- 1005 --- 3538
- 1005 --- 3539
- 1005 --- 3540
- 1005 --- 3541
- 1005 --- 3542
- 1005 --- 3543
- 1005 --- 3544
- 1005 --- 3545
- 1005 --- 3546
- 1005 --- 3547
- 1005 --- 3548
- 1005 --- 3549
- 1005 --- 3550
- 1005 --- 3551
- 1005 --- 3552
- 1005 --- 3553
- 1005 --- 3554
- 1005 --- 3555
- 1005 --- 3556
- 1005 --- 3557
- 1005 --- 3558
- 1005 --- 3559
- 1005 --- 3560
- 1005 --- 3561
- 1005 --- 3562
- 1005 --- 3563
- 1005 --- 3564
- 1005 --- 3565
- 1005 --- 3566
- 1005 --- 3567
- 1005 --- 3568
- 1005 --- 3569
- 1005 --- 3570
- 1005 --- 3571
- 1005 --- 3572
- 1005 --- 3573
- 1005 --- 3574
- 1005 --- 3575
- 1005 --- 3576
- 1005 --- 3577
- 1005 --- 3578
- 1005 --- 3579
- 1005 --- 3580
- 1005 --- 3581
- 1005 --- 3582
- 1005 --- 3583
- 1005 --- 3584
- 1005 --- 3585
- 1005 --- 3586
- 1005 --- 3587
- 1005 --- 3588
- 1005 --- 3589
- 1005 --- 3590
- 1005 --- 3591
- 1005 --- 3592
- 1005 --- 3593
- 1005 --- 3594
- 1005 --- 3595
- 1005 --- 3596
- 1005 --- 3597
- 1005 --- 3598
- 1005 --- 3599
- 1005 --- 3600
- 1005 --- 3601
- 1005 --- 3602
- 1005 --- 3603
- 1005 --- 3604
- 1005 --- 3605
- 1005 --- 3606
- 1005 --- 3607
- 1005 --- 3608
- 1005 --- 3609
- 1005 --- 3610
- 1005 --- 3611
- 1005 --- 3612
- 1005 --- 3613
- 1005 --- 3614
- 1005 --- 3615
- 1005 --- 3616
- 1005 --- 3617
- 1005 --- 3618
- 1005 --- 3619
- 1005 --- 3620
- 1005 --- 3621
- 1005 --- 3622
- 1005 --- 3623
- 1005 --- 3624
- 1005 --- 3625
- 1005 --- 3626
- 1005 --- 3627
- 1005 --- 3628
- 1005 --- 3629
- 1005 --- 3630
- 1005 --- 3631
- 1005 --- 3632
- 1005 --- 3633
- 1005 --- 3634
- 1005 --- 3635
- 1005 --- 3636
- 1005 --- 3637
- 1005 --- 3638
- 1005 --- 3639
- 1005 --- 3640
- 1005 --- 3641
- 1005 --- 3642
- 1005 --- 3643
- 1005 --- 3644
- 1005 --- 3645
- 1005 --- 3646
- 1005 --- 3647
- 1005 --- 3648
- 1005 --- 3649
- 1005 --- 3650
- 1005 --- 3651
- 1005 --- 3652
- 1005 --- 3653
- 1005 --- 3654
- 1005 --- 3655
- 1005 --- 3656
- 1005 --- 3657
- 1005 --- 3658
- 1005 --- 3659
- 1005 --- 3660
- 1005 --- 3661
- 1005 --- 3662
- 1005 --- 3663
- 1005 --- 3664
- 1005 --- 3665
- 1005 --- 3666
- 1005 --- 3667
- 1005 --- 3668
- 1005 --- 3669
- 1005 --- 3670
- 1005 --- 3671
- 1005 --- 3672
- 1005 --- 3673
- 1005 --- 3674
- 1005 --- 3675
- 1005 --- 3676
- 1005 --- 3677
- 1005 --- 3678
- 1005 --- 3679
- 1005 --- 3680
- 1005 --- 3681
- 1005 --- 3682
- 1005 --- 3683
- 1005 --- 3684
- 1005 --- 3685
- 1005 --- 3686
- 1005 --- 3687
- 1005 --- 3688
- 1005 --- 3689
- 1005 --- 3690
- 1005 --- 3691
- 1005 --- 3692
- 1005 --- 3693
- 1005 --- 3694
- 1005 --- 3695
- 1005 --- 3696
- 1005 --- 3697
- 1005 --- 3698
- 1005 --- 3699
- 1005 --- 3700
- 1005 --- 3701
- 1005 --- 3702
- 1005 --- 3703
- 1005 --- 3704
- 1005 --- 3705
- 1005 --- 3706
- 1005 --- 3707
- 1005 --- 3708
- 1005 --- 3709
- 1005 --- 3710
- 1005 --- 3711
- 1005 --- 3712
- 1005 --- 3713
- 1005 --- 3714
- 1005 --- 3715
- 1005 --- 3716
- 1005 --- 3717
- 1005 --- 3718
- 1005 --- 3719
- 1005 --- 3720
- 1005 --- 3721
- 1005 --- 3722
- 1005 --- 3723
- 1005 --- 3724
- 1005 --- 3725
- 1005 --- 3726
- 1005 --- 3727
- 1005 --- 3728
- 1005 --- 3729
- 1005 --- 3730
- 1005 --- 3731
- 1005 --- 3732
- 1005 --- 3733
- 1005 --- 3734
- 1005 --- 3735
- 1005 --- 3736
- 1005 --- 3737
- 1005 --- 3738
- 1005 --- 3739
- 1005 --- 3740
- 1005 --- 3741
- 1005 --- 3742
- 1005 --- 3743
- 1005 --- 3744
- 1005 --- 3745
- 1005 --- 3746
- 1005 --- 3747
- 1005 --- 3748
- 1005 --- 3749
- 1005 --- 3750
- 1005 --- 3751
- 1005 --- 3752
- 1005 --- 3753
- 1005 --- 3754
- 1005 --- 3755
- 1005 --- 3756
- 1005 --- 3757
- 1005 --- 3758
- 1005 --- 3759
- 1005 --- 3760
- 1005 --- 3761
- 1005 --- 3762
- 1005 --- 3763
- 1005 --- 3764
- 1005 --- 3765
- 1005 --- 3766
- 1005 --- 3767
- 1005 --- 3768
- 1005 --- 3769
- 1005 --- 3770
- 1005 --- 3771
- 1005 --- 3772
- 1005 --- 3773
- 1005 --- 3774
- 1005 --- 3775
- 1005 --- 3776
- 1005 --- 3777
- 1005 --- 3778
- 1005 --- 3779
- 1005 --- 3780
- 1005 --- 3781
- 1005 --- 3782
- 1005 --- 3783
- 1005 --- 3784
- 1005 --- 3785
- 1005 --- 3786
- 1005 --- 3787
- 1005 --- 3788
- 1005 --- 3789
- 1005 --- 3790
- 1005 --- 3791
- 1005 --- 3792
- 1005 --- 3793
- 1005 --- 3794
- 1005 --- 3795
- 1005 --- 3796
- 1005 --- 3797
- 1005 --- 3798
- 1005 --- 3799
- 1005 --- 3800
- 1005 --- 3801
- 1005 --- 3802
- 1005 --- 3803
- 1005 --- 3804
- 1005 --- 3805
- 1005 --- 3806
- 1005 --- 3807
- 1005 --- 3808
- 1005 --- 3809
- 1005 --- 3810
- 1005 --- 3811
- 1005 --- 3812
- 1005 --- 3813
- 1005 --- 3814
- 1005 --- 3815
- 1005 --- 3816
- 1005 --- 3817
- 1005 --- 3818
- 1005 --- 3819
- 1005 --- 3820
- 1005 --- 3821
- 1005 --- 3822
- 1005 --- 3823
- 1005 --- 3824
- 1005 --- 3825
- 1005 --- 3826
- 1005 --- 3827
- 1005 --- 3828
- 1005 --- 3829
- 1005 --- 3830
- 1005 --- 3831
- 1005 --- 3832
- 1005 --- 3833
- 1005 --- 3834
- 1005 --- 3835
- 1005 --- 3836
- 1005 --- 3837
- 1005 --- 3838
- 1005 --- 3839
- 1005 --- 3840
- 1005 --- 3841
- 1005 --- 3842
- 1005 --- 3843
- 1005 --- 3844
- 1005 --- 3845
- 1005 --- 3846
- 1005 --- 3847
- 1005 --- 3848
- 1005 --- 3849
- 1005 --- 3850
- 1005 --- 3851
- 1005 --- 3852
- 1005 --- 3853
- 1005 --- 3854
- 1005 --- 3855
- 1005 --- 3856
- 1005 --- 3857
- 1005 --- 3858
- 1005 --- 3859
- 1005 --- 3860
- 1005 --- 3861
- 1005 --- 3862
- 1005 --- 3863
- 1005 --- 3864
- 1005 --- 3865
- 1005 --- 3866
- 1005 --- 3867
- 1005 --- 3868
- 1005 --- 3869
- 1005 --- 3870
- 1005 --- 3871
- 1005 --- 3872
- 1005 --- 3873
- 1005 --- 3874
- 1005 --- 3875
- 1005 --- 3876
- 1005 --- 3877
- 1005 --- 3878
- 1005 --- 3879
- 1005 --- 3880
- 1005 --- 3881
- 1005 --- 3882
- 1005 --- 3883
- 1005 --- 3884
- 1005 --- 3885
- 1005 --- 3886
- 1005 --- 3887
- 1005 --- 3888
- 1005 --- 3889
- 1005 --- 3890
- 1005 --- 3891
- 1005 --- 3892
- 1005 --- 3893
- 1005 --- 3894
- 1005 --- 3895
- 1005 --- 3896
- 1005 --- 3897
- 1005 --- 3898
- 1005 --- 3899
- 1005 --- 3900
- 1005 --- 3901
- 1005 --- 3902
- 1005 --- 3903
- 1005 --- 3904
- 1005 --- 3905
- 1005 --- 3906
- 1005 --- 3907
- 1005 --- 3908
- 1005 --- 3909
- 1005 --- 3910
- 1005 --- 3911
- 1005 --- 3912
- 1005 --- 3913
- 1005 --- 3914
- 1005 --- 3915
- 1005 --- 3916
- 1005 --- 3917
- 1005 --- 3918
- 1005 --- 3919
- 1005 --- 3920
- 1005 --- 3921
- 1005 --- 3922
- 1005 --- 3923
- 1005 --- 3924
- 1005 --- 3925
- 1005 --- 3926
- 1005 --- 3927
- 1005 --- 3928
- 1005 --- 3929
- 1005 --- 3930
- 1005 --- 3931
- 1005 --- 3932
- 1005 --- 3933
- 1005 --- 3934
- 1005 --- 3935
- 1005 --- 3936
- 1005 --- 3937
- 1005 --- 3938
- 1005 --- 3939
- 1005 --- 3940
- 1005 --- 3941
- 1005 --- 3942
- 1005 --- 3943
- 1005 --- 3944
- 1005 --- 3945
- 1005 --- 3946
- 1005 --- 3947
- 1005 --- 3948
- 1005 --- 3949
- 1005 --- 3950
- 1005 --- 3951
- 1005 --- 3952
- 1005 --- 3953
- 1005 --- 3954
- 1005 --- 3955
- 1005 --- 3956
- 1005 --- 3957
- 1005 --- 3958
- 1005 --- 3959
- 1005 --- 3960
- 1005 --- 3961
- 1005 --- 3962
- 1005 --- 3963
- 1005 --- 3964
- 1005 --- 3965
- 1005 --- 3966
- 1005 --- 3967
- 1005 --- 3968
- 1005 --- 3969
- 1005 --- 3970
- 1005 --- 3971
- 1005 --- 3972
- 1005 --- 3973
- 1005 --- 3974
- 1005 --- 3975
- 1005 --- 3976
- 1005 --- 3977
- 1005 --- 3978
- 1005 --- 3979
- 1005 --- 3980
- 1005 --- 3981
- 1005 --- 3982
- 1005 --- 3983
- 1005 --- 3984
- 1005 --- 3985
- 1005 --- 3986
- 1005 --- 3987
- 1005 --- 3988
- 1005 --- 3989
- 1005 --- 3990
- 1005 --- 3991
- 1005 --- 3992
- 1005 --- 3993
- 1005 --- 3994
- 1005 --- 3995
- 1005 --- 3996
- 1005 --- 3997
- 1005 --- 3998
- 1005 --- 3999
- 1005 --- 4000
- 1005 --- 4001
- 1005 --- 4002
- 1005 --- 4003
- 1005 --- 4004
- 1005 --- 4005
- 1005 --- 4006
- 1005 --- 4007
- 1005 --- 4008
- 1005 --- 4009
- 1005 --- 4010
+ 2009 <--x 1007
+ 2009 <--x 2008
+ 2010 <--x 1008
+ 2010 <--x 2008
+ 2011 <--x 1009
+ 2011 <--x 2008
+ 2012 <--x 1010
+ 2012 <--x 2008
+ 2013 <--x 1011
+ 2013 <--x 2008
+ 2014 <--x 1012
+ 2014 <--x 2008
+ 2015 <--x 1013
+ 2015 <--x 2008
+ 2016 <--x 1014
+ 2016 <--x 2008
+ 2017 <--x 1015
+ 2017 <--x 2008
+ 2018 <--x 1016
+ 2018 <--x 2008
+ 2019 <--x 1017
+ 2019 <--x 2008
+ 2020 <--x 1018
+ 2020 <--x 2008
+ 2021 <--x 1019
+ 2021 <--x 2008
+ 2022 <--x 1020
+ 2022 <--x 2008
+ 2023 <--x 1021
+ 2023 <--x 2008
+ 2024 <--x 1022
+ 2024 <--x 2008
+ 2025 <--x 1023
+ 2025 <--x 2008
+ 2026 <--x 1024
+ 2026 <--x 2008
+ 2027 <--x 1025
+ 2027 <--x 2008
+ 2028 <--x 1026
+ 2028 <--x 2008
+ 2029 <--x 1027
+ 2029 <--x 2008
+ 2030 <--x 1028
+ 2030 <--x 2008
+ 2031 <--x 1029
+ 2031 <--x 2008
+ 2032 <--x 1030
+ 2032 <--x 2008
+ 2033 <--x 1031
+ 2033 <--x 2008
+ 2034 <--x 1032
+ 2034 <--x 2008
+ 2035 <--x 1033
+ 2035 <--x 2008
+ 2036 <--x 1034
+ 2036 <--x 2008
+ 2037 <--x 1035
+ 2037 <--x 2008
+ 2038 <--x 1036
+ 2038 <--x 2008
+ 2039 <--x 1037
+ 2039 <--x 2008
+ 2040 <--x 1038
+ 2040 <--x 2008
+ 2041 <--x 1039
+ 2041 <--x 2008
+ 2042 <--x 1040
+ 2042 <--x 2008
+ 2043 <--x 1041
+ 2043 <--x 2008
+ 2044 <--x 1042
+ 2044 <--x 2008
+ 2045 <--x 1043
+ 2045 <--x 2008
+ 2046 <--x 1044
+ 2046 <--x 2008
+ 2047 <--x 1045
+ 2047 <--x 2008
+ 2048 <--x 1046
+ 2048 <--x 2008
+ 2049 <--x 1047
+ 2049 <--x 2008
+ 2050 <--x 1048
+ 2050 <--x 2008
+ 2051 <--x 1049
+ 2051 <--x 2008
+ 2052 <--x 1050
+ 2052 <--x 2008
+ 2053 <--x 1051
+ 2053 <--x 2008
+ 2054 <--x 1052
+ 2054 <--x 2008
+ 2055 <--x 1053
+ 2055 <--x 2008
+ 2056 <--x 1054
+ 2056 <--x 2008
+ 2057 <--x 1055
+ 2057 <--x 2008
+ 2058 <--x 1056
+ 2058 <--x 2008
+ 2059 <--x 1057
+ 2059 <--x 2008
+ 2060 <--x 1058
+ 2060 <--x 2008
+ 2061 <--x 1059
+ 2061 <--x 2008
+ 2062 <--x 1060
+ 2062 <--x 2008
+ 2063 <--x 1061
+ 2063 <--x 2008
+ 2064 <--x 1062
+ 2064 <--x 2008
+ 2065 <--x 1063
+ 2065 <--x 2008
+ 2066 <--x 1064
+ 2066 <--x 2008
+ 2067 <--x 1065
+ 2067 <--x 2008
+ 2068 <--x 1066
+ 2068 <--x 2008
+ 2069 <--x 1067
+ 2069 <--x 2008
+ 2070 <--x 1068
+ 2070 <--x 2008
+ 2071 <--x 1069
+ 2071 <--x 2008
+ 2072 <--x 1070
+ 2072 <--x 2008
+ 2073 <--x 1071
+ 2073 <--x 2008
+ 2074 <--x 1072
+ 2074 <--x 2008
+ 2075 <--x 1073
+ 2075 <--x 2008
+ 2076 <--x 1074
+ 2076 <--x 2008
+ 2077 <--x 1075
+ 2077 <--x 2008
+ 2078 <--x 1076
+ 2078 <--x 2008
+ 2079 <--x 1077
+ 2079 <--x 2008
+ 2080 <--x 1078
+ 2080 <--x 2008
+ 2081 <--x 1079
+ 2081 <--x 2008
+ 2082 <--x 1080
+ 2082 <--x 2008
+ 2083 <--x 1081
+ 2083 <--x 2008
+ 2084 <--x 1082
+ 2084 <--x 2008
+ 2085 <--x 1083
+ 2085 <--x 2008
+ 2086 <--x 1084
+ 2086 <--x 2008
+ 2087 <--x 1085
+ 2087 <--x 2008
+ 2088 <--x 1086
+ 2088 <--x 2008
+ 2089 <--x 1087
+ 2089 <--x 2008
+ 2090 <--x 1088
+ 2090 <--x 2008
+ 2091 <--x 1089
+ 2091 <--x 2008
+ 2092 <--x 1090
+ 2092 <--x 2008
+ 2093 <--x 1091
+ 2093 <--x 2008
+ 2094 <--x 1092
+ 2094 <--x 2008
+ 2095 <--x 1093
+ 2095 <--x 2008
+ 2096 <--x 1094
+ 2096 <--x 2008
+ 2097 <--x 1095
+ 2097 <--x 2008
+ 2098 <--x 1096
+ 2098 <--x 2008
+ 2099 <--x 1097
+ 2099 <--x 2008
+ 2100 <--x 1098
+ 2100 <--x 2008
+ 2101 <--x 1099
+ 2101 <--x 2008
+ 2102 <--x 1100
+ 2102 <--x 2008
+ 2103 <--x 1101
+ 2103 <--x 2008
+ 2104 <--x 1102
+ 2104 <--x 2008
+ 2105 <--x 1103
+ 2105 <--x 2008
+ 2106 <--x 1104
+ 2106 <--x 2008
+ 2107 <--x 1105
+ 2107 <--x 2008
+ 2108 <--x 1106
+ 2108 <--x 2008
+ 2109 <--x 1107
+ 2109 <--x 2008
+ 2110 <--x 1108
+ 2110 <--x 2008
+ 2111 <--x 1109
+ 2111 <--x 2008
+ 2112 <--x 1110
+ 2112 <--x 2008
+ 2113 <--x 1111
+ 2113 <--x 2008
+ 2114 <--x 1112
+ 2114 <--x 2008
+ 2115 <--x 1113
+ 2115 <--x 2008
+ 2116 <--x 1114
+ 2116 <--x 2008
+ 2117 <--x 1115
+ 2117 <--x 2008
+ 2118 <--x 1116
+ 2118 <--x 2008
+ 2119 <--x 1117
+ 2119 <--x 2008
+ 2120 <--x 1118
+ 2120 <--x 2008
+ 2121 <--x 1119
+ 2121 <--x 2008
+ 2122 <--x 1120
+ 2122 <--x 2008
+ 2123 <--x 1121
+ 2123 <--x 2008
+ 2124 <--x 1122
+ 2124 <--x 2008
+ 2125 <--x 1123
+ 2125 <--x 2008
+ 2126 <--x 1124
+ 2126 <--x 2008
+ 2127 <--x 1125
+ 2127 <--x 2008
+ 2128 <--x 1126
+ 2128 <--x 2008
+ 2129 <--x 1127
+ 2129 <--x 2008
+ 2130 <--x 1128
+ 2130 <--x 2008
+ 2131 <--x 1129
+ 2131 <--x 2008
+ 2132 <--x 1130
+ 2132 <--x 2008
+ 2133 <--x 1131
+ 2133 <--x 2008
+ 2134 <--x 1132
+ 2134 <--x 2008
+ 2135 <--x 1133
+ 2135 <--x 2008
+ 2136 <--x 1134
+ 2136 <--x 2008
+ 2137 <--x 1135
+ 2137 <--x 2008
+ 2138 <--x 1136
+ 2138 <--x 2008
+ 2139 <--x 1137
+ 2139 <--x 2008
+ 2140 <--x 1138
+ 2140 <--x 2008
+ 2141 <--x 1139
+ 2141 <--x 2008
+ 2142 <--x 1140
+ 2142 <--x 2008
+ 2143 <--x 1141
+ 2143 <--x 2008
+ 2144 <--x 1142
+ 2144 <--x 2008
+ 2145 <--x 1143
+ 2145 <--x 2008
+ 2146 <--x 1144
+ 2146 <--x 2008
+ 2147 <--x 1145
+ 2147 <--x 2008
+ 2148 <--x 1146
+ 2148 <--x 2008
+ 2149 <--x 1147
+ 2149 <--x 2008
+ 2150 <--x 1148
+ 2150 <--x 2008
+ 2151 <--x 1149
+ 2151 <--x 2008
+ 2152 <--x 1150
+ 2152 <--x 2008
+ 2153 <--x 1151
+ 2153 <--x 2008
+ 2154 <--x 1152
+ 2154 <--x 2008
+ 2155 <--x 1153
+ 2155 <--x 2008
+ 2156 <--x 1154
+ 2156 <--x 2008
+ 2157 <--x 1155
+ 2157 <--x 2008
+ 2158 <--x 1156
+ 2158 <--x 2008
+ 2159 <--x 1157
+ 2159 <--x 2008
+ 2160 <--x 1158
+ 2160 <--x 2008
+ 2161 <--x 1159
+ 2161 <--x 2008
+ 2162 <--x 1160
+ 2162 <--x 2008
+ 2163 <--x 1161
+ 2163 <--x 2008
+ 2164 <--x 1162
+ 2164 <--x 2008
+ 2165 <--x 1163
+ 2165 <--x 2008
+ 2166 <--x 1164
+ 2166 <--x 2008
+ 2167 <--x 1165
+ 2167 <--x 2008
+ 2168 <--x 1166
+ 2168 <--x 2008
+ 2169 <--x 1167
+ 2169 <--x 2008
+ 2170 <--x 1168
+ 2170 <--x 2008
+ 2171 <--x 1169
+ 2171 <--x 2008
+ 2172 <--x 1170
+ 2172 <--x 2008
+ 2173 <--x 1171
+ 2173 <--x 2008
+ 2174 <--x 1172
+ 2174 <--x 2008
+ 2175 <--x 1173
+ 2175 <--x 2008
+ 2176 <--x 1174
+ 2176 <--x 2008
+ 2177 <--x 1175
+ 2177 <--x 2008
+ 2178 <--x 1176
+ 2178 <--x 2008
+ 2179 <--x 1177
+ 2179 <--x 2008
+ 2180 <--x 1178
+ 2180 <--x 2008
+ 2181 <--x 1179
+ 2181 <--x 2008
+ 2182 <--x 1180
+ 2182 <--x 2008
+ 2183 <--x 1181
+ 2183 <--x 2008
+ 2184 <--x 1182
+ 2184 <--x 2008
+ 2185 <--x 1183
+ 2185 <--x 2008
+ 2186 <--x 1184
+ 2186 <--x 2008
+ 2187 <--x 1185
+ 2187 <--x 2008
+ 2188 <--x 1186
+ 2188 <--x 2008
+ 2189 <--x 1187
+ 2189 <--x 2008
+ 2190 <--x 1188
+ 2190 <--x 2008
+ 2191 <--x 1189
+ 2191 <--x 2008
+ 2192 <--x 1190
+ 2192 <--x 2008
+ 2193 <--x 1191
+ 2193 <--x 2008
+ 2194 <--x 1192
+ 2194 <--x 2008
+ 2195 <--x 1193
+ 2195 <--x 2008
+ 2196 <--x 1194
+ 2196 <--x 2008
+ 2197 <--x 1195
+ 2197 <--x 2008
+ 2198 <--x 1196
+ 2198 <--x 2008
+ 2199 <--x 1197
+ 2199 <--x 2008
+ 2200 <--x 1198
+ 2200 <--x 2008
+ 2201 <--x 1199
+ 2201 <--x 2008
+ 2202 <--x 1200
+ 2202 <--x 2008
+ 2203 <--x 1201
+ 2203 <--x 2008
+ 2204 <--x 1202
+ 2204 <--x 2008
+ 2205 <--x 1203
+ 2205 <--x 2008
+ 2206 <--x 1204
+ 2206 <--x 2008
+ 2207 <--x 1205
+ 2207 <--x 2008
+ 2208 <--x 1206
+ 2208 <--x 2008
+ 2209 <--x 1207
+ 2209 <--x 2008
+ 2210 <--x 1208
+ 2210 <--x 2008
+ 2211 <--x 1209
+ 2211 <--x 2008
+ 2212 <--x 1210
+ 2212 <--x 2008
+ 2213 <--x 1211
+ 2213 <--x 2008
+ 2214 <--x 1212
+ 2214 <--x 2008
+ 2215 <--x 1213
+ 2215 <--x 2008
+ 2216 <--x 1214
+ 2216 <--x 2008
+ 2217 <--x 1215
+ 2217 <--x 2008
+ 2218 <--x 1216
+ 2218 <--x 2008
+ 2219 <--x 1217
+ 2219 <--x 2008
+ 2220 <--x 1218
+ 2220 <--x 2008
+ 2221 <--x 1219
+ 2221 <--x 2008
+ 2222 <--x 1220
+ 2222 <--x 2008
+ 2223 <--x 1221
+ 2223 <--x 2008
+ 2224 <--x 1222
+ 2224 <--x 2008
+ 2225 <--x 1223
+ 2225 <--x 2008
+ 2226 <--x 1224
+ 2226 <--x 2008
+ 2227 <--x 1225
+ 2227 <--x 2008
+ 2228 <--x 1226
+ 2228 <--x 2008
+ 2229 <--x 1227
+ 2229 <--x 2008
+ 2230 <--x 1228
+ 2230 <--x 2008
+ 2231 <--x 1229
+ 2231 <--x 2008
+ 2232 <--x 1230
+ 2232 <--x 2008
+ 2233 <--x 1231
+ 2233 <--x 2008
+ 2234 <--x 1232
+ 2234 <--x 2008
+ 2235 <--x 1233
+ 2235 <--x 2008
+ 2236 <--x 1234
+ 2236 <--x 2008
+ 2237 <--x 1235
+ 2237 <--x 2008
+ 2238 <--x 1236
+ 2238 <--x 2008
+ 2239 <--x 1237
+ 2239 <--x 2008
+ 2240 <--x 1238
+ 2240 <--x 2008
+ 2241 <--x 1239
+ 2241 <--x 2008
+ 2242 <--x 1240
+ 2242 <--x 2008
+ 2243 <--x 1241
+ 2243 <--x 2008
+ 2244 <--x 1242
+ 2244 <--x 2008
+ 2245 <--x 1243
+ 2245 <--x 2008
+ 2246 <--x 1244
+ 2246 <--x 2008
+ 2247 <--x 1245
+ 2247 <--x 2008
+ 2248 <--x 1246
+ 2248 <--x 2008
+ 2249 <--x 1247
+ 2249 <--x 2008
+ 2250 <--x 1248
+ 2250 <--x 2008
+ 2251 <--x 1249
+ 2251 <--x 2008
+ 2252 <--x 1250
+ 2252 <--x 2008
+ 2253 <--x 1251
+ 2253 <--x 2008
+ 2254 <--x 1252
+ 2254 <--x 2008
+ 2255 <--x 1253
+ 2255 <--x 2008
+ 2256 <--x 1254
+ 2256 <--x 2008
+ 2257 <--x 1255
+ 2257 <--x 2008
+ 2258 <--x 1256
+ 2258 <--x 2008
+ 2259 <--x 1257
+ 2259 <--x 2008
+ 2260 <--x 1258
+ 2260 <--x 2008
+ 2261 <--x 1259
+ 2261 <--x 2008
+ 2262 <--x 1260
+ 2262 <--x 2008
+ 2263 <--x 1261
+ 2263 <--x 2008
+ 2264 <--x 1262
+ 2264 <--x 2008
+ 2265 <--x 1263
+ 2265 <--x 2008
+ 2266 <--x 1264
+ 2266 <--x 2008
+ 2267 <--x 1265
+ 2267 <--x 2008
+ 2268 <--x 1266
+ 2268 <--x 2008
+ 2269 <--x 1267
+ 2269 <--x 2008
+ 2270 <--x 1268
+ 2270 <--x 2008
+ 2271 <--x 1269
+ 2271 <--x 2008
+ 2272 <--x 1270
+ 2272 <--x 2008
+ 2273 <--x 1271
+ 2273 <--x 2008
+ 2274 <--x 1272
+ 2274 <--x 2008
+ 2275 <--x 1273
+ 2275 <--x 2008
+ 2276 <--x 1274
+ 2276 <--x 2008
+ 2277 <--x 1275
+ 2277 <--x 2008
+ 2278 <--x 1276
+ 2278 <--x 2008
+ 2279 <--x 1277
+ 2279 <--x 2008
+ 2280 <--x 1278
+ 2280 <--x 2008
+ 2281 <--x 1279
+ 2281 <--x 2008
+ 2282 <--x 1280
+ 2282 <--x 2008
+ 2283 <--x 1281
+ 2283 <--x 2008
+ 2284 <--x 1282
+ 2284 <--x 2008
+ 2285 <--x 1283
+ 2285 <--x 2008
+ 2286 <--x 1284
+ 2286 <--x 2008
+ 2287 <--x 1285
+ 2287 <--x 2008
+ 2288 <--x 1286
+ 2288 <--x 2008
+ 2289 <--x 1287
+ 2289 <--x 2008
+ 2290 <--x 1288
+ 2290 <--x 2008
+ 2291 <--x 1289
+ 2291 <--x 2008
+ 2292 <--x 1290
+ 2292 <--x 2008
+ 2293 <--x 1291
+ 2293 <--x 2008
+ 2294 <--x 1292
+ 2294 <--x 2008
+ 2295 <--x 1293
+ 2295 <--x 2008
+ 2296 <--x 1294
+ 2296 <--x 2008
+ 2297 <--x 1295
+ 2297 <--x 2008
+ 2298 <--x 1296
+ 2298 <--x 2008
+ 2299 <--x 1297
+ 2299 <--x 2008
+ 2300 <--x 1298
+ 2300 <--x 2008
+ 2301 <--x 1299
+ 2301 <--x 2008
+ 2302 <--x 1300
+ 2302 <--x 2008
+ 2303 <--x 1301
+ 2303 <--x 2008
+ 2304 <--x 1302
+ 2304 <--x 2008
+ 2305 <--x 1303
+ 2305 <--x 2008
+ 2306 <--x 1304
+ 2306 <--x 2008
+ 2307 <--x 1305
+ 2307 <--x 2008
+ 2308 <--x 1306
+ 2308 <--x 2008
+ 2309 <--x 1307
+ 2309 <--x 2008
+ 2310 <--x 1308
+ 2310 <--x 2008
+ 2311 <--x 1309
+ 2311 <--x 2008
+ 2312 <--x 1310
+ 2312 <--x 2008
+ 2313 <--x 1311
+ 2313 <--x 2008
+ 2314 <--x 1312
+ 2314 <--x 2008
+ 2315 <--x 1313
+ 2315 <--x 2008
+ 2316 <--x 1314
+ 2316 <--x 2008
+ 2317 <--x 1315
+ 2317 <--x 2008
+ 2318 <--x 1316
+ 2318 <--x 2008
+ 2319 <--x 1317
+ 2319 <--x 2008
+ 2320 <--x 1318
+ 2320 <--x 2008
+ 2321 <--x 1319
+ 2321 <--x 2008
+ 2322 <--x 1320
+ 2322 <--x 2008
+ 2323 <--x 1321
+ 2323 <--x 2008
+ 2324 <--x 1322
+ 2324 <--x 2008
+ 2325 <--x 1323
+ 2325 <--x 2008
+ 2326 <--x 1324
+ 2326 <--x 2008
+ 2327 <--x 1325
+ 2327 <--x 2008
+ 2328 <--x 1326
+ 2328 <--x 2008
+ 2329 <--x 1327
+ 2329 <--x 2008
+ 2330 <--x 1328
+ 2330 <--x 2008
+ 2331 <--x 1329
+ 2331 <--x 2008
+ 2332 <--x 1330
+ 2332 <--x 2008
+ 2333 <--x 1331
+ 2333 <--x 2008
+ 2334 <--x 1332
+ 2334 <--x 2008
+ 2335 <--x 1333
+ 2335 <--x 2008
+ 2336 <--x 1334
+ 2336 <--x 2008
+ 2337 <--x 1335
+ 2337 <--x 2008
+ 2338 <--x 1336
+ 2338 <--x 2008
+ 2339 <--x 1337
+ 2339 <--x 2008
+ 2340 <--x 1338
+ 2340 <--x 2008
+ 2341 <--x 1339
+ 2341 <--x 2008
+ 2342 <--x 1340
+ 2342 <--x 2008
+ 2343 <--x 1341
+ 2343 <--x 2008
+ 2344 <--x 1342
+ 2344 <--x 2008
+ 2345 <--x 1343
+ 2345 <--x 2008
+ 2346 <--x 1344
+ 2346 <--x 2008
+ 2347 <--x 1345
+ 2347 <--x 2008
+ 2348 <--x 1346
+ 2348 <--x 2008
+ 2349 <--x 1347
+ 2349 <--x 2008
+ 2350 <--x 1348
+ 2350 <--x 2008
+ 2351 <--x 1349
+ 2351 <--x 2008
+ 2352 <--x 1350
+ 2352 <--x 2008
+ 2353 <--x 1351
+ 2353 <--x 2008
+ 2354 <--x 1352
+ 2354 <--x 2008
+ 2355 <--x 1353
+ 2355 <--x 2008
+ 2356 <--x 1354
+ 2356 <--x 2008
+ 2357 <--x 1355
+ 2357 <--x 2008
+ 2358 <--x 1356
+ 2358 <--x 2008
+ 2359 <--x 1357
+ 2359 <--x 2008
+ 2360 <--x 1358
+ 2360 <--x 2008
+ 2361 <--x 1359
+ 2361 <--x 2008
+ 2362 <--x 1360
+ 2362 <--x 2008
+ 2363 <--x 1361
+ 2363 <--x 2008
+ 2364 <--x 1362
+ 2364 <--x 2008
+ 2365 <--x 1363
+ 2365 <--x 2008
+ 2366 <--x 1364
+ 2366 <--x 2008
+ 2367 <--x 1365
+ 2367 <--x 2008
+ 2368 <--x 1366
+ 2368 <--x 2008
+ 2369 <--x 1367
+ 2369 <--x 2008
+ 2370 <--x 1368
+ 2370 <--x 2008
+ 2371 <--x 1369
+ 2371 <--x 2008
+ 2372 <--x 1370
+ 2372 <--x 2008
+ 2373 <--x 1371
+ 2373 <--x 2008
+ 2374 <--x 1372
+ 2374 <--x 2008
+ 2375 <--x 1373
+ 2375 <--x 2008
+ 2376 <--x 1374
+ 2376 <--x 2008
+ 2377 <--x 1375
+ 2377 <--x 2008
+ 2378 <--x 1376
+ 2378 <--x 2008
+ 2379 <--x 1377
+ 2379 <--x 2008
+ 2380 <--x 1378
+ 2380 <--x 2008
+ 2381 <--x 1379
+ 2381 <--x 2008
+ 2382 <--x 1380
+ 2382 <--x 2008
+ 2383 <--x 1381
+ 2383 <--x 2008
+ 2384 <--x 1382
+ 2384 <--x 2008
+ 2385 <--x 1383
+ 2385 <--x 2008
+ 2386 <--x 1384
+ 2386 <--x 2008
+ 2387 <--x 1385
+ 2387 <--x 2008
+ 2388 <--x 1386
+ 2388 <--x 2008
+ 2389 <--x 1387
+ 2389 <--x 2008
+ 2390 <--x 1388
+ 2390 <--x 2008
+ 2391 <--x 1389
+ 2391 <--x 2008
+ 2392 <--x 1390
+ 2392 <--x 2008
+ 2393 <--x 1391
+ 2393 <--x 2008
+ 2394 <--x 1392
+ 2394 <--x 2008
+ 2395 <--x 1393
+ 2395 <--x 2008
+ 2396 <--x 1394
+ 2396 <--x 2008
+ 2397 <--x 1395
+ 2397 <--x 2008
+ 2398 <--x 1396
+ 2398 <--x 2008
+ 2399 <--x 1397
+ 2399 <--x 2008
+ 2400 <--x 1398
+ 2400 <--x 2008
+ 2401 <--x 1399
+ 2401 <--x 2008
+ 2402 <--x 1400
+ 2402 <--x 2008
+ 2403 <--x 1401
+ 2403 <--x 2008
+ 2404 <--x 1402
+ 2404 <--x 2008
+ 2405 <--x 1403
+ 2405 <--x 2008
+ 2406 <--x 1404
+ 2406 <--x 2008
+ 2407 <--x 1405
+ 2407 <--x 2008
+ 2408 <--x 1406
+ 2408 <--x 2008
+ 2409 <--x 1407
+ 2409 <--x 2008
+ 2410 <--x 1408
+ 2410 <--x 2008
+ 2411 <--x 1409
+ 2411 <--x 2008
+ 2412 <--x 1410
+ 2412 <--x 2008
+ 2413 <--x 1411
+ 2413 <--x 2008
+ 2414 <--x 1412
+ 2414 <--x 2008
+ 2415 <--x 1413
+ 2415 <--x 2008
+ 2416 <--x 1414
+ 2416 <--x 2008
+ 2417 <--x 1415
+ 2417 <--x 2008
+ 2418 <--x 1416
+ 2418 <--x 2008
+ 2419 <--x 1417
+ 2419 <--x 2008
+ 2420 <--x 1418
+ 2420 <--x 2008
+ 2421 <--x 1419
+ 2421 <--x 2008
+ 2422 <--x 1420
+ 2422 <--x 2008
+ 2423 <--x 1421
+ 2423 <--x 2008
+ 2424 <--x 1422
+ 2424 <--x 2008
+ 2425 <--x 1423
+ 2425 <--x 2008
+ 2426 <--x 1424
+ 2426 <--x 2008
+ 2427 <--x 1425
+ 2427 <--x 2008
+ 2428 <--x 1426
+ 2428 <--x 2008
+ 2429 <--x 1427
+ 2429 <--x 2008
+ 2430 <--x 1428
+ 2430 <--x 2008
+ 2431 <--x 1429
+ 2431 <--x 2008
+ 2432 <--x 1430
+ 2432 <--x 2008
+ 2433 <--x 1431
+ 2433 <--x 2008
+ 2434 <--x 1432
+ 2434 <--x 2008
+ 2435 <--x 1433
+ 2435 <--x 2008
+ 2436 <--x 1434
+ 2436 <--x 2008
+ 2437 <--x 1435
+ 2437 <--x 2008
+ 2438 <--x 1436
+ 2438 <--x 2008
+ 2439 <--x 1437
+ 2439 <--x 2008
+ 2440 <--x 1438
+ 2440 <--x 2008
+ 2441 <--x 1439
+ 2441 <--x 2008
+ 2442 <--x 1440
+ 2442 <--x 2008
+ 2443 <--x 1441
+ 2443 <--x 2008
+ 2444 <--x 1442
+ 2444 <--x 2008
+ 2445 <--x 1443
+ 2445 <--x 2008
+ 2446 <--x 1444
+ 2446 <--x 2008
+ 2447 <--x 1445
+ 2447 <--x 2008
+ 2448 <--x 1446
+ 2448 <--x 2008
+ 2449 <--x 1447
+ 2449 <--x 2008
+ 2450 <--x 1448
+ 2450 <--x 2008
+ 2451 <--x 1449
+ 2451 <--x 2008
+ 2452 <--x 1450
+ 2452 <--x 2008
+ 2453 <--x 1451
+ 2453 <--x 2008
+ 2454 <--x 1452
+ 2454 <--x 2008
+ 2455 <--x 1453
+ 2455 <--x 2008
+ 2456 <--x 1454
+ 2456 <--x 2008
+ 2457 <--x 1455
+ 2457 <--x 2008
+ 2458 <--x 1456
+ 2458 <--x 2008
+ 2459 <--x 1457
+ 2459 <--x 2008
+ 2460 <--x 1458
+ 2460 <--x 2008
+ 2461 <--x 1459
+ 2461 <--x 2008
+ 2462 <--x 1460
+ 2462 <--x 2008
+ 2463 <--x 1461
+ 2463 <--x 2008
+ 2464 <--x 1462
+ 2464 <--x 2008
+ 2465 <--x 1463
+ 2465 <--x 2008
+ 2466 <--x 1464
+ 2466 <--x 2008
+ 2467 <--x 1465
+ 2467 <--x 2008
+ 2468 <--x 1466
+ 2468 <--x 2008
+ 2469 <--x 1467
+ 2469 <--x 2008
+ 2470 <--x 1468
+ 2470 <--x 2008
+ 2471 <--x 1469
+ 2471 <--x 2008
+ 2472 <--x 1470
+ 2472 <--x 2008
+ 2473 <--x 1471
+ 2473 <--x 2008
+ 2474 <--x 1472
+ 2474 <--x 2008
+ 2475 <--x 1473
+ 2475 <--x 2008
+ 2476 <--x 1474
+ 2476 <--x 2008
+ 2477 <--x 1475
+ 2477 <--x 2008
+ 2478 <--x 1476
+ 2478 <--x 2008
+ 2479 <--x 1477
+ 2479 <--x 2008
+ 2480 <--x 1478
+ 2480 <--x 2008
+ 2481 <--x 1479
+ 2481 <--x 2008
+ 2482 <--x 1480
+ 2482 <--x 2008
+ 2483 <--x 1481
+ 2483 <--x 2008
+ 2484 <--x 1482
+ 2484 <--x 2008
+ 2485 <--x 1483
+ 2485 <--x 2008
+ 2486 <--x 1484
+ 2486 <--x 2008
+ 2487 <--x 1485
+ 2487 <--x 2008
+ 2488 <--x 1486
+ 2488 <--x 2008
+ 2489 <--x 1487
+ 2489 <--x 2008
+ 2490 <--x 1488
+ 2490 <--x 2008
+ 2491 <--x 1489
+ 2491 <--x 2008
+ 2492 <--x 1490
+ 2492 <--x 2008
+ 2493 <--x 1491
+ 2493 <--x 2008
+ 2494 <--x 1492
+ 2494 <--x 2008
+ 2495 <--x 1493
+ 2495 <--x 2008
+ 2496 <--x 1494
+ 2496 <--x 2008
+ 2497 <--x 1495
+ 2497 <--x 2008
+ 2498 <--x 1496
+ 2498 <--x 2008
+ 2499 <--x 1497
+ 2499 <--x 2008
+ 2500 <--x 1498
+ 2500 <--x 2008
+ 2501 <--x 1499
+ 2501 <--x 2008
+ 2502 <--x 1500
+ 2502 <--x 2008
+ 2503 <--x 1501
+ 2503 <--x 2008
+ 2504 <--x 1502
+ 2504 <--x 2008
+ 2505 <--x 1503
+ 2505 <--x 2008
+ 2506 <--x 1504
+ 2506 <--x 2008
+ 2507 <--x 1505
+ 2507 <--x 2008
+ 2508 <--x 1506
+ 2508 <--x 2008
+ 2509 <--x 1507
+ 2509 <--x 2008
+ 2510 <--x 1508
+ 2510 <--x 2008
+ 2511 <--x 1509
+ 2511 <--x 2008
+ 2512 <--x 1510
+ 2512 <--x 2008
+ 2513 <--x 1511
+ 2513 <--x 2008
+ 2514 <--x 1512
+ 2514 <--x 2008
+ 2515 <--x 1513
+ 2515 <--x 2008
+ 2516 <--x 1514
+ 2516 <--x 2008
+ 2517 <--x 1515
+ 2517 <--x 2008
+ 2518 <--x 1516
+ 2518 <--x 2008
+ 2519 <--x 1517
+ 2519 <--x 2008
+ 2520 <--x 1518
+ 2520 <--x 2008
+ 2521 <--x 1519
+ 2521 <--x 2008
+ 2522 <--x 1520
+ 2522 <--x 2008
+ 2523 <--x 1521
+ 2523 <--x 2008
+ 2524 <--x 1522
+ 2524 <--x 2008
+ 2525 <--x 1523
+ 2525 <--x 2008
+ 2526 <--x 1524
+ 2526 <--x 2008
+ 2527 <--x 1525
+ 2527 <--x 2008
+ 2528 <--x 1526
+ 2528 <--x 2008
+ 2529 <--x 1527
+ 2529 <--x 2008
+ 2530 <--x 1528
+ 2530 <--x 2008
+ 2531 <--x 1529
+ 2531 <--x 2008
+ 2532 <--x 1530
+ 2532 <--x 2008
+ 2533 <--x 1531
+ 2533 <--x 2008
+ 2534 <--x 1532
+ 2534 <--x 2008
+ 2535 <--x 1533
+ 2535 <--x 2008
+ 2536 <--x 1534
+ 2536 <--x 2008
+ 2537 <--x 1535
+ 2537 <--x 2008
+ 2538 <--x 1536
+ 2538 <--x 2008
+ 2539 <--x 1537
+ 2539 <--x 2008
+ 2540 <--x 1538
+ 2540 <--x 2008
+ 2541 <--x 1539
+ 2541 <--x 2008
+ 2542 <--x 1540
+ 2542 <--x 2008
+ 2543 <--x 1541
+ 2543 <--x 2008
+ 2544 <--x 1542
+ 2544 <--x 2008
+ 2545 <--x 1543
+ 2545 <--x 2008
+ 2546 <--x 1544
+ 2546 <--x 2008
+ 2547 <--x 1545
+ 2547 <--x 2008
+ 2548 <--x 1546
+ 2548 <--x 2008
+ 2549 <--x 1547
+ 2549 <--x 2008
+ 2550 <--x 1548
+ 2550 <--x 2008
+ 2551 <--x 1549
+ 2551 <--x 2008
+ 2552 <--x 1550
+ 2552 <--x 2008
+ 2553 <--x 1551
+ 2553 <--x 2008
+ 2554 <--x 1552
+ 2554 <--x 2008
+ 2555 <--x 1553
+ 2555 <--x 2008
+ 2556 <--x 1554
+ 2556 <--x 2008
+ 2557 <--x 1555
+ 2557 <--x 2008
+ 2558 <--x 1556
+ 2558 <--x 2008
+ 2559 <--x 1557
+ 2559 <--x 2008
+ 2560 <--x 1558
+ 2560 <--x 2008
+ 2561 <--x 1559
+ 2561 <--x 2008
+ 2562 <--x 1560
+ 2562 <--x 2008
+ 2563 <--x 1561
+ 2563 <--x 2008
+ 2564 <--x 1562
+ 2564 <--x 2008
+ 2565 <--x 1563
+ 2565 <--x 2008
+ 2566 <--x 1564
+ 2566 <--x 2008
+ 2567 <--x 1565
+ 2567 <--x 2008
+ 2568 <--x 1566
+ 2568 <--x 2008
+ 2569 <--x 1567
+ 2569 <--x 2008
+ 2570 <--x 1568
+ 2570 <--x 2008
+ 2571 <--x 1569
+ 2571 <--x 2008
+ 2572 <--x 1570
+ 2572 <--x 2008
+ 2573 <--x 1571
+ 2573 <--x 2008
+ 2574 <--x 1572
+ 2574 <--x 2008
+ 2575 <--x 1573
+ 2575 <--x 2008
+ 2576 <--x 1574
+ 2576 <--x 2008
+ 2577 <--x 1575
+ 2577 <--x 2008
+ 2578 <--x 1576
+ 2578 <--x 2008
+ 2579 <--x 1577
+ 2579 <--x 2008
+ 2580 <--x 1578
+ 2580 <--x 2008
+ 2581 <--x 1579
+ 2581 <--x 2008
+ 2582 <--x 1580
+ 2582 <--x 2008
+ 2583 <--x 1581
+ 2583 <--x 2008
+ 2584 <--x 1582
+ 2584 <--x 2008
+ 2585 <--x 1583
+ 2585 <--x 2008
+ 2586 <--x 1584
+ 2586 <--x 2008
+ 2587 <--x 1585
+ 2587 <--x 2008
+ 2588 <--x 1586
+ 2588 <--x 2008
+ 2589 <--x 1587
+ 2589 <--x 2008
+ 2590 <--x 1588
+ 2590 <--x 2008
+ 2591 <--x 1589
+ 2591 <--x 2008
+ 2592 <--x 1590
+ 2592 <--x 2008
+ 2593 <--x 1591
+ 2593 <--x 2008
+ 2594 <--x 1592
+ 2594 <--x 2008
+ 2595 <--x 1593
+ 2595 <--x 2008
+ 2596 <--x 1594
+ 2596 <--x 2008
+ 2597 <--x 1595
+ 2597 <--x 2008
+ 2598 <--x 1596
+ 2598 <--x 2008
+ 2599 <--x 1597
+ 2599 <--x 2008
+ 2600 <--x 1598
+ 2600 <--x 2008
+ 2601 <--x 1599
+ 2601 <--x 2008
+ 2602 <--x 1600
+ 2602 <--x 2008
+ 2603 <--x 1601
+ 2603 <--x 2008
+ 2604 <--x 1602
+ 2604 <--x 2008
+ 2605 <--x 1603
+ 2605 <--x 2008
+ 2606 <--x 1604
+ 2606 <--x 2008
+ 2607 <--x 1605
+ 2607 <--x 2008
+ 2608 <--x 1606
+ 2608 <--x 2008
+ 2609 <--x 1607
+ 2609 <--x 2008
+ 2610 <--x 1608
+ 2610 <--x 2008
+ 2611 <--x 1609
+ 2611 <--x 2008
+ 2612 <--x 1610
+ 2612 <--x 2008
+ 2613 <--x 1611
+ 2613 <--x 2008
+ 2614 <--x 1612
+ 2614 <--x 2008
+ 2615 <--x 1613
+ 2615 <--x 2008
+ 2616 <--x 1614
+ 2616 <--x 2008
+ 2617 <--x 1615
+ 2617 <--x 2008
+ 2618 <--x 1616
+ 2618 <--x 2008
+ 2619 <--x 1617
+ 2619 <--x 2008
+ 2620 <--x 1618
+ 2620 <--x 2008
+ 2621 <--x 1619
+ 2621 <--x 2008
+ 2622 <--x 1620
+ 2622 <--x 2008
+ 2623 <--x 1621
+ 2623 <--x 2008
+ 2624 <--x 1622
+ 2624 <--x 2008
+ 2625 <--x 1623
+ 2625 <--x 2008
+ 2626 <--x 1624
+ 2626 <--x 2008
+ 2627 <--x 1625
+ 2627 <--x 2008
+ 2628 <--x 1626
+ 2628 <--x 2008
+ 2629 <--x 1627
+ 2629 <--x 2008
+ 2630 <--x 1628
+ 2630 <--x 2008
+ 2631 <--x 1629
+ 2631 <--x 2008
+ 2632 <--x 1630
+ 2632 <--x 2008
+ 2633 <--x 1631
+ 2633 <--x 2008
+ 2634 <--x 1632
+ 2634 <--x 2008
+ 2635 <--x 1633
+ 2635 <--x 2008
+ 2636 <--x 1634
+ 2636 <--x 2008
+ 2637 <--x 1635
+ 2637 <--x 2008
+ 2638 <--x 1636
+ 2638 <--x 2008
+ 2639 <--x 1637
+ 2639 <--x 2008
+ 2640 <--x 1638
+ 2640 <--x 2008
+ 2641 <--x 1639
+ 2641 <--x 2008
+ 2642 <--x 1640
+ 2642 <--x 2008
+ 2643 <--x 1641
+ 2643 <--x 2008
+ 2644 <--x 1642
+ 2644 <--x 2008
+ 2645 <--x 1643
+ 2645 <--x 2008
+ 2646 <--x 1644
+ 2646 <--x 2008
+ 2647 <--x 1645
+ 2647 <--x 2008
+ 2648 <--x 1646
+ 2648 <--x 2008
+ 2649 <--x 1647
+ 2649 <--x 2008
+ 2650 <--x 1648
+ 2650 <--x 2008
+ 2651 <--x 1649
+ 2651 <--x 2008
+ 2652 <--x 1650
+ 2652 <--x 2008
+ 2653 <--x 1651
+ 2653 <--x 2008
+ 2654 <--x 1652
+ 2654 <--x 2008
+ 2655 <--x 1653
+ 2655 <--x 2008
+ 2656 <--x 1654
+ 2656 <--x 2008
+ 2657 <--x 1655
+ 2657 <--x 2008
+ 2658 <--x 1656
+ 2658 <--x 2008
+ 2659 <--x 1657
+ 2659 <--x 2008
+ 2660 <--x 1658
+ 2660 <--x 2008
+ 2661 <--x 1659
+ 2661 <--x 2008
+ 2662 <--x 1660
+ 2662 <--x 2008
+ 2663 <--x 1661
+ 2663 <--x 2008
+ 2664 <--x 1662
+ 2664 <--x 2008
+ 2665 <--x 1663
+ 2665 <--x 2008
+ 2666 <--x 1664
+ 2666 <--x 2008
+ 2667 <--x 1665
+ 2667 <--x 2008
+ 2668 <--x 1666
+ 2668 <--x 2008
+ 2669 <--x 1667
+ 2669 <--x 2008
+ 2670 <--x 1668
+ 2670 <--x 2008
+ 2671 <--x 1669
+ 2671 <--x 2008
+ 2672 <--x 1670
+ 2672 <--x 2008
+ 2673 <--x 1671
+ 2673 <--x 2008
+ 2674 <--x 1672
+ 2674 <--x 2008
+ 2675 <--x 1673
+ 2675 <--x 2008
+ 2676 <--x 1674
+ 2676 <--x 2008
+ 2677 <--x 1675
+ 2677 <--x 2008
+ 2678 <--x 1676
+ 2678 <--x 2008
+ 2679 <--x 1677
+ 2679 <--x 2008
+ 2680 <--x 1678
+ 2680 <--x 2008
+ 2681 <--x 1679
+ 2681 <--x 2008
+ 2682 <--x 1680
+ 2682 <--x 2008
+ 2683 <--x 1681
+ 2683 <--x 2008
+ 2684 <--x 1682
+ 2684 <--x 2008
+ 2685 <--x 1683
+ 2685 <--x 2008
+ 2686 <--x 1684
+ 2686 <--x 2008
+ 2687 <--x 1685
+ 2687 <--x 2008
+ 2688 <--x 1686
+ 2688 <--x 2008
+ 2689 <--x 1687
+ 2689 <--x 2008
+ 2690 <--x 1688
+ 2690 <--x 2008
+ 2691 <--x 1689
+ 2691 <--x 2008
+ 2692 <--x 1690
+ 2692 <--x 2008
+ 2693 <--x 1691
+ 2693 <--x 2008
+ 2694 <--x 1692
+ 2694 <--x 2008
+ 2695 <--x 1693
+ 2695 <--x 2008
+ 2696 <--x 1694
+ 2696 <--x 2008
+ 2697 <--x 1695
+ 2697 <--x 2008
+ 2698 <--x 1696
+ 2698 <--x 2008
+ 2699 <--x 1697
+ 2699 <--x 2008
+ 2700 <--x 1698
+ 2700 <--x 2008
+ 2701 <--x 1699
+ 2701 <--x 2008
+ 2702 <--x 1700
+ 2702 <--x 2008
+ 2703 <--x 1701
+ 2703 <--x 2008
+ 2704 <--x 1702
+ 2704 <--x 2008
+ 2705 <--x 1703
+ 2705 <--x 2008
+ 2706 <--x 1704
+ 2706 <--x 2008
+ 2707 <--x 1705
+ 2707 <--x 2008
+ 2708 <--x 1706
+ 2708 <--x 2008
+ 2709 <--x 1707
+ 2709 <--x 2008
+ 2710 <--x 1708
+ 2710 <--x 2008
+ 2711 <--x 1709
+ 2711 <--x 2008
+ 2712 <--x 1710
+ 2712 <--x 2008
+ 2713 <--x 1711
+ 2713 <--x 2008
+ 2714 <--x 1712
+ 2714 <--x 2008
+ 2715 <--x 1713
+ 2715 <--x 2008
+ 2716 <--x 1714
+ 2716 <--x 2008
+ 2717 <--x 1715
+ 2717 <--x 2008
+ 2718 <--x 1716
+ 2718 <--x 2008
+ 2719 <--x 1717
+ 2719 <--x 2008
+ 2720 <--x 1718
+ 2720 <--x 2008
+ 2721 <--x 1719
+ 2721 <--x 2008
+ 2722 <--x 1720
+ 2722 <--x 2008
+ 2723 <--x 1721
+ 2723 <--x 2008
+ 2724 <--x 1722
+ 2724 <--x 2008
+ 2725 <--x 1723
+ 2725 <--x 2008
+ 2726 <--x 1724
+ 2726 <--x 2008
+ 2727 <--x 1725
+ 2727 <--x 2008
+ 2728 <--x 1726
+ 2728 <--x 2008
+ 2729 <--x 1727
+ 2729 <--x 2008
+ 2730 <--x 1728
+ 2730 <--x 2008
+ 2731 <--x 1729
+ 2731 <--x 2008
+ 2732 <--x 1730
+ 2732 <--x 2008
+ 2733 <--x 1731
+ 2733 <--x 2008
+ 2734 <--x 1732
+ 2734 <--x 2008
+ 2735 <--x 1733
+ 2735 <--x 2008
+ 2736 <--x 1734
+ 2736 <--x 2008
+ 2737 <--x 1735
+ 2737 <--x 2008
+ 2738 <--x 1736
+ 2738 <--x 2008
+ 2739 <--x 1737
+ 2739 <--x 2008
+ 2740 <--x 1738
+ 2740 <--x 2008
+ 2741 <--x 1739
+ 2741 <--x 2008
+ 2742 <--x 1740
+ 2742 <--x 2008
+ 2743 <--x 1741
+ 2743 <--x 2008
+ 2744 <--x 1742
+ 2744 <--x 2008
+ 2745 <--x 1743
+ 2745 <--x 2008
+ 2746 <--x 1744
+ 2746 <--x 2008
+ 2747 <--x 1745
+ 2747 <--x 2008
+ 2748 <--x 1746
+ 2748 <--x 2008
+ 2749 <--x 1747
+ 2749 <--x 2008
+ 2750 <--x 1748
+ 2750 <--x 2008
+ 2751 <--x 1749
+ 2751 <--x 2008
+ 2752 <--x 1750
+ 2752 <--x 2008
+ 2753 <--x 1751
+ 2753 <--x 2008
+ 2754 <--x 1752
+ 2754 <--x 2008
+ 2755 <--x 1753
+ 2755 <--x 2008
+ 2756 <--x 1754
+ 2756 <--x 2008
+ 2757 <--x 1755
+ 2757 <--x 2008
+ 2758 <--x 1756
+ 2758 <--x 2008
+ 2759 <--x 1757
+ 2759 <--x 2008
+ 2760 <--x 1758
+ 2760 <--x 2008
+ 2761 <--x 1759
+ 2761 <--x 2008
+ 2762 <--x 1760
+ 2762 <--x 2008
+ 2763 <--x 1761
+ 2763 <--x 2008
+ 2764 <--x 1762
+ 2764 <--x 2008
+ 2765 <--x 1763
+ 2765 <--x 2008
+ 2766 <--x 1764
+ 2766 <--x 2008
+ 2767 <--x 1765
+ 2767 <--x 2008
+ 2768 <--x 1766
+ 2768 <--x 2008
+ 2769 <--x 1767
+ 2769 <--x 2008
+ 2770 <--x 1768
+ 2770 <--x 2008
+ 2771 <--x 1769
+ 2771 <--x 2008
+ 2772 <--x 1770
+ 2772 <--x 2008
+ 2773 <--x 1771
+ 2773 <--x 2008
+ 2774 <--x 1772
+ 2774 <--x 2008
+ 2775 <--x 1773
+ 2775 <--x 2008
+ 2776 <--x 1774
+ 2776 <--x 2008
+ 2777 <--x 1775
+ 2777 <--x 2008
+ 2778 <--x 1776
+ 2778 <--x 2008
+ 2779 <--x 1777
+ 2779 <--x 2008
+ 2780 <--x 1778
+ 2780 <--x 2008
+ 2781 <--x 1779
+ 2781 <--x 2008
+ 2782 <--x 1780
+ 2782 <--x 2008
+ 2783 <--x 1781
+ 2783 <--x 2008
+ 2784 <--x 1782
+ 2784 <--x 2008
+ 2785 <--x 1783
+ 2785 <--x 2008
+ 2786 <--x 1784
+ 2786 <--x 2008
+ 2787 <--x 1785
+ 2787 <--x 2008
+ 2788 <--x 1786
+ 2788 <--x 2008
+ 2789 <--x 1787
+ 2789 <--x 2008
+ 2790 <--x 1788
+ 2790 <--x 2008
+ 2791 <--x 1789
+ 2791 <--x 2008
+ 2792 <--x 1790
+ 2792 <--x 2008
+ 2793 <--x 1791
+ 2793 <--x 2008
+ 2794 <--x 1792
+ 2794 <--x 2008
+ 2795 <--x 1793
+ 2795 <--x 2008
+ 2796 <--x 1794
+ 2796 <--x 2008
+ 2797 <--x 1795
+ 2797 <--x 2008
+ 2798 <--x 1796
+ 2798 <--x 2008
+ 2799 <--x 1797
+ 2799 <--x 2008
+ 2800 <--x 1798
+ 2800 <--x 2008
+ 2801 <--x 1799
+ 2801 <--x 2008
+ 2802 <--x 1800
+ 2802 <--x 2008
+ 2803 <--x 1801
+ 2803 <--x 2008
+ 2804 <--x 1802
+ 2804 <--x 2008
+ 2805 <--x 1803
+ 2805 <--x 2008
+ 2806 <--x 1804
+ 2806 <--x 2008
+ 2807 <--x 1805
+ 2807 <--x 2008
+ 2808 <--x 1806
+ 2808 <--x 2008
+ 2809 <--x 1807
+ 2809 <--x 2008
+ 2810 <--x 1808
+ 2810 <--x 2008
+ 2811 <--x 1809
+ 2811 <--x 2008
+ 2812 <--x 1810
+ 2812 <--x 2008
+ 2813 <--x 1811
+ 2813 <--x 2008
+ 2814 <--x 1812
+ 2814 <--x 2008
+ 2815 <--x 1813
+ 2815 <--x 2008
+ 2816 <--x 1814
+ 2816 <--x 2008
+ 2817 <--x 1815
+ 2817 <--x 2008
+ 2818 <--x 1816
+ 2818 <--x 2008
+ 2819 <--x 1817
+ 2819 <--x 2008
+ 2820 <--x 1818
+ 2820 <--x 2008
+ 2821 <--x 1819
+ 2821 <--x 2008
+ 2822 <--x 1820
+ 2822 <--x 2008
+ 2823 <--x 1821
+ 2823 <--x 2008
+ 2824 <--x 1822
+ 2824 <--x 2008
+ 2825 <--x 1823
+ 2825 <--x 2008
+ 2826 <--x 1824
+ 2826 <--x 2008
+ 2827 <--x 1825
+ 2827 <--x 2008
+ 2828 <--x 1826
+ 2828 <--x 2008
+ 2829 <--x 1827
+ 2829 <--x 2008
+ 2830 <--x 1828
+ 2830 <--x 2008
+ 2831 <--x 1829
+ 2831 <--x 2008
+ 2832 <--x 1830
+ 2832 <--x 2008
+ 2833 <--x 1831
+ 2833 <--x 2008
+ 2834 <--x 1832
+ 2834 <--x 2008
+ 2835 <--x 1833
+ 2835 <--x 2008
+ 2836 <--x 1834
+ 2836 <--x 2008
+ 2837 <--x 1835
+ 2837 <--x 2008
+ 2838 <--x 1836
+ 2838 <--x 2008
+ 2839 <--x 1837
+ 2839 <--x 2008
+ 2840 <--x 1838
+ 2840 <--x 2008
+ 2841 <--x 1839
+ 2841 <--x 2008
+ 2842 <--x 1840
+ 2842 <--x 2008
+ 2843 <--x 1841
+ 2843 <--x 2008
+ 2844 <--x 1842
+ 2844 <--x 2008
+ 2845 <--x 1843
+ 2845 <--x 2008
+ 2846 <--x 1844
+ 2846 <--x 2008
+ 2847 <--x 1845
+ 2847 <--x 2008
+ 2848 <--x 1846
+ 2848 <--x 2008
+ 2849 <--x 1847
+ 2849 <--x 2008
+ 2850 <--x 1848
+ 2850 <--x 2008
+ 2851 <--x 1849
+ 2851 <--x 2008
+ 2852 <--x 1850
+ 2852 <--x 2008
+ 2853 <--x 1851
+ 2853 <--x 2008
+ 2854 <--x 1852
+ 2854 <--x 2008
+ 2855 <--x 1853
+ 2855 <--x 2008
+ 2856 <--x 1854
+ 2856 <--x 2008
+ 2857 <--x 1855
+ 2857 <--x 2008
+ 2858 <--x 1856
+ 2858 <--x 2008
+ 2859 <--x 1857
+ 2859 <--x 2008
+ 2860 <--x 1858
+ 2860 <--x 2008
+ 2861 <--x 1859
+ 2861 <--x 2008
+ 2862 <--x 1860
+ 2862 <--x 2008
+ 2863 <--x 1861
+ 2863 <--x 2008
+ 2864 <--x 1862
+ 2864 <--x 2008
+ 2865 <--x 1863
+ 2865 <--x 2008
+ 2866 <--x 1864
+ 2866 <--x 2008
+ 2867 <--x 1865
+ 2867 <--x 2008
+ 2868 <--x 1866
+ 2868 <--x 2008
+ 2869 <--x 1867
+ 2869 <--x 2008
+ 2870 <--x 1868
+ 2870 <--x 2008
+ 2871 <--x 1869
+ 2871 <--x 2008
+ 2872 <--x 1870
+ 2872 <--x 2008
+ 2873 <--x 1871
+ 2873 <--x 2008
+ 2874 <--x 1872
+ 2874 <--x 2008
+ 2875 <--x 1873
+ 2875 <--x 2008
+ 2876 <--x 1874
+ 2876 <--x 2008
+ 2877 <--x 1875
+ 2877 <--x 2008
+ 2878 <--x 1876
+ 2878 <--x 2008
+ 2879 <--x 1877
+ 2879 <--x 2008
+ 2880 <--x 1878
+ 2880 <--x 2008
+ 2881 <--x 1879
+ 2881 <--x 2008
+ 2882 <--x 1880
+ 2882 <--x 2008
+ 2883 <--x 1881
+ 2883 <--x 2008
+ 2884 <--x 1882
+ 2884 <--x 2008
+ 2885 <--x 1883
+ 2885 <--x 2008
+ 2886 <--x 1884
+ 2886 <--x 2008
+ 2887 <--x 1885
+ 2887 <--x 2008
+ 2888 <--x 1886
+ 2888 <--x 2008
+ 2889 <--x 1887
+ 2889 <--x 2008
+ 2890 <--x 1888
+ 2890 <--x 2008
+ 2891 <--x 1889
+ 2891 <--x 2008
+ 2892 <--x 1890
+ 2892 <--x 2008
+ 2893 <--x 1891
+ 2893 <--x 2008
+ 2894 <--x 1892
+ 2894 <--x 2008
+ 2895 <--x 1893
+ 2895 <--x 2008
+ 2896 <--x 1894
+ 2896 <--x 2008
+ 2897 <--x 1895
+ 2897 <--x 2008
+ 2898 <--x 1896
+ 2898 <--x 2008
+ 2899 <--x 1897
+ 2899 <--x 2008
+ 2900 <--x 1898
+ 2900 <--x 2008
+ 2901 <--x 1899
+ 2901 <--x 2008
+ 2902 <--x 1900
+ 2902 <--x 2008
+ 2903 <--x 1901
+ 2903 <--x 2008
+ 2904 <--x 1902
+ 2904 <--x 2008
+ 2905 <--x 1903
+ 2905 <--x 2008
+ 2906 <--x 1904
+ 2906 <--x 2008
+ 2907 <--x 1905
+ 2907 <--x 2008
+ 2908 <--x 1906
+ 2908 <--x 2008
+ 2909 <--x 1907
+ 2909 <--x 2008
+ 2910 <--x 1908
+ 2910 <--x 2008
+ 2911 <--x 1909
+ 2911 <--x 2008
+ 2912 <--x 1910
+ 2912 <--x 2008
+ 2913 <--x 1911
+ 2913 <--x 2008
+ 2914 <--x 1912
+ 2914 <--x 2008
+ 2915 <--x 1913
+ 2915 <--x 2008
+ 2916 <--x 1914
+ 2916 <--x 2008
+ 2917 <--x 1915
+ 2917 <--x 2008
+ 2918 <--x 1916
+ 2918 <--x 2008
+ 2919 <--x 1917
+ 2919 <--x 2008
+ 2920 <--x 1918
+ 2920 <--x 2008
+ 2921 <--x 1919
+ 2921 <--x 2008
+ 2922 <--x 1920
+ 2922 <--x 2008
+ 2923 <--x 1921
+ 2923 <--x 2008
+ 2924 <--x 1922
+ 2924 <--x 2008
+ 2925 <--x 1923
+ 2925 <--x 2008
+ 2926 <--x 1924
+ 2926 <--x 2008
+ 2927 <--x 1925
+ 2927 <--x 2008
+ 2928 <--x 1926
+ 2928 <--x 2008
+ 2929 <--x 1927
+ 2929 <--x 2008
+ 2930 <--x 1928
+ 2930 <--x 2008
+ 2931 <--x 1929
+ 2931 <--x 2008
+ 2932 <--x 1930
+ 2932 <--x 2008
+ 2933 <--x 1931
+ 2933 <--x 2008
+ 2934 <--x 1932
+ 2934 <--x 2008
+ 2935 <--x 1933
+ 2935 <--x 2008
+ 2936 <--x 1934
+ 2936 <--x 2008
+ 2937 <--x 1935
+ 2937 <--x 2008
+ 2938 <--x 1936
+ 2938 <--x 2008
+ 2939 <--x 1937
+ 2939 <--x 2008
+ 2940 <--x 1938
+ 2940 <--x 2008
+ 2941 <--x 1939
+ 2941 <--x 2008
+ 2942 <--x 1940
+ 2942 <--x 2008
+ 2943 <--x 1941
+ 2943 <--x 2008
+ 2944 <--x 1942
+ 2944 <--x 2008
+ 2945 <--x 1943
+ 2945 <--x 2008
+ 2946 <--x 1944
+ 2946 <--x 2008
+ 2947 <--x 1945
+ 2947 <--x 2008
+ 2948 <--x 1946
+ 2948 <--x 2008
+ 2949 <--x 1947
+ 2949 <--x 2008
+ 2950 <--x 1948
+ 2950 <--x 2008
+ 2951 <--x 1949
+ 2951 <--x 2008
+ 2952 <--x 1950
+ 2952 <--x 2008
+ 2953 <--x 1951
+ 2953 <--x 2008
+ 2954 <--x 1952
+ 2954 <--x 2008
+ 2955 <--x 1953
+ 2955 <--x 2008
+ 2956 <--x 1954
+ 2956 <--x 2008
+ 2957 <--x 1955
+ 2957 <--x 2008
+ 2958 <--x 1956
+ 2958 <--x 2008
+ 2959 <--x 1957
+ 2959 <--x 2008
+ 2960 <--x 1958
+ 2960 <--x 2008
+ 2961 <--x 1959
+ 2961 <--x 2008
+ 2962 <--x 1960
+ 2962 <--x 2008
+ 2963 <--x 1961
+ 2963 <--x 2008
+ 2964 <--x 1962
+ 2964 <--x 2008
+ 2965 <--x 1963
+ 2965 <--x 2008
+ 2966 <--x 1964
+ 2966 <--x 2008
+ 2967 <--x 1965
+ 2967 <--x 2008
+ 2968 <--x 1966
+ 2968 <--x 2008
+ 2969 <--x 1967
+ 2969 <--x 2008
+ 2970 <--x 1968
+ 2970 <--x 2008
+ 2971 <--x 1969
+ 2971 <--x 2008
+ 2972 <--x 1970
+ 2972 <--x 2008
+ 2973 <--x 1971
+ 2973 <--x 2008
+ 2974 <--x 1972
+ 2974 <--x 2008
+ 2975 <--x 1973
+ 2975 <--x 2008
+ 2976 <--x 1974
+ 2976 <--x 2008
+ 2977 <--x 1975
+ 2977 <--x 2008
+ 2978 <--x 1976
+ 2978 <--x 2008
+ 2979 <--x 1977
+ 2979 <--x 2008
+ 2980 <--x 1978
+ 2980 <--x 2008
+ 2981 <--x 1979
+ 2981 <--x 2008
+ 2982 <--x 1980
+ 2982 <--x 2008
+ 2983 <--x 1981
+ 2983 <--x 2008
+ 2984 <--x 1982
+ 2984 <--x 2008
+ 2985 <--x 1983
+ 2985 <--x 2008
+ 2986 <--x 1984
+ 2986 <--x 2008
+ 2987 <--x 1985
+ 2987 <--x 2008
+ 2988 <--x 1986
+ 2988 <--x 2008
+ 2989 <--x 1987
+ 2989 <--x 2008
+ 2990 <--x 1988
+ 2990 <--x 2008
+ 2991 <--x 1989
+ 2991 <--x 2008
+ 2992 <--x 1990
+ 2992 <--x 2008
+ 2993 <--x 1991
+ 2993 <--x 2008
+ 2994 <--x 1992
+ 2994 <--x 2008
+ 2995 <--x 1993
+ 2995 <--x 2008
+ 2996 <--x 1994
+ 2996 <--x 2008
+ 2997 <--x 1995
+ 2997 <--x 2008
+ 2998 <--x 1996
+ 2998 <--x 2008
+ 2999 <--x 1997
+ 2999 <--x 2008
+ 3000 <--x 1998
+ 3000 <--x 2008
+ 3001 <--x 1999
+ 3001 <--x 2008
+ 3002 <--x 2000
+ 3002 <--x 2008
+ 3003 <--x 2001
+ 3003 <--x 2008
+ 3004 <--x 2002
+ 3004 <--x 2008
+ 3005 <--x 2003
+ 3005 <--x 2008
+ 3006 <--x 2004
+ 3006 <--x 2008
+ 3007 <--x 2005
+ 3007 <--x 2008
+ 3008 <--x 2006
+ 3008 <--x 2008
```
diff --git a/rust/kcl-lib/tests/module_return_using_var/artifact_commands.snap b/rust/kcl-lib/tests/module_return_using_var/artifact_commands.snap
index 8f5077591..f3f64c0cf 100644
--- a/rust/kcl-lib/tests/module_return_using_var/artifact_commands.snap
+++ b/rust/kcl-lib/tests/module_return_using_var/artifact_commands.snap
@@ -272,20 +272,27 @@ description: Artifact commands module_return_using_var.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -308,6 +315,33 @@ description: Artifact commands module_return_using_var.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -327,5 +361,79 @@ description: Artifact commands module_return_using_var.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/module_return_using_var/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/module_return_using_var/artifact_graph_flowchart.snap.md
index 24311a443..85ccb3c6e 100644
--- a/rust/kcl-lib/tests/module_return_using_var/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/module_return_using_var/artifact_graph_flowchart.snap.md
@@ -18,13 +18,8 @@ flowchart LR
14["Cap Start"]
15["Cap End"]
16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
+ 17["SweepEdge Opposite"]
18["SweepEdge Opposite"]
- 19["SweepEdge Adjacent"]
- 20["SweepEdge Opposite"]
- 21["SweepEdge Adjacent"]
- 22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 --- 4
@@ -34,17 +29,16 @@ flowchart LR
2 ---- 9
2 --- 8
3 --- 10
- 3 --- 16
- 3 --- 17
+ 3 x--> 14
4 --- 11
- 4 --- 18
- 4 --- 19
+ 4 --- 16
+ 4 x--> 14
5 --- 12
- 5 --- 20
- 5 --- 21
+ 5 --- 17
+ 5 x--> 14
6 --- 13
- 6 --- 22
- 6 --- 23
+ 6 --- 18
+ 6 x--> 14
9 --- 10
9 --- 11
9 --- 12
@@ -54,9 +48,10 @@ flowchart LR
9 --- 16
9 --- 17
9 --- 18
- 9 --- 19
- 9 --- 20
- 9 --- 21
- 9 --- 22
- 9 --- 23
+ 16 <--x 11
+ 16 <--x 15
+ 17 <--x 12
+ 17 <--x 15
+ 18 <--x 13
+ 18 <--x 15
```
diff --git a/rust/kcl-lib/tests/multi_transform/artifact_commands.snap b/rust/kcl-lib/tests/multi_transform/artifact_commands.snap
index 532df1bf0..73d09e2e8 100644
--- a/rust/kcl-lib/tests/multi_transform/artifact_commands.snap
+++ b/rust/kcl-lib/tests/multi_transform/artifact_commands.snap
@@ -291,20 +291,27 @@ description: Artifact commands multi_transform.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -327,6 +334,33 @@ description: Artifact commands multi_transform.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -347,6 +381,80 @@ description: Artifact commands multi_transform.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/multi_transform/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/multi_transform/artifact_graph_flowchart.snap.md
index 683e73e34..c346e8038 100644
--- a/rust/kcl-lib/tests/multi_transform/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/multi_transform/artifact_graph_flowchart.snap.md
@@ -21,13 +21,8 @@ flowchart LR
15["Cap Start"]
16["Cap End"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
+ 18["SweepEdge Opposite"]
19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 23["SweepEdge Opposite"]
- 24["SweepEdge Adjacent"]
1 --- 2
1 --- 3
3 --- 4
@@ -38,17 +33,16 @@ flowchart LR
3 ---- 10
3 --- 9
4 --- 11
- 4 --- 17
- 4 --- 18
+ 4 x--> 15
5 --- 12
- 5 --- 19
- 5 --- 20
+ 5 --- 17
+ 5 x--> 15
6 --- 13
- 6 --- 21
- 6 --- 22
+ 6 --- 18
+ 6 x--> 15
7 --- 14
- 7 --- 23
- 7 --- 24
+ 7 --- 19
+ 7 x--> 15
10 --- 11
10 --- 12
10 --- 13
@@ -58,9 +52,10 @@ flowchart LR
10 --- 17
10 --- 18
10 --- 19
- 10 --- 20
- 10 --- 21
- 10 --- 22
- 10 --- 23
- 10 --- 24
+ 17 <--x 12
+ 17 <--x 16
+ 18 <--x 13
+ 18 <--x 16
+ 19 <--x 14
+ 19 <--x 16
```
diff --git a/rust/kcl-lib/tests/neg_xz_plane/artifact_commands.snap b/rust/kcl-lib/tests/neg_xz_plane/artifact_commands.snap
index ce7046828..9dfa7f7a0 100644
--- a/rust/kcl-lib/tests/neg_xz_plane/artifact_commands.snap
+++ b/rust/kcl-lib/tests/neg_xz_plane/artifact_commands.snap
@@ -214,20 +214,27 @@ description: Artifact commands neg_xz_plane.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -249,5 +256,79 @@ description: Artifact commands neg_xz_plane.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/neg_xz_plane/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/neg_xz_plane/artifact_graph_flowchart.snap.md
index 5e488576d..f1de0a756 100644
--- a/rust/kcl-lib/tests/neg_xz_plane/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/neg_xz_plane/artifact_graph_flowchart.snap.md
@@ -15,11 +15,7 @@ flowchart LR
11["Cap Start"]
12["Cap End"]
13["SweepEdge Opposite"]
- 14["SweepEdge Adjacent"]
- 15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
- 17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
+ 14["SweepEdge Opposite"]
1 --- 2
2 --- 3
2 --- 4
@@ -27,14 +23,13 @@ flowchart LR
2 ---- 7
2 --- 6
3 --- 10
- 3 --- 17
- 3 --- 18
+ 3 --- 14
+ 3 x--> 11
4 --- 9
- 4 --- 15
- 4 --- 16
+ 4 --- 13
+ 4 x--> 11
5 --- 8
- 5 --- 13
- 5 --- 14
+ 5 x--> 11
7 --- 8
7 --- 9
7 --- 10
@@ -42,8 +37,8 @@ flowchart LR
7 --- 12
7 --- 13
7 --- 14
- 7 --- 15
- 7 --- 16
- 7 --- 17
- 7 --- 18
+ 13 <--x 9
+ 13 <--x 12
+ 14 <--x 10
+ 14 <--x 12
```
diff --git a/rust/kcl-lib/tests/out_of_band_sketches/artifact_commands.snap b/rust/kcl-lib/tests/out_of_band_sketches/artifact_commands.snap
index 20a0de845..b0fc4557a 100644
--- a/rust/kcl-lib/tests/out_of_band_sketches/artifact_commands.snap
+++ b/rust/kcl-lib/tests/out_of_band_sketches/artifact_commands.snap
@@ -358,20 +358,27 @@ description: Artifact commands out_of_band_sketches.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -394,6 +401,33 @@ description: Artifact commands out_of_band_sketches.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -414,6 +448,80 @@ description: Artifact commands out_of_band_sketches.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -489,20 +597,27 @@ description: Artifact commands out_of_band_sketches.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -525,6 +640,33 @@ description: Artifact commands out_of_band_sketches.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -544,5 +686,79 @@ description: Artifact commands out_of_band_sketches.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/out_of_band_sketches/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/out_of_band_sketches/artifact_graph_flowchart.snap.md
index 6c3ba724c..519b44844 100644
--- a/rust/kcl-lib/tests/out_of_band_sketches/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/out_of_band_sketches/artifact_graph_flowchart.snap.md
@@ -26,28 +26,18 @@ flowchart LR
20["Cap Start"]
21["Cap End"]
22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
+ 23["SweepEdge Opposite"]
24["SweepEdge Opposite"]
- 25["SweepEdge Adjacent"]
- 26["SweepEdge Opposite"]
- 27["SweepEdge Adjacent"]
- 28["SweepEdge Opposite"]
- 29["SweepEdge Adjacent"]
- 30["Sweep Extrusion
[716, 781, 0]"]
- 31[Wall]
- 32[Wall]
- 33[Wall]
- 34[Wall]
- 35["Cap Start"]
- 36["Cap End"]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
- 39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 41["SweepEdge Opposite"]
- 42["SweepEdge Adjacent"]
- 43["SweepEdge Opposite"]
- 44["SweepEdge Adjacent"]
+ 25["Sweep Extrusion
[716, 781, 0]"]
+ 26[Wall]
+ 27[Wall]
+ 28[Wall]
+ 29[Wall]
+ 30["Cap Start"]
+ 31["Cap End"]
+ 32["SweepEdge Opposite"]
+ 33["SweepEdge Opposite"]
+ 34["SweepEdge Opposite"]
1 --- 2
2 --- 3
2 --- 4
@@ -56,36 +46,34 @@ flowchart LR
2 ---- 15
2 --- 11
3 --- 19
- 3 --- 28
- 3 --- 29
+ 3 --- 24
+ 3 x--> 20
4 --- 18
- 4 --- 26
- 4 --- 27
+ 4 --- 23
+ 4 x--> 20
5 --- 6
6 --- 7
6 --- 8
6 --- 12
6 --- 13
- 6 ---- 30
+ 6 ---- 25
6 --- 14
+ 7 --- 29
7 --- 34
- 7 --- 43
- 7 --- 44
+ 7 x--> 30
+ 8 --- 28
8 --- 33
- 8 --- 41
- 8 --- 42
+ 8 x--> 30
9 --- 17
- 9 --- 24
- 9 --- 25
+ 9 --- 22
+ 9 x--> 20
10 --- 16
- 10 --- 22
- 10 --- 23
+ 10 x--> 20
+ 12 --- 27
12 --- 32
- 12 --- 39
- 12 --- 40
- 13 --- 31
- 13 --- 37
- 13 --- 38
+ 12 x--> 30
+ 13 --- 26
+ 13 x--> 30
15 --- 16
15 --- 17
15 --- 18
@@ -95,23 +83,25 @@ flowchart LR
15 --- 22
15 --- 23
15 --- 24
- 15 --- 25
- 15 --- 26
- 15 --- 27
- 15 --- 28
- 15 --- 29
- 30 --- 31
- 30 --- 32
- 30 --- 33
- 30 --- 34
- 30 --- 35
- 30 --- 36
- 30 --- 37
- 30 --- 38
- 30 --- 39
- 30 --- 40
- 30 --- 41
- 30 --- 42
- 30 --- 43
- 30 --- 44
+ 22 <--x 17
+ 22 <--x 21
+ 23 <--x 18
+ 23 <--x 21
+ 24 <--x 19
+ 24 <--x 21
+ 25 --- 26
+ 25 --- 27
+ 25 --- 28
+ 25 --- 29
+ 25 --- 30
+ 25 --- 31
+ 25 --- 32
+ 25 --- 33
+ 25 --- 34
+ 32 <--x 27
+ 32 <--x 31
+ 33 <--x 28
+ 33 <--x 31
+ 34 <--x 29
+ 34 <--x 31
```
diff --git a/rust/kcl-lib/tests/parametric/artifact_commands.snap b/rust/kcl-lib/tests/parametric/artifact_commands.snap
index 7704a8f82..cb29a46e1 100644
--- a/rust/kcl-lib/tests/parametric/artifact_commands.snap
+++ b/rust/kcl-lib/tests/parametric/artifact_commands.snap
@@ -265,20 +265,27 @@ description: Artifact commands parametric.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -305,20 +312,27 @@ description: Artifact commands parametric.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -341,6 +355,33 @@ description: Artifact commands parametric.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -360,5 +401,126 @@ description: Artifact commands parametric.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/parametric/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/parametric/artifact_graph_flowchart.snap.md
index a573e514e..b418d19fb 100644
--- a/rust/kcl-lib/tests/parametric/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/parametric/artifact_graph_flowchart.snap.md
@@ -21,17 +21,10 @@ flowchart LR
17["Cap Start"]
18["Cap End"]
19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
+ 20["SweepEdge Opposite"]
21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
+ 22["SweepEdge Opposite"]
23["SweepEdge Opposite"]
- 24["SweepEdge Adjacent"]
- 25["SweepEdge Opposite"]
- 26["SweepEdge Adjacent"]
- 27["SweepEdge Opposite"]
- 28["SweepEdge Adjacent"]
- 29["SweepEdge Opposite"]
- 30["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 --- 4
@@ -42,23 +35,22 @@ flowchart LR
2 ---- 10
2 --- 9
3 --- 16
- 3 --- 29
- 3 --- 30
+ 3 --- 23
+ 3 x--> 17
4 --- 15
- 4 --- 27
- 4 --- 28
+ 4 --- 22
+ 4 x--> 17
5 --- 14
- 5 --- 25
- 5 --- 26
+ 5 --- 21
+ 5 x--> 17
6 --- 13
- 6 --- 23
- 6 --- 24
+ 6 --- 20
+ 6 x--> 17
7 --- 12
- 7 --- 21
- 7 --- 22
+ 7 --- 19
+ 7 x--> 17
8 --- 11
- 8 --- 19
- 8 --- 20
+ 8 x--> 17
10 --- 11
10 --- 12
10 --- 13
@@ -72,11 +64,14 @@ flowchart LR
10 --- 21
10 --- 22
10 --- 23
- 10 --- 24
- 10 --- 25
- 10 --- 26
- 10 --- 27
- 10 --- 28
- 10 --- 29
- 10 --- 30
+ 19 <--x 12
+ 19 <--x 18
+ 20 <--x 13
+ 20 <--x 18
+ 21 <--x 14
+ 21 <--x 18
+ 22 <--x 15
+ 22 <--x 18
+ 23 <--x 16
+ 23 <--x 18
```
diff --git a/rust/kcl-lib/tests/parametric_with_tan_arc/artifact_commands.snap b/rust/kcl-lib/tests/parametric_with_tan_arc/artifact_commands.snap
index 18eba6099..d339aa1a2 100644
--- a/rust/kcl-lib/tests/parametric_with_tan_arc/artifact_commands.snap
+++ b/rust/kcl-lib/tests/parametric_with_tan_arc/artifact_commands.snap
@@ -297,20 +297,27 @@ description: Artifact commands parametric_with_tan_arc.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -337,20 +344,27 @@ description: Artifact commands parametric_with_tan_arc.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -377,20 +391,27 @@ description: Artifact commands parametric_with_tan_arc.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -413,6 +434,33 @@ description: Artifact commands parametric_with_tan_arc.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -432,5 +480,173 @@ description: Artifact commands parametric_with_tan_arc.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/parametric_with_tan_arc/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/parametric_with_tan_arc/artifact_graph_flowchart.snap.md
index a16afa7ac..24d4882a6 100644
--- a/rust/kcl-lib/tests/parametric_with_tan_arc/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/parametric_with_tan_arc/artifact_graph_flowchart.snap.md
@@ -25,21 +25,12 @@ flowchart LR
21["Cap Start"]
22["Cap End"]
23["SweepEdge Opposite"]
- 24["SweepEdge Adjacent"]
+ 24["SweepEdge Opposite"]
25["SweepEdge Opposite"]
- 26["SweepEdge Adjacent"]
+ 26["SweepEdge Opposite"]
27["SweepEdge Opposite"]
- 28["SweepEdge Adjacent"]
+ 28["SweepEdge Opposite"]
29["SweepEdge Opposite"]
- 30["SweepEdge Adjacent"]
- 31["SweepEdge Opposite"]
- 32["SweepEdge Adjacent"]
- 33["SweepEdge Opposite"]
- 34["SweepEdge Adjacent"]
- 35["SweepEdge Opposite"]
- 36["SweepEdge Adjacent"]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 --- 4
@@ -52,29 +43,28 @@ flowchart LR
2 ---- 12
2 --- 11
3 --- 13
- 3 --- 23
- 3 --- 24
+ 3 x--> 21
4 --- 14
- 4 --- 25
- 4 --- 26
+ 4 --- 23
+ 4 x--> 21
5 --- 15
- 5 --- 27
- 5 --- 28
+ 5 --- 24
+ 5 x--> 21
6 --- 16
- 6 --- 29
- 6 --- 30
+ 6 --- 25
+ 6 x--> 21
7 --- 17
- 7 --- 31
- 7 --- 32
+ 7 --- 26
+ 7 x--> 21
8 --- 18
- 8 --- 33
- 8 --- 34
+ 8 --- 27
+ 8 x--> 21
9 --- 19
- 9 --- 35
- 9 --- 36
+ 9 --- 28
+ 9 x--> 21
10 --- 20
- 10 --- 37
- 10 --- 38
+ 10 --- 29
+ 10 x--> 21
12 --- 13
12 --- 14
12 --- 15
@@ -92,13 +82,18 @@ flowchart LR
12 --- 27
12 --- 28
12 --- 29
- 12 --- 30
- 12 --- 31
- 12 --- 32
- 12 --- 33
- 12 --- 34
- 12 --- 35
- 12 --- 36
- 12 --- 37
- 12 --- 38
+ 23 <--x 14
+ 23 <--x 22
+ 24 <--x 15
+ 24 <--x 22
+ 25 <--x 16
+ 25 <--x 22
+ 26 <--x 17
+ 26 <--x 22
+ 27 <--x 18
+ 27 <--x 22
+ 28 <--x 19
+ 28 <--x 22
+ 29 <--x 20
+ 29 <--x 22
```
diff --git a/rust/kcl-lib/tests/pattern_circular_in_module/artifact_commands.snap b/rust/kcl-lib/tests/pattern_circular_in_module/artifact_commands.snap
index 030093acc..cc0428b77 100644
--- a/rust/kcl-lib/tests/pattern_circular_in_module/artifact_commands.snap
+++ b/rust/kcl-lib/tests/pattern_circular_in_module/artifact_commands.snap
@@ -252,20 +252,27 @@ description: Artifact commands pattern_circular_in_module.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -288,6 +295,33 @@ description: Artifact commands pattern_circular_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -308,6 +342,80 @@ description: Artifact commands pattern_circular_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -383,20 +491,27 @@ description: Artifact commands pattern_circular_in_module.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -419,6 +534,33 @@ description: Artifact commands pattern_circular_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -439,6 +581,80 @@ description: Artifact commands pattern_circular_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -514,20 +730,27 @@ description: Artifact commands pattern_circular_in_module.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -550,6 +773,33 @@ description: Artifact commands pattern_circular_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -570,6 +820,80 @@ description: Artifact commands pattern_circular_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -645,20 +969,27 @@ description: Artifact commands pattern_circular_in_module.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -681,6 +1012,33 @@ description: Artifact commands pattern_circular_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -701,6 +1059,80 @@ description: Artifact commands pattern_circular_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -924,20 +1356,27 @@ description: Artifact commands pattern_circular_in_module.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -960,6 +1399,33 @@ description: Artifact commands pattern_circular_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -980,6 +1446,80 @@ description: Artifact commands pattern_circular_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1055,20 +1595,27 @@ description: Artifact commands pattern_circular_in_module.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1091,6 +1638,33 @@ description: Artifact commands pattern_circular_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1111,6 +1685,80 @@ description: Artifact commands pattern_circular_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1186,20 +1834,27 @@ description: Artifact commands pattern_circular_in_module.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1222,6 +1877,33 @@ description: Artifact commands pattern_circular_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1242,6 +1924,80 @@ description: Artifact commands pattern_circular_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1317,20 +2073,27 @@ description: Artifact commands pattern_circular_in_module.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1353,6 +2116,33 @@ description: Artifact commands pattern_circular_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1372,5 +2162,79 @@ description: Artifact commands pattern_circular_in_module.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/pattern_circular_in_module/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/pattern_circular_in_module/artifact_graph_flowchart.snap.md
index 7e16ddc9b..df16d4f14 100644
--- a/rust/kcl-lib/tests/pattern_circular_in_module/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/pattern_circular_in_module/artifact_graph_flowchart.snap.md
@@ -8,13 +8,13 @@ flowchart LR
6["Segment
[178, 185, 6]"]
7[Solid2d]
end
- subgraph path27 [Path]
- 27["Path
[63, 90, 6]"]
- 28["Segment
[98, 116, 6]"]
- 29["Segment
[124, 143, 6]"]
- 30["Segment
[151, 170, 6]"]
- 31["Segment
[178, 185, 6]"]
- 32[Solid2d]
+ subgraph path22 [Path]
+ 22["Path
[63, 90, 6]"]
+ 23["Segment
[98, 116, 6]"]
+ 24["Segment
[124, 143, 6]"]
+ 25["Segment
[151, 170, 6]"]
+ 26["Segment
[178, 185, 6]"]
+ 27[Solid2d]
end
1["Plane
[38, 55, 6]"]
8["Sweep Extrusion
[342, 376, 6]"]
@@ -25,35 +25,25 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 23["Sweep Extrusion
[342, 376, 6]"]
- 24["Sweep Extrusion
[342, 376, 6]"]
- 25["Sweep Extrusion
[342, 376, 6]"]
- 26["Plane
[38, 55, 6]"]
- 33["Sweep Extrusion
[342, 376, 6]"]
- 34[Wall]
- 35[Wall]
- 36[Wall]
- 37[Wall]
- 38["Cap Start"]
- 39["Cap End"]
- 40["SweepEdge Opposite"]
- 41["SweepEdge Adjacent"]
- 42["SweepEdge Opposite"]
- 43["SweepEdge Adjacent"]
- 44["SweepEdge Opposite"]
- 45["SweepEdge Adjacent"]
- 46["SweepEdge Opposite"]
- 47["SweepEdge Adjacent"]
- 48["Sweep Extrusion
[342, 376, 6]"]
- 49["Sweep Extrusion
[342, 376, 6]"]
- 50["Sweep Extrusion
[342, 376, 6]"]
+ 18["Sweep Extrusion
[342, 376, 6]"]
+ 19["Sweep Extrusion
[342, 376, 6]"]
+ 20["Sweep Extrusion
[342, 376, 6]"]
+ 21["Plane
[38, 55, 6]"]
+ 28["Sweep Extrusion
[342, 376, 6]"]
+ 29[Wall]
+ 30[Wall]
+ 31[Wall]
+ 32[Wall]
+ 33["Cap Start"]
+ 34["Cap End"]
+ 35["SweepEdge Opposite"]
+ 36["SweepEdge Opposite"]
+ 37["SweepEdge Opposite"]
+ 38["Sweep Extrusion
[342, 376, 6]"]
+ 39["Sweep Extrusion
[342, 376, 6]"]
+ 40["Sweep Extrusion
[342, 376, 6]"]
1 --- 2
2 --- 3
2 --- 4
@@ -62,17 +52,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 9
- 3 --- 15
- 3 --- 16
+ 3 x--> 13
4 --- 10
- 4 --- 17
- 4 --- 18
+ 4 --- 15
+ 4 x--> 13
5 --- 11
- 5 --- 19
- 5 --- 20
+ 5 --- 16
+ 5 x--> 13
6 --- 12
- 6 --- 21
- 6 --- 22
+ 6 --- 17
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -82,42 +71,43 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 26 --- 27
- 27 --- 28
- 27 --- 29
- 27 --- 30
- 27 --- 31
- 27 ---- 33
- 27 --- 32
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 21 --- 22
+ 22 --- 23
+ 22 --- 24
+ 22 --- 25
+ 22 --- 26
+ 22 ---- 28
+ 22 --- 27
+ 23 --- 29
+ 23 x--> 33
+ 24 --- 30
+ 24 --- 35
+ 24 x--> 33
+ 25 --- 31
+ 25 --- 36
+ 25 x--> 33
+ 26 --- 32
+ 26 --- 37
+ 26 x--> 33
+ 28 --- 29
+ 28 --- 30
+ 28 --- 31
+ 28 --- 32
+ 28 --- 33
28 --- 34
- 28 --- 40
- 28 --- 41
- 29 --- 35
- 29 --- 42
- 29 --- 43
- 30 --- 36
- 30 --- 44
- 30 --- 45
- 31 --- 37
- 31 --- 46
- 31 --- 47
- 33 --- 34
- 33 --- 35
- 33 --- 36
- 33 --- 37
- 33 --- 38
- 33 --- 39
- 33 --- 40
- 33 --- 41
- 33 --- 42
- 33 --- 43
- 33 --- 44
- 33 --- 45
- 33 --- 46
- 33 --- 47
+ 28 --- 35
+ 28 --- 36
+ 28 --- 37
+ 35 <--x 30
+ 35 <--x 34
+ 36 <--x 31
+ 36 <--x 34
+ 37 <--x 32
+ 37 <--x 34
```
diff --git a/rust/kcl-lib/tests/pattern_into_union/artifact_commands.snap b/rust/kcl-lib/tests/pattern_into_union/artifact_commands.snap
index 5d90000e3..7e8521127 100644
--- a/rust/kcl-lib/tests/pattern_into_union/artifact_commands.snap
+++ b/rust/kcl-lib/tests/pattern_into_union/artifact_commands.snap
@@ -299,20 +299,27 @@ description: Artifact commands pattern_into_union.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -339,20 +346,27 @@ description: Artifact commands pattern_into_union.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -379,20 +393,27 @@ description: Artifact commands pattern_into_union.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -415,6 +436,33 @@ description: Artifact commands pattern_into_union.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -435,6 +483,174 @@ description: Artifact commands pattern_into_union.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -637,20 +853,27 @@ description: Artifact commands pattern_into_union.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -673,6 +896,33 @@ description: Artifact commands pattern_into_union.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -693,6 +943,80 @@ description: Artifact commands pattern_into_union.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1508,20 +1832,27 @@ description: Artifact commands pattern_into_union.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1544,6 +1875,33 @@ description: Artifact commands pattern_into_union.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1564,6 +1922,80 @@ description: Artifact commands pattern_into_union.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/pattern_into_union/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/pattern_into_union/artifact_graph_flowchart.snap.md
index cb6caa4b8..e17ba838e 100644
--- a/rust/kcl-lib/tests/pattern_into_union/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/pattern_into_union/artifact_graph_flowchart.snap.md
@@ -12,21 +12,21 @@ flowchart LR
10["Segment
[738, 745, 0]"]
11[Solid2d]
end
- subgraph path40 [Path]
- 40["Path
[810, 851, 0]"]
- 41["Segment
[857, 900, 0]"]
- 42["Segment
[906, 1006, 0]"]
- 43["Segment
[1012, 1041, 0]"]
- 44["Segment
[1047, 1054, 0]"]
- 45[Solid2d]
+ subgraph path31 [Path]
+ 31["Path
[810, 851, 0]"]
+ 32["Segment
[857, 900, 0]"]
+ 33["Segment
[906, 1006, 0]"]
+ 34["Segment
[1012, 1041, 0]"]
+ 35["Segment
[1047, 1054, 0]"]
+ 36[Solid2d]
end
- subgraph path62 [Path]
- 62["Path
[1384, 1433, 0]"]
- 63["Segment
[1439, 1479, 0]"]
- 64["Segment
[1485, 1585, 0]"]
- 65["Segment
[1591, 1628, 0]"]
- 66["Segment
[1634, 1641, 0]"]
- 67[Solid2d]
+ subgraph path49 [Path]
+ 49["Path
[1384, 1433, 0]"]
+ 50["Segment
[1439, 1479, 0]"]
+ 51["Segment
[1485, 1585, 0]"]
+ 52["Segment
[1591, 1628, 0]"]
+ 53["Segment
[1634, 1641, 0]"]
+ 54[Solid2d]
end
1["Plane
[389, 406, 0]"]
12["Sweep Extrusion
[751, 775, 0]"]
@@ -41,53 +41,36 @@ flowchart LR
21["Cap Start"]
22["Cap End"]
23["SweepEdge Opposite"]
- 24["SweepEdge Adjacent"]
+ 24["SweepEdge Opposite"]
25["SweepEdge Opposite"]
- 26["SweepEdge Adjacent"]
+ 26["SweepEdge Opposite"]
27["SweepEdge Opposite"]
- 28["SweepEdge Adjacent"]
+ 28["SweepEdge Opposite"]
29["SweepEdge Opposite"]
- 30["SweepEdge Adjacent"]
- 31["SweepEdge Opposite"]
- 32["SweepEdge Adjacent"]
- 33["SweepEdge Opposite"]
- 34["SweepEdge Adjacent"]
- 35["SweepEdge Opposite"]
- 36["SweepEdge Adjacent"]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
- 39["Plane
[787, 804, 0]"]
- 46["Sweep Extrusion
[1060, 1098, 0]"]
- 47[Wall]
- 48[Wall]
- 49[Wall]
- 50[Wall]
- 51["Cap Start"]
- 52["Cap End"]
- 53["SweepEdge Opposite"]
- 54["SweepEdge Adjacent"]
- 55["SweepEdge Opposite"]
- 56["SweepEdge Adjacent"]
- 57["SweepEdge Opposite"]
- 58["SweepEdge Adjacent"]
- 59["SweepEdge Opposite"]
- 60["SweepEdge Adjacent"]
- 61["Plane
[1361, 1378, 0]"]
- 68["Sweep Extrusion
[1647, 1685, 0]"]
- 69[Wall]
- 70[Wall]
- 71[Wall]
- 72[Wall]
- 73["Cap Start"]
- 74["Cap End"]
- 75["SweepEdge Opposite"]
- 76["SweepEdge Adjacent"]
- 77["SweepEdge Opposite"]
- 78["SweepEdge Adjacent"]
- 79["SweepEdge Opposite"]
- 80["SweepEdge Adjacent"]
- 81["SweepEdge Opposite"]
- 82["SweepEdge Adjacent"]
+ 30["Plane
[787, 804, 0]"]
+ 37["Sweep Extrusion
[1060, 1098, 0]"]
+ 38[Wall]
+ 39[Wall]
+ 40[Wall]
+ 41[Wall]
+ 42["Cap Start"]
+ 43["Cap End"]
+ 44["SweepEdge Opposite"]
+ 45["SweepEdge Opposite"]
+ 46["SweepEdge Opposite"]
+ 47["SweepEdge Adjacent"]
+ 48["Plane
[1361, 1378, 0]"]
+ 55["Sweep Extrusion
[1647, 1685, 0]"]
+ 56[Wall]
+ 57[Wall]
+ 58[Wall]
+ 59[Wall]
+ 60["Cap Start"]
+ 61["Cap End"]
+ 62["SweepEdge Opposite"]
+ 63["SweepEdge Opposite"]
+ 64["SweepEdge Opposite"]
+ 65["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 --- 4
@@ -100,29 +83,28 @@ flowchart LR
2 ---- 12
2 --- 11
3 --- 13
- 3 --- 23
- 3 --- 24
+ 3 x--> 22
4 --- 14
- 4 --- 25
- 4 --- 26
+ 4 --- 23
+ 4 x--> 22
5 --- 15
- 5 --- 27
- 5 --- 28
+ 5 --- 24
+ 5 x--> 22
6 --- 16
- 6 --- 29
- 6 --- 30
+ 6 --- 25
+ 6 x--> 22
7 --- 17
- 7 --- 31
- 7 --- 32
+ 7 --- 26
+ 7 x--> 22
8 --- 18
- 8 --- 33
- 8 --- 34
+ 8 --- 27
+ 8 x--> 22
9 --- 19
- 9 --- 35
- 9 --- 36
+ 9 --- 28
+ 9 x--> 22
10 --- 20
- 10 --- 37
- 10 --- 38
+ 10 --- 29
+ 10 x--> 22
12 --- 13
12 --- 14
12 --- 15
@@ -140,79 +122,88 @@ flowchart LR
12 --- 27
12 --- 28
12 --- 29
- 12 --- 30
- 12 --- 31
- 12 --- 32
- 12 --- 33
- 12 --- 34
- 12 --- 35
- 12 --- 36
- 12 --- 37
- 12 --- 38
- 39 --- 40
- 40 --- 41
- 40 --- 42
- 40 --- 43
- 40 --- 44
- 40 ---- 46
- 40 --- 45
- 41 --- 47
- 41 --- 53
- 41 --- 54
- 42 --- 48
- 42 --- 55
- 42 --- 56
- 43 --- 49
- 43 --- 57
- 43 --- 58
- 44 --- 50
- 44 --- 59
- 44 --- 60
- 46 --- 47
- 46 --- 48
- 46 --- 49
- 46 --- 50
- 46 --- 51
- 46 --- 52
- 46 --- 53
- 46 --- 54
- 46 --- 55
- 46 --- 56
- 46 --- 57
- 46 --- 58
- 46 --- 59
- 46 --- 60
- 61 --- 62
- 62 --- 63
- 62 --- 64
- 62 --- 65
- 62 --- 66
- 62 ---- 68
- 62 --- 67
- 63 --- 72
- 63 --- 81
- 63 --- 82
- 64 --- 71
- 64 --- 79
- 64 --- 80
- 65 --- 70
- 65 --- 77
- 65 --- 78
- 66 --- 69
- 66 --- 75
- 66 --- 76
- 68 --- 69
- 68 --- 70
- 68 --- 71
- 68 --- 72
- 68 --- 73
- 68 --- 74
- 68 --- 75
- 68 --- 76
- 68 --- 77
- 68 --- 78
- 68 --- 79
- 68 --- 80
- 68 --- 81
- 68 --- 82
+ 23 <--x 14
+ 23 <--x 21
+ 24 <--x 15
+ 24 <--x 21
+ 25 <--x 16
+ 25 <--x 21
+ 26 <--x 17
+ 26 <--x 21
+ 27 <--x 18
+ 27 <--x 21
+ 28 <--x 19
+ 28 <--x 21
+ 29 <--x 20
+ 29 <--x 21
+ 30 --- 31
+ 31 --- 32
+ 31 --- 33
+ 31 --- 34
+ 31 --- 35
+ 31 ---- 37
+ 31 --- 36
+ 32 --- 38
+ 32 x--> 43
+ 33 --- 39
+ 33 --- 44
+ 33 --- 47
+ 33 x--> 43
+ 34 --- 40
+ 34 --- 45
+ 34 x--> 43
+ 35 --- 41
+ 35 --- 46
+ 35 x--> 43
+ 37 --- 38
+ 37 --- 39
+ 37 --- 40
+ 37 --- 41
+ 37 --- 42
+ 37 --- 43
+ 37 --- 44
+ 37 --- 45
+ 37 --- 46
+ 37 --- 47
+ 44 <--x 39
+ 44 <--x 42
+ 45 <--x 40
+ 45 <--x 42
+ 46 <--x 41
+ 46 <--x 42
+ 48 --- 49
+ 49 --- 50
+ 49 --- 51
+ 49 --- 52
+ 49 --- 53
+ 49 ---- 55
+ 49 --- 54
+ 50 --- 59
+ 50 --- 64
+ 50 x--> 61
+ 51 --- 58
+ 51 --- 63
+ 51 --- 65
+ 51 x--> 61
+ 52 --- 57
+ 52 --- 62
+ 52 x--> 61
+ 53 --- 56
+ 53 x--> 61
+ 55 --- 56
+ 55 --- 57
+ 55 --- 58
+ 55 --- 59
+ 55 --- 60
+ 55 --- 61
+ 55 --- 62
+ 55 --- 63
+ 55 --- 64
+ 55 --- 65
+ 62 <--x 57
+ 62 <--x 60
+ 63 <--x 58
+ 63 <--x 60
+ 64 <--x 59
+ 64 <--x 60
```
diff --git a/rust/kcl-lib/tests/pattern_linear_in_module/artifact_commands.snap b/rust/kcl-lib/tests/pattern_linear_in_module/artifact_commands.snap
index ce4ee5f37..6c04a1714 100644
--- a/rust/kcl-lib/tests/pattern_linear_in_module/artifact_commands.snap
+++ b/rust/kcl-lib/tests/pattern_linear_in_module/artifact_commands.snap
@@ -390,49 +390,7 @@ description: Artifact commands pattern_linear_in_module.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": {
- "x": 0.0,
- "y": -1.0,
- "z": 0.0
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 1.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -441,20 +399,18 @@ description: Artifact commands pattern_linear_in_module.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -532,49 +488,7 @@ description: Artifact commands pattern_linear_in_module.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": {
- "x": 0.0,
- "y": -1.0,
- "z": 0.0
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 1.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -583,20 +497,18 @@ description: Artifact commands pattern_linear_in_module.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -670,6 +582,33 @@ description: Artifact commands pattern_linear_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -741,6 +680,33 @@ description: Artifact commands pattern_linear_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -812,6 +778,229 @@ description: Artifact commands pattern_linear_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": -1.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 1.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": -1.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 1.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1173,49 +1362,7 @@ description: Artifact commands pattern_linear_in_module.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": {
- "x": 0.0,
- "y": -1.0,
- "z": 0.0
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 1.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -1224,20 +1371,18 @@ description: Artifact commands pattern_linear_in_module.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -1315,49 +1460,7 @@ description: Artifact commands pattern_linear_in_module.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": {
- "x": 0.0,
- "y": -1.0,
- "z": 0.0
- }
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": 1.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -1366,20 +1469,18 @@ description: Artifact commands pattern_linear_in_module.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -1453,6 +1554,33 @@ description: Artifact commands pattern_linear_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1524,6 +1652,33 @@ description: Artifact commands pattern_linear_in_module.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1594,5 +1749,228 @@ description: Artifact commands pattern_linear_in_module.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": -1.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 1.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": {
+ "x": 0.0,
+ "y": -1.0,
+ "z": 0.0
+ }
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": 1.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/pattern_linear_in_module/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/pattern_linear_in_module/artifact_graph_flowchart.snap.md
index fd3413c52..64b5fb6ed 100644
--- a/rust/kcl-lib/tests/pattern_linear_in_module/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/pattern_linear_in_module/artifact_graph_flowchart.snap.md
@@ -5,59 +5,49 @@ flowchart LR
3["Segment
[54, 89, 6]"]
4[Solid2d]
end
- subgraph path18 [Path]
- 18["Path
[54, 89, 6]"]
- 19["Segment
[54, 89, 6]"]
- 20[Solid2d]
+ subgraph path16 [Path]
+ 16["Path
[54, 89, 6]"]
+ 17["Segment
[54, 89, 6]"]
+ 18[Solid2d]
end
1["Plane
[29, 46, 6]"]
5["Sweep Extrusion
[200, 219, 6]"]
6[Wall]
7["Cap Start"]
8["Cap End"]
- 9["SweepEdge Opposite"]
- 10["SweepEdge Adjacent"]
+ 9["Sweep Extrusion
[200, 219, 6]"]
+ 10["Sweep Extrusion
[200, 219, 6]"]
11["Sweep Extrusion
[200, 219, 6]"]
12["Sweep Extrusion
[200, 219, 6]"]
13["Sweep Extrusion
[200, 219, 6]"]
14["Sweep Extrusion
[200, 219, 6]"]
- 15["Sweep Extrusion
[200, 219, 6]"]
- 16["Sweep Extrusion
[200, 219, 6]"]
- 17["Plane
[29, 46, 6]"]
- 21["Sweep Extrusion
[200, 219, 6]"]
- 22[Wall]
- 23["Cap Start"]
- 24["Cap End"]
- 25["SweepEdge Opposite"]
- 26["SweepEdge Adjacent"]
+ 15["Plane
[29, 46, 6]"]
+ 19["Sweep Extrusion
[200, 219, 6]"]
+ 20[Wall]
+ 21["Cap Start"]
+ 22["Cap End"]
+ 23["Sweep Extrusion
[200, 219, 6]"]
+ 24["Sweep Extrusion
[200, 219, 6]"]
+ 25["Sweep Extrusion
[200, 219, 6]"]
+ 26["Sweep Extrusion
[200, 219, 6]"]
27["Sweep Extrusion
[200, 219, 6]"]
28["Sweep Extrusion
[200, 219, 6]"]
- 29["Sweep Extrusion
[200, 219, 6]"]
- 30["Sweep Extrusion
[200, 219, 6]"]
- 31["Sweep Extrusion
[200, 219, 6]"]
- 32["Sweep Extrusion
[200, 219, 6]"]
1 --- 2
2 --- 3
2 ---- 5
2 --- 4
3 --- 6
- 3 --- 9
- 3 --- 10
+ 3 x--> 7
5 --- 6
5 --- 7
5 --- 8
- 5 --- 9
- 5 --- 10
- 17 --- 18
- 18 --- 19
- 18 ---- 21
- 18 --- 20
+ 15 --- 16
+ 16 --- 17
+ 16 ---- 19
+ 16 --- 18
+ 17 --- 20
+ 17 x--> 21
+ 19 --- 20
+ 19 --- 21
19 --- 22
- 19 --- 25
- 19 --- 26
- 21 --- 22
- 21 --- 23
- 21 --- 24
- 21 --- 25
- 21 --- 26
```
diff --git a/rust/kcl-lib/tests/pentagon_fillet_sugar/artifact_commands.snap b/rust/kcl-lib/tests/pentagon_fillet_sugar/artifact_commands.snap
index 251786167..2cfdd816b 100644
--- a/rust/kcl-lib/tests/pentagon_fillet_sugar/artifact_commands.snap
+++ b/rust/kcl-lib/tests/pentagon_fillet_sugar/artifact_commands.snap
@@ -223,20 +223,27 @@ description: Artifact commands pentagon_fillet_sugar.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -259,6 +266,80 @@ description: Artifact commands pentagon_fillet_sugar.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -398,6 +479,33 @@ description: Artifact commands pentagon_fillet_sugar.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -571,6 +679,33 @@ description: Artifact commands pentagon_fillet_sugar.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/pentagon_fillet_sugar/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/pentagon_fillet_sugar/artifact_graph_flowchart.snap.md
index cd90dc13f..ac5d6f2d4 100644
--- a/rust/kcl-lib/tests/pentagon_fillet_sugar/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/pentagon_fillet_sugar/artifact_graph_flowchart.snap.md
@@ -6,17 +6,17 @@ flowchart LR
4["Segment
[187, 242, 0]"]
5["Segment
[248, 303, 0]"]
end
- subgraph path18 [Path]
- 18["Path
[409, 460, 0]"]
- 19["Segment
[468, 582, 0]"]
- 20["Segment
[590, 598, 0]"]
- 21[Solid2d]
+ subgraph path14 [Path]
+ 14["Path
[409, 460, 0]"]
+ 15["Segment
[468, 582, 0]"]
+ 16["Segment
[590, 598, 0]"]
+ 17[Solid2d]
end
- subgraph path29 [Path]
- 29["Path
[409, 460, 0]"]
- 30["Segment
[468, 582, 0]"]
- 31["Segment
[590, 598, 0]"]
- 32[Solid2d]
+ subgraph path24 [Path]
+ 24["Path
[409, 460, 0]"]
+ 25["Segment
[468, 582, 0]"]
+ 26["Segment
[590, 598, 0]"]
+ 27[Solid2d]
end
1["Plane
[73, 90, 0]"]
6["Sweep Extrusion
[309, 341, 0]"]
@@ -26,41 +26,34 @@ flowchart LR
10["Cap Start"]
11["Cap End"]
12["SweepEdge Opposite"]
- 13["SweepEdge Adjacent"]
- 14["SweepEdge Opposite"]
- 15["SweepEdge Adjacent"]
- 16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
- 22["Sweep Extrusion
[641, 669, 0]"]
- 23[Wall]
- 24["Cap End"]
- 25["SweepEdge Opposite"]
- 26["SweepEdge Adjacent"]
- 27["EdgeCut Fillet
[675, 802, 0]"]
- 28["EdgeCut Fillet
[675, 802, 0]"]
- 33["Sweep Extrusion
[841, 869, 0]"]
- 34[Wall]
- 35["Cap End"]
- 36["SweepEdge Opposite"]
- 37["SweepEdge Adjacent"]
- 38["EdgeCut Fillet
[875, 1002, 0]"]
- 39["EdgeCut Fillet
[875, 1002, 0]"]
- 40["StartSketchOnFace
[372, 401, 0]"]
- 41["StartSketchOnFace
[372, 401, 0]"]
+ 13["SweepEdge Opposite"]
+ 18["Sweep Extrusion
[641, 669, 0]"]
+ 19[Wall]
+ 20["Cap End"]
+ 21["SweepEdge Opposite"]
+ 22["EdgeCut Fillet
[675, 802, 0]"]
+ 23["EdgeCut Fillet
[675, 802, 0]"]
+ 28["Sweep Extrusion
[841, 869, 0]"]
+ 29[Wall]
+ 30["Cap End"]
+ 31["SweepEdge Opposite"]
+ 32["EdgeCut Fillet
[875, 1002, 0]"]
+ 33["EdgeCut Fillet
[875, 1002, 0]"]
+ 34["StartSketchOnFace
[372, 401, 0]"]
+ 35["StartSketchOnFace
[372, 401, 0]"]
1 --- 2
2 --- 3
2 --- 4
2 --- 5
2 ---- 6
3 --- 7
- 3 --- 12
- 3 --- 13
+ 3 x--> 10
4 --- 8
- 4 --- 14
- 4 --- 15
+ 4 --- 12
+ 4 x--> 10
5 --- 9
- 5 --- 16
- 5 --- 17
+ 5 --- 13
+ 5 x--> 10
6 --- 7
6 --- 8
6 --- 9
@@ -68,38 +61,36 @@ flowchart LR
6 --- 11
6 --- 12
6 --- 13
- 6 --- 14
- 6 --- 15
- 6 --- 16
- 6 --- 17
- 7 --- 29
- 9 --- 18
+ 7 --- 24
+ 9 --- 14
+ 12 <--x 8
+ 12 <--x 11
+ 13 <--x 9
+ 13 <--x 11
+ 14 --- 15
+ 14 --- 16
+ 14 ---- 18
+ 14 --- 17
+ 15 --- 19
+ 15 --- 21
+ 15 --- 22
+ 15 <--x 9
18 --- 19
18 --- 20
- 18 ---- 22
18 --- 21
- 19 --- 23
- 19 --- 25
- 19 --- 26
- 19 --- 27
- 22 --- 23
- 22 --- 24
- 22 --- 25
- 22 --- 26
- 25 <--x 28
- 29 --- 30
- 29 --- 31
- 29 ---- 33
- 29 --- 32
- 30 --- 34
- 30 --- 36
- 30 --- 37
- 30 --- 38
- 33 --- 34
- 33 --- 35
- 33 --- 36
- 33 --- 37
- 36 <--x 39
- 9 <--x 40
- 7 <--x 41
+ 21 <--x 23
+ 24 --- 25
+ 24 --- 26
+ 24 ---- 28
+ 24 --- 27
+ 25 --- 29
+ 25 --- 31
+ 25 --- 32
+ 25 <--x 7
+ 28 --- 29
+ 28 --- 30
+ 28 --- 31
+ 31 <--x 33
+ 9 <--x 34
+ 7 <--x 35
```
diff --git a/rust/kcl-lib/tests/pipe_as_arg/artifact_commands.snap b/rust/kcl-lib/tests/pipe_as_arg/artifact_commands.snap
index 8031aa681..25c75bcea 100644
--- a/rust/kcl-lib/tests/pipe_as_arg/artifact_commands.snap
+++ b/rust/kcl-lib/tests/pipe_as_arg/artifact_commands.snap
@@ -248,20 +248,27 @@ description: Artifact commands pipe_as_arg.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -284,6 +291,33 @@ description: Artifact commands pipe_as_arg.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -303,5 +337,79 @@ description: Artifact commands pipe_as_arg.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/pipe_as_arg/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/pipe_as_arg/artifact_graph_flowchart.snap.md
index 30809be37..1dbecd917 100644
--- a/rust/kcl-lib/tests/pipe_as_arg/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/pipe_as_arg/artifact_graph_flowchart.snap.md
@@ -18,13 +18,8 @@ flowchart LR
14["Cap Start"]
15["Cap End"]
16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
+ 17["SweepEdge Opposite"]
18["SweepEdge Opposite"]
- 19["SweepEdge Adjacent"]
- 20["SweepEdge Opposite"]
- 21["SweepEdge Adjacent"]
- 22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 --- 4
@@ -34,17 +29,16 @@ flowchart LR
2 ---- 9
2 --- 8
3 --- 13
- 3 --- 22
- 3 --- 23
+ 3 --- 18
+ 3 x--> 14
4 --- 12
- 4 --- 20
- 4 --- 21
+ 4 --- 17
+ 4 x--> 14
5 --- 11
- 5 --- 18
- 5 --- 19
+ 5 --- 16
+ 5 x--> 14
6 --- 10
- 6 --- 16
- 6 --- 17
+ 6 x--> 14
9 --- 10
9 --- 11
9 --- 12
@@ -54,9 +48,10 @@ flowchart LR
9 --- 16
9 --- 17
9 --- 18
- 9 --- 19
- 9 --- 20
- 9 --- 21
- 9 --- 22
- 9 --- 23
+ 16 <--x 11
+ 16 <--x 15
+ 17 <--x 12
+ 17 <--x 15
+ 18 <--x 13
+ 18 <--x 15
```
diff --git a/rust/kcl-lib/tests/poop_chute/artifact_commands.snap b/rust/kcl-lib/tests/poop_chute/artifact_commands.snap
index cfbc1d0b5..81e5e2a17 100644
--- a/rust/kcl-lib/tests/poop_chute/artifact_commands.snap
+++ b/rust/kcl-lib/tests/poop_chute/artifact_commands.snap
@@ -375,20 +375,27 @@ description: Artifact commands poop_chute.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -415,20 +422,27 @@ description: Artifact commands poop_chute.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -455,20 +469,27 @@ description: Artifact commands poop_chute.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -495,20 +516,27 @@ description: Artifact commands poop_chute.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -535,20 +563,27 @@ description: Artifact commands poop_chute.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -575,20 +610,27 @@ description: Artifact commands poop_chute.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -611,6 +653,315 @@ description: Artifact commands poop_chute.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -966,20 +1317,27 @@ description: Artifact commands poop_chute.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1006,20 +1364,27 @@ description: Artifact commands poop_chute.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1046,20 +1411,27 @@ description: Artifact commands poop_chute.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1086,20 +1458,27 @@ description: Artifact commands poop_chute.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1126,20 +1505,27 @@ description: Artifact commands poop_chute.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1166,20 +1552,27 @@ description: Artifact commands poop_chute.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -1201,5 +1594,314 @@ description: Artifact commands poop_chute.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/poop_chute/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/poop_chute/artifact_graph_flowchart.snap.md
index 40a9759a9..7bbfb0229 100644
--- a/rust/kcl-lib/tests/poop_chute/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/poop_chute/artifact_graph_flowchart.snap.md
@@ -17,22 +17,22 @@ flowchart LR
15["Segment
[824, 832, 0]"]
16[Solid2d]
end
- subgraph path60 [Path]
- 60["Path
[1000, 1044, 0]"]
- 61["Segment
[1050, 1084, 0]"]
- 62["Segment
[1090, 1159, 0]"]
- 63["Segment
[1165, 1192, 0]"]
- 64["Segment
[1198, 1229, 0]"]
- 65["Segment
[1235, 1270, 0]"]
- 66["Segment
[1276, 1356, 0]"]
- 67["Segment
[1362, 1393, 0]"]
- 68["Segment
[1399, 1458, 0]"]
- 69["Segment
[1464, 1491, 0]"]
- 70["Segment
[1497, 1519, 0]"]
- 71["Segment
[1525, 1560, 0]"]
- 72["Segment
[1566, 1612, 0]"]
- 73["Segment
[1618, 1626, 0]"]
- 74[Solid2d]
+ subgraph path46 [Path]
+ 46["Path
[1000, 1044, 0]"]
+ 47["Segment
[1050, 1084, 0]"]
+ 48["Segment
[1090, 1159, 0]"]
+ 49["Segment
[1165, 1192, 0]"]
+ 50["Segment
[1198, 1229, 0]"]
+ 51["Segment
[1235, 1270, 0]"]
+ 52["Segment
[1276, 1356, 0]"]
+ 53["Segment
[1362, 1393, 0]"]
+ 54["Segment
[1399, 1458, 0]"]
+ 55["Segment
[1464, 1491, 0]"]
+ 56["Segment
[1497, 1519, 0]"]
+ 57["Segment
[1525, 1560, 0]"]
+ 58["Segment
[1566, 1612, 0]"]
+ 59["Segment
[1618, 1626, 0]"]
+ 60[Solid2d]
end
1["Plane
[182, 200, 0]"]
17["Sweep Revolve
[843, 962, 0]"]
@@ -52,74 +52,46 @@ flowchart LR
31["Cap Start"]
32["Cap End"]
33["SweepEdge Opposite"]
- 34["SweepEdge Adjacent"]
+ 34["SweepEdge Opposite"]
35["SweepEdge Opposite"]
- 36["SweepEdge Adjacent"]
+ 36["SweepEdge Opposite"]
37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
+ 38["SweepEdge Opposite"]
39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
+ 40["SweepEdge Opposite"]
41["SweepEdge Opposite"]
- 42["SweepEdge Adjacent"]
+ 42["SweepEdge Opposite"]
43["SweepEdge Opposite"]
- 44["SweepEdge Adjacent"]
- 45["SweepEdge Opposite"]
- 46["SweepEdge Adjacent"]
- 47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
- 49["SweepEdge Opposite"]
- 50["SweepEdge Adjacent"]
- 51["SweepEdge Opposite"]
- 52["SweepEdge Adjacent"]
- 53["SweepEdge Opposite"]
- 54["SweepEdge Adjacent"]
- 55["SweepEdge Opposite"]
- 56["SweepEdge Adjacent"]
- 57["SweepEdge Opposite"]
- 58["SweepEdge Adjacent"]
- 59["Plane
[976, 994, 0]"]
- 75["Sweep Extrusion
[1632, 1670, 0]"]
- 76[Wall]
- 77[Wall]
- 78[Wall]
- 79[Wall]
- 80[Wall]
- 81[Wall]
- 82[Wall]
- 83[Wall]
- 84[Wall]
- 85[Wall]
- 86[Wall]
- 87[Wall]
- 88[Wall]
- 89["Cap Start"]
- 90["Cap End"]
- 91["SweepEdge Opposite"]
- 92["SweepEdge Adjacent"]
- 93["SweepEdge Opposite"]
- 94["SweepEdge Adjacent"]
- 95["SweepEdge Opposite"]
- 96["SweepEdge Adjacent"]
- 97["SweepEdge Opposite"]
- 98["SweepEdge Adjacent"]
- 99["SweepEdge Opposite"]
- 100["SweepEdge Adjacent"]
- 101["SweepEdge Opposite"]
- 102["SweepEdge Adjacent"]
- 103["SweepEdge Opposite"]
- 104["SweepEdge Adjacent"]
- 105["SweepEdge Opposite"]
- 106["SweepEdge Adjacent"]
- 107["SweepEdge Opposite"]
- 108["SweepEdge Adjacent"]
- 109["SweepEdge Opposite"]
- 110["SweepEdge Adjacent"]
- 111["SweepEdge Opposite"]
- 112["SweepEdge Adjacent"]
- 113["SweepEdge Opposite"]
- 114["SweepEdge Adjacent"]
- 115["SweepEdge Opposite"]
- 116["SweepEdge Adjacent"]
+ 44["SweepEdge Opposite"]
+ 45["Plane
[976, 994, 0]"]
+ 61["Sweep Extrusion
[1632, 1670, 0]"]
+ 62[Wall]
+ 63[Wall]
+ 64[Wall]
+ 65[Wall]
+ 66[Wall]
+ 67[Wall]
+ 68[Wall]
+ 69[Wall]
+ 70[Wall]
+ 71[Wall]
+ 72[Wall]
+ 73[Wall]
+ 74[Wall]
+ 75["Cap Start"]
+ 76["Cap End"]
+ 77["SweepEdge Opposite"]
+ 78["SweepEdge Opposite"]
+ 79["SweepEdge Opposite"]
+ 80["SweepEdge Opposite"]
+ 81["SweepEdge Opposite"]
+ 82["SweepEdge Opposite"]
+ 83["SweepEdge Opposite"]
+ 84["SweepEdge Opposite"]
+ 85["SweepEdge Opposite"]
+ 86["SweepEdge Opposite"]
+ 87["SweepEdge Opposite"]
+ 88["SweepEdge Opposite"]
1 --- 2
2 --- 3
2 --- 4
@@ -137,44 +109,43 @@ flowchart LR
2 ---- 17
2 --- 16
3 --- 18
- 3 --- 33
- 3 --- 34
+ 3 x--> 31
4 --- 19
- 4 --- 35
- 4 --- 36
+ 4 --- 33
+ 4 x--> 31
5 --- 20
- 5 --- 37
- 5 --- 38
+ 5 --- 34
+ 5 x--> 31
6 --- 21
- 6 --- 39
- 6 --- 40
+ 6 --- 35
+ 6 x--> 31
7 --- 22
- 7 --- 41
- 7 --- 42
+ 7 --- 36
+ 7 x--> 31
8 --- 23
- 8 --- 43
- 8 --- 44
+ 8 --- 37
+ 8 x--> 31
9 --- 24
- 9 --- 45
- 9 --- 46
+ 9 --- 38
+ 9 x--> 31
10 --- 25
- 10 --- 47
- 10 --- 48
+ 10 --- 39
+ 10 x--> 31
11 --- 26
- 11 --- 49
- 11 --- 50
+ 11 --- 40
+ 11 x--> 31
12 --- 27
- 12 --- 51
- 12 --- 52
+ 12 --- 41
+ 12 x--> 31
13 --- 28
- 13 --- 53
- 13 --- 54
+ 13 --- 42
+ 13 x--> 31
14 --- 29
- 14 --- 55
- 14 --- 56
+ 14 --- 43
+ 14 x--> 31
15 --- 30
- 15 --- 57
- 15 --- 58
+ 15 --- 44
+ 15 x--> 31
17 --- 18
17 --- 19
17 --- 20
@@ -202,114 +173,133 @@ flowchart LR
17 --- 42
17 --- 43
17 --- 44
- 17 --- 45
- 17 --- 46
- 17 --- 47
- 17 --- 48
- 17 --- 49
- 17 --- 50
- 17 --- 51
- 17 --- 52
- 17 --- 53
- 17 --- 54
- 17 --- 55
- 17 --- 56
- 17 --- 57
- 17 --- 58
- 59 --- 60
- 60 --- 61
- 60 --- 62
- 60 --- 63
- 60 --- 64
- 60 --- 65
- 60 --- 66
- 60 --- 67
- 60 --- 68
- 60 --- 69
- 60 --- 70
- 60 --- 71
- 60 --- 72
- 60 --- 73
- 60 ---- 75
- 60 --- 74
+ 33 <--x 19
+ 33 <--x 32
+ 34 <--x 20
+ 34 <--x 32
+ 35 <--x 21
+ 35 <--x 32
+ 36 <--x 22
+ 36 <--x 32
+ 37 <--x 23
+ 37 <--x 32
+ 38 <--x 24
+ 38 <--x 32
+ 39 <--x 25
+ 39 <--x 32
+ 40 <--x 26
+ 40 <--x 32
+ 41 <--x 27
+ 41 <--x 32
+ 42 <--x 28
+ 42 <--x 32
+ 43 <--x 29
+ 43 <--x 32
+ 44 <--x 30
+ 44 <--x 32
+ 45 --- 46
+ 46 --- 47
+ 46 --- 48
+ 46 --- 49
+ 46 --- 50
+ 46 --- 51
+ 46 --- 52
+ 46 --- 53
+ 46 --- 54
+ 46 --- 55
+ 46 --- 56
+ 46 --- 57
+ 46 --- 58
+ 46 --- 59
+ 46 ---- 61
+ 46 --- 60
+ 47 --- 62
+ 47 x--> 75
+ 48 --- 63
+ 48 --- 77
+ 48 x--> 75
+ 49 --- 64
+ 49 --- 78
+ 49 x--> 75
+ 50 --- 65
+ 50 --- 79
+ 50 x--> 75
+ 51 --- 66
+ 51 --- 80
+ 51 x--> 75
+ 52 --- 67
+ 52 --- 81
+ 52 x--> 75
+ 53 --- 68
+ 53 --- 82
+ 53 x--> 75
+ 54 --- 69
+ 54 --- 83
+ 54 x--> 75
+ 55 --- 70
+ 55 --- 84
+ 55 x--> 75
+ 56 --- 71
+ 56 --- 85
+ 56 x--> 75
+ 57 --- 72
+ 57 --- 86
+ 57 x--> 75
+ 58 --- 73
+ 58 --- 87
+ 58 x--> 75
+ 59 --- 74
+ 59 --- 88
+ 59 x--> 75
+ 61 --- 62
+ 61 --- 63
+ 61 --- 64
+ 61 --- 65
+ 61 --- 66
+ 61 --- 67
+ 61 --- 68
+ 61 --- 69
+ 61 --- 70
+ 61 --- 71
+ 61 --- 72
+ 61 --- 73
+ 61 --- 74
+ 61 --- 75
61 --- 76
- 61 --- 91
- 61 --- 92
- 62 --- 77
- 62 --- 93
- 62 --- 94
- 63 --- 78
- 63 --- 95
- 63 --- 96
- 64 --- 79
- 64 --- 97
- 64 --- 98
- 65 --- 80
- 65 --- 99
- 65 --- 100
- 66 --- 81
- 66 --- 101
- 66 --- 102
- 67 --- 82
- 67 --- 103
- 67 --- 104
- 68 --- 83
- 68 --- 105
- 68 --- 106
- 69 --- 84
- 69 --- 107
- 69 --- 108
- 70 --- 85
- 70 --- 109
- 70 --- 110
- 71 --- 86
- 71 --- 111
- 71 --- 112
- 72 --- 87
- 72 --- 113
- 72 --- 114
- 73 --- 88
- 73 --- 115
- 73 --- 116
- 75 --- 76
- 75 --- 77
- 75 --- 78
- 75 --- 79
- 75 --- 80
- 75 --- 81
- 75 --- 82
- 75 --- 83
- 75 --- 84
- 75 --- 85
- 75 --- 86
- 75 --- 87
- 75 --- 88
- 75 --- 89
- 75 --- 90
- 75 --- 91
- 75 --- 92
- 75 --- 93
- 75 --- 94
- 75 --- 95
- 75 --- 96
- 75 --- 97
- 75 --- 98
- 75 --- 99
- 75 --- 100
- 75 --- 101
- 75 --- 102
- 75 --- 103
- 75 --- 104
- 75 --- 105
- 75 --- 106
- 75 --- 107
- 75 --- 108
- 75 --- 109
- 75 --- 110
- 75 --- 111
- 75 --- 112
- 75 --- 113
- 75 --- 114
- 75 --- 115
- 75 --- 116
+ 61 --- 77
+ 61 --- 78
+ 61 --- 79
+ 61 --- 80
+ 61 --- 81
+ 61 --- 82
+ 61 --- 83
+ 61 --- 84
+ 61 --- 85
+ 61 --- 86
+ 61 --- 87
+ 61 --- 88
+ 77 <--x 63
+ 77 <--x 76
+ 78 <--x 64
+ 78 <--x 76
+ 79 <--x 65
+ 79 <--x 76
+ 80 <--x 66
+ 80 <--x 76
+ 81 <--x 67
+ 81 <--x 76
+ 82 <--x 68
+ 82 <--x 76
+ 83 <--x 69
+ 83 <--x 76
+ 84 <--x 70
+ 84 <--x 76
+ 85 <--x 71
+ 85 <--x 76
+ 86 <--x 72
+ 86 <--x 76
+ 87 <--x 73
+ 87 <--x 76
+ 88 <--x 74
+ 88 <--x 76
```
diff --git a/rust/kcl-lib/tests/revolve_about_edge/artifact_commands.snap b/rust/kcl-lib/tests/revolve_about_edge/artifact_commands.snap
index b185b24a1..c2789b28b 100644
--- a/rust/kcl-lib/tests/revolve_about_edge/artifact_commands.snap
+++ b/rust/kcl-lib/tests/revolve_about_edge/artifact_commands.snap
@@ -266,5 +266,32 @@ description: Artifact commands revolve_about_edge.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/revolve_about_edge/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/revolve_about_edge/artifact_graph_flowchart.snap.md
index 88c641034..f1e98d178 100644
--- a/rust/kcl-lib/tests/revolve_about_edge/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/revolve_about_edge/artifact_graph_flowchart.snap.md
@@ -15,8 +15,6 @@ flowchart LR
9[Wall]
10["Cap Start"]
11["Cap End"]
- 12["SweepEdge Opposite"]
- 13["SweepEdge Adjacent"]
1 --- 2
2 --- 3
4 --- 5
@@ -24,11 +22,8 @@ flowchart LR
5 ---- 8
5 --- 7
6 --- 9
- 6 --- 12
- 6 --- 13
+ 6 x--> 10
8 --- 9
8 --- 10
8 --- 11
- 8 --- 12
- 8 --- 13
```
diff --git a/rust/kcl-lib/tests/riddle_small/artifact_commands.snap b/rust/kcl-lib/tests/riddle_small/artifact_commands.snap
index c7fa1f79d..c041542b6 100644
--- a/rust/kcl-lib/tests/riddle_small/artifact_commands.snap
+++ b/rust/kcl-lib/tests/riddle_small/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands riddle_small.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands riddle_small.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -286,5 +320,79 @@ description: Artifact commands riddle_small.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/riddle_small/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/riddle_small/artifact_graph_flowchart.snap.md
index 03e90fd82..e714d58a9 100644
--- a/rust/kcl-lib/tests/riddle_small/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/riddle_small/artifact_graph_flowchart.snap.md
@@ -17,13 +17,8 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
1 --- 2
2 --- 3
2 --- 4
@@ -32,17 +27,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
+ 3 --- 17
+ 3 x--> 13
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 13
5 --- 10
- 5 --- 17
- 5 --- 18
+ 5 --- 15
+ 5 x--> 13
6 --- 9
- 6 --- 15
- 6 --- 16
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -52,9 +46,10 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
```
diff --git a/rust/kcl-lib/tests/rotate_after_fillet/artifact_commands.snap b/rust/kcl-lib/tests/rotate_after_fillet/artifact_commands.snap
index b730640a7..f8dd946a3 100644
--- a/rust/kcl-lib/tests/rotate_after_fillet/artifact_commands.snap
+++ b/rust/kcl-lib/tests/rotate_after_fillet/artifact_commands.snap
@@ -201,6 +201,33 @@ description: Artifact commands rotate_after_fillet.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -438,20 +465,27 @@ description: Artifact commands rotate_after_fillet.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -478,20 +512,27 @@ description: Artifact commands rotate_after_fillet.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -514,6 +555,33 @@ description: Artifact commands rotate_after_fillet.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -534,6 +602,127 @@ description: Artifact commands rotate_after_fillet.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -673,6 +862,33 @@ description: Artifact commands rotate_after_fillet.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/rotate_after_fillet/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/rotate_after_fillet/artifact_graph_flowchart.snap.md
index 0b50a3946..271043638 100644
--- a/rust/kcl-lib/tests/rotate_after_fillet/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/rotate_after_fillet/artifact_graph_flowchart.snap.md
@@ -5,20 +5,20 @@ flowchart LR
3["Segment
[345, 415, 0]"]
4[Solid2d]
end
- subgraph path13 [Path]
- 13["Path
[660, 720, 0]"]
- 14["Segment
[728, 807, 0]"]
- 15["Segment
[815, 894, 0]"]
- 16["Segment
[902, 981, 0]"]
- 17["Segment
[989, 1067, 0]"]
- 18["Segment
[1075, 1153, 0]"]
- 19["Segment
[1161, 1168, 0]"]
- 20[Solid2d]
+ subgraph path12 [Path]
+ 12["Path
[660, 720, 0]"]
+ 13["Segment
[728, 807, 0]"]
+ 14["Segment
[815, 894, 0]"]
+ 15["Segment
[902, 981, 0]"]
+ 16["Segment
[989, 1067, 0]"]
+ 17["Segment
[1075, 1153, 0]"]
+ 18["Segment
[1161, 1168, 0]"]
+ 19[Solid2d]
end
- subgraph path41 [Path]
- 41["Path
[1276, 1345, 0]"]
- 42["Segment
[1276, 1345, 0]"]
- 43[Solid2d]
+ subgraph path33 [Path]
+ 33["Path
[1276, 1345, 0]"]
+ 34["Segment
[1276, 1345, 0]"]
+ 35[Solid2d]
end
1["Plane
[320, 337, 0]"]
5["Sweep Extrusion
[423, 456, 0]"]
@@ -26,37 +26,28 @@ flowchart LR
7["Cap Start"]
8["Cap End"]
9["SweepEdge Opposite"]
- 10["SweepEdge Adjacent"]
+ 10["EdgeCut Fillet
[464, 530, 0]"]
11["EdgeCut Fillet
[464, 530, 0]"]
- 12["EdgeCut Fillet
[464, 530, 0]"]
- 21["Sweep Extrusion
[1176, 1216, 0]"]
+ 20["Sweep Extrusion
[1176, 1216, 0]"]
+ 21[Wall]
22[Wall]
23[Wall]
24[Wall]
25[Wall]
26[Wall]
- 27[Wall]
- 28["Cap Start"]
+ 27["Cap Start"]
+ 28["SweepEdge Opposite"]
29["SweepEdge Opposite"]
- 30["SweepEdge Adjacent"]
+ 30["SweepEdge Opposite"]
31["SweepEdge Opposite"]
- 32["SweepEdge Adjacent"]
- 33["SweepEdge Opposite"]
- 34["SweepEdge Adjacent"]
- 35["SweepEdge Opposite"]
- 36["SweepEdge Adjacent"]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
+ 32["SweepEdge Opposite"]
+ 36["Sweep Extrusion
[1353, 1381, 0]"]
+ 37[Wall]
+ 38["Cap End"]
39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 44["Sweep Extrusion
[1353, 1381, 0]"]
- 45[Wall]
- 46["Cap End"]
- 47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
- 49["EdgeCut Fillet
[1389, 1448, 0]"]
- 50["StartSketchOnFace
[613, 652, 0]"]
- 51["StartSketchOnFace
[1231, 1268, 0]"]
+ 40["EdgeCut Fillet
[1389, 1448, 0]"]
+ 41["StartSketchOnFace
[613, 652, 0]"]
+ 42["StartSketchOnFace
[1231, 1268, 0]"]
1 --- 2
2 --- 3
2 ---- 5
@@ -64,71 +55,71 @@ flowchart LR
3 --- 6
3 --- 9
3 --- 10
- 3 --- 11
+ 3 x--> 8
5 --- 6
5 --- 7
5 --- 8
5 --- 9
- 5 --- 10
- 7 --- 13
- 8 --- 41
- 9 <--x 12
- 13 --- 14
- 13 --- 15
- 13 --- 16
- 13 --- 17
- 13 --- 18
- 13 --- 19
- 13 ---- 21
- 13 --- 20
- 14 --- 27
- 14 --- 39
- 14 --- 40
- 15 --- 26
- 15 --- 37
- 15 --- 38
- 16 --- 25
- 16 --- 35
- 16 --- 36
- 17 --- 24
- 17 --- 33
- 17 --- 34
- 18 --- 23
- 18 --- 31
- 18 --- 32
- 19 --- 22
- 19 --- 29
- 19 --- 30
- 21 --- 22
- 21 --- 23
- 21 --- 24
- 21 --- 25
- 21 --- 26
- 21 --- 27
- 21 --- 28
- 21 --- 29
- 21 --- 30
- 21 --- 31
- 21 --- 32
- 21 --- 33
- 21 --- 34
- 21 --- 35
- 21 --- 36
- 21 --- 37
- 21 --- 38
- 21 --- 39
- 21 --- 40
- 41 --- 42
- 41 ---- 44
- 41 --- 43
- 42 --- 45
- 42 --- 47
- 42 --- 48
- 44 --- 45
- 44 --- 46
- 44 --- 47
- 44 --- 48
- 47 <--x 49
- 7 <--x 50
- 8 <--x 51
+ 7 --- 12
+ 8 --- 33
+ 9 <--x 11
+ 12 --- 13
+ 12 --- 14
+ 12 --- 15
+ 12 --- 16
+ 12 --- 17
+ 12 --- 18
+ 12 ---- 20
+ 12 --- 19
+ 13 --- 26
+ 13 --- 32
+ 13 <--x 7
+ 14 --- 25
+ 14 --- 31
+ 14 <--x 7
+ 15 --- 24
+ 15 --- 30
+ 15 <--x 7
+ 16 --- 23
+ 16 --- 29
+ 16 <--x 7
+ 17 --- 22
+ 17 --- 28
+ 17 <--x 7
+ 18 --- 21
+ 18 <--x 7
+ 20 --- 21
+ 20 --- 22
+ 20 --- 23
+ 20 --- 24
+ 20 --- 25
+ 20 --- 26
+ 20 --- 27
+ 20 --- 28
+ 20 --- 29
+ 20 --- 30
+ 20 --- 31
+ 20 --- 32
+ 28 <--x 22
+ 28 <--x 27
+ 29 <--x 23
+ 29 <--x 27
+ 30 <--x 24
+ 30 <--x 27
+ 31 <--x 25
+ 31 <--x 27
+ 32 <--x 26
+ 32 <--x 27
+ 33 --- 34
+ 33 ---- 36
+ 33 --- 35
+ 34 --- 37
+ 34 --- 39
+ 34 <--x 8
+ 36 --- 37
+ 36 --- 38
+ 36 --- 39
+ 39 <--x 40
+ 7 <--x 41
+ 8 <--x 42
```
diff --git a/rust/kcl-lib/tests/scale_after_fillet/artifact_commands.snap b/rust/kcl-lib/tests/scale_after_fillet/artifact_commands.snap
index 9114fc57f..3b8177690 100644
--- a/rust/kcl-lib/tests/scale_after_fillet/artifact_commands.snap
+++ b/rust/kcl-lib/tests/scale_after_fillet/artifact_commands.snap
@@ -201,6 +201,33 @@ description: Artifact commands scale_after_fillet.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -438,20 +465,27 @@ description: Artifact commands scale_after_fillet.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -478,20 +512,27 @@ description: Artifact commands scale_after_fillet.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -514,6 +555,33 @@ description: Artifact commands scale_after_fillet.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -534,6 +602,127 @@ description: Artifact commands scale_after_fillet.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -673,6 +862,33 @@ description: Artifact commands scale_after_fillet.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/scale_after_fillet/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/scale_after_fillet/artifact_graph_flowchart.snap.md
index 0b50a3946..271043638 100644
--- a/rust/kcl-lib/tests/scale_after_fillet/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/scale_after_fillet/artifact_graph_flowchart.snap.md
@@ -5,20 +5,20 @@ flowchart LR
3["Segment
[345, 415, 0]"]
4[Solid2d]
end
- subgraph path13 [Path]
- 13["Path
[660, 720, 0]"]
- 14["Segment
[728, 807, 0]"]
- 15["Segment
[815, 894, 0]"]
- 16["Segment
[902, 981, 0]"]
- 17["Segment
[989, 1067, 0]"]
- 18["Segment
[1075, 1153, 0]"]
- 19["Segment
[1161, 1168, 0]"]
- 20[Solid2d]
+ subgraph path12 [Path]
+ 12["Path
[660, 720, 0]"]
+ 13["Segment
[728, 807, 0]"]
+ 14["Segment
[815, 894, 0]"]
+ 15["Segment
[902, 981, 0]"]
+ 16["Segment
[989, 1067, 0]"]
+ 17["Segment
[1075, 1153, 0]"]
+ 18["Segment
[1161, 1168, 0]"]
+ 19[Solid2d]
end
- subgraph path41 [Path]
- 41["Path
[1276, 1345, 0]"]
- 42["Segment
[1276, 1345, 0]"]
- 43[Solid2d]
+ subgraph path33 [Path]
+ 33["Path
[1276, 1345, 0]"]
+ 34["Segment
[1276, 1345, 0]"]
+ 35[Solid2d]
end
1["Plane
[320, 337, 0]"]
5["Sweep Extrusion
[423, 456, 0]"]
@@ -26,37 +26,28 @@ flowchart LR
7["Cap Start"]
8["Cap End"]
9["SweepEdge Opposite"]
- 10["SweepEdge Adjacent"]
+ 10["EdgeCut Fillet
[464, 530, 0]"]
11["EdgeCut Fillet
[464, 530, 0]"]
- 12["EdgeCut Fillet
[464, 530, 0]"]
- 21["Sweep Extrusion
[1176, 1216, 0]"]
+ 20["Sweep Extrusion
[1176, 1216, 0]"]
+ 21[Wall]
22[Wall]
23[Wall]
24[Wall]
25[Wall]
26[Wall]
- 27[Wall]
- 28["Cap Start"]
+ 27["Cap Start"]
+ 28["SweepEdge Opposite"]
29["SweepEdge Opposite"]
- 30["SweepEdge Adjacent"]
+ 30["SweepEdge Opposite"]
31["SweepEdge Opposite"]
- 32["SweepEdge Adjacent"]
- 33["SweepEdge Opposite"]
- 34["SweepEdge Adjacent"]
- 35["SweepEdge Opposite"]
- 36["SweepEdge Adjacent"]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
+ 32["SweepEdge Opposite"]
+ 36["Sweep Extrusion
[1353, 1381, 0]"]
+ 37[Wall]
+ 38["Cap End"]
39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 44["Sweep Extrusion
[1353, 1381, 0]"]
- 45[Wall]
- 46["Cap End"]
- 47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
- 49["EdgeCut Fillet
[1389, 1448, 0]"]
- 50["StartSketchOnFace
[613, 652, 0]"]
- 51["StartSketchOnFace
[1231, 1268, 0]"]
+ 40["EdgeCut Fillet
[1389, 1448, 0]"]
+ 41["StartSketchOnFace
[613, 652, 0]"]
+ 42["StartSketchOnFace
[1231, 1268, 0]"]
1 --- 2
2 --- 3
2 ---- 5
@@ -64,71 +55,71 @@ flowchart LR
3 --- 6
3 --- 9
3 --- 10
- 3 --- 11
+ 3 x--> 8
5 --- 6
5 --- 7
5 --- 8
5 --- 9
- 5 --- 10
- 7 --- 13
- 8 --- 41
- 9 <--x 12
- 13 --- 14
- 13 --- 15
- 13 --- 16
- 13 --- 17
- 13 --- 18
- 13 --- 19
- 13 ---- 21
- 13 --- 20
- 14 --- 27
- 14 --- 39
- 14 --- 40
- 15 --- 26
- 15 --- 37
- 15 --- 38
- 16 --- 25
- 16 --- 35
- 16 --- 36
- 17 --- 24
- 17 --- 33
- 17 --- 34
- 18 --- 23
- 18 --- 31
- 18 --- 32
- 19 --- 22
- 19 --- 29
- 19 --- 30
- 21 --- 22
- 21 --- 23
- 21 --- 24
- 21 --- 25
- 21 --- 26
- 21 --- 27
- 21 --- 28
- 21 --- 29
- 21 --- 30
- 21 --- 31
- 21 --- 32
- 21 --- 33
- 21 --- 34
- 21 --- 35
- 21 --- 36
- 21 --- 37
- 21 --- 38
- 21 --- 39
- 21 --- 40
- 41 --- 42
- 41 ---- 44
- 41 --- 43
- 42 --- 45
- 42 --- 47
- 42 --- 48
- 44 --- 45
- 44 --- 46
- 44 --- 47
- 44 --- 48
- 47 <--x 49
- 7 <--x 50
- 8 <--x 51
+ 7 --- 12
+ 8 --- 33
+ 9 <--x 11
+ 12 --- 13
+ 12 --- 14
+ 12 --- 15
+ 12 --- 16
+ 12 --- 17
+ 12 --- 18
+ 12 ---- 20
+ 12 --- 19
+ 13 --- 26
+ 13 --- 32
+ 13 <--x 7
+ 14 --- 25
+ 14 --- 31
+ 14 <--x 7
+ 15 --- 24
+ 15 --- 30
+ 15 <--x 7
+ 16 --- 23
+ 16 --- 29
+ 16 <--x 7
+ 17 --- 22
+ 17 --- 28
+ 17 <--x 7
+ 18 --- 21
+ 18 <--x 7
+ 20 --- 21
+ 20 --- 22
+ 20 --- 23
+ 20 --- 24
+ 20 --- 25
+ 20 --- 26
+ 20 --- 27
+ 20 --- 28
+ 20 --- 29
+ 20 --- 30
+ 20 --- 31
+ 20 --- 32
+ 28 <--x 22
+ 28 <--x 27
+ 29 <--x 23
+ 29 <--x 27
+ 30 <--x 24
+ 30 <--x 27
+ 31 <--x 25
+ 31 <--x 27
+ 32 <--x 26
+ 32 <--x 27
+ 33 --- 34
+ 33 ---- 36
+ 33 --- 35
+ 34 --- 37
+ 34 --- 39
+ 34 <--x 8
+ 36 --- 37
+ 36 --- 38
+ 36 --- 39
+ 39 <--x 40
+ 7 <--x 41
+ 8 <--x 42
```
diff --git a/rust/kcl-lib/tests/sketch-on-chamfer-two-times-different-order/artifact_commands.snap b/rust/kcl-lib/tests/sketch-on-chamfer-two-times-different-order/artifact_commands.snap
index c8cd850b5..90bb15aa9 100644
--- a/rust/kcl-lib/tests/sketch-on-chamfer-two-times-different-order/artifact_commands.snap
+++ b/rust/kcl-lib/tests/sketch-on-chamfer-two-times-different-order/artifact_commands.snap
@@ -248,20 +248,27 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -284,6 +291,33 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -304,6 +338,80 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -651,20 +759,27 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -687,6 +802,33 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -706,5 +848,79 @@ description: Artifact commands sketch-on-chamfer-two-times-different-order.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/sketch-on-chamfer-two-times-different-order/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch-on-chamfer-two-times-different-order/artifact_graph_flowchart.snap.md
index baa3b210b..3cdb2be17 100644
--- a/rust/kcl-lib/tests/sketch-on-chamfer-two-times-different-order/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/sketch-on-chamfer-two-times-different-order/artifact_graph_flowchart.snap.md
@@ -9,23 +9,23 @@ flowchart LR
7["Segment
[436, 443, 0]"]
8[Solid2d]
end
- subgraph path27 [Path]
- 27["Path
[718, 752, 0]"]
- 28["Segment
[758, 824, 0]"]
- 29["Segment
[830, 928, 0]"]
- 30["Segment
[934, 1051, 0]"]
- 31["Segment
[1057, 1113, 0]"]
- 32["Segment
[1119, 1126, 0]"]
- 33[Solid2d]
+ subgraph path22 [Path]
+ 22["Path
[718, 752, 0]"]
+ 23["Segment
[758, 824, 0]"]
+ 24["Segment
[830, 928, 0]"]
+ 25["Segment
[934, 1051, 0]"]
+ 26["Segment
[1057, 1113, 0]"]
+ 27["Segment
[1119, 1126, 0]"]
+ 28[Solid2d]
end
- subgraph path34 [Path]
- 34["Path
[1184, 1219, 0]"]
- 35["Segment
[1225, 1291, 0]"]
- 36["Segment
[1297, 1396, 0]"]
- 37["Segment
[1402, 1519, 0]"]
- 38["Segment
[1525, 1581, 0]"]
- 39["Segment
[1587, 1594, 0]"]
- 40[Solid2d]
+ subgraph path29 [Path]
+ 29["Path
[1184, 1219, 0]"]
+ 30["Segment
[1225, 1291, 0]"]
+ 31["Segment
[1297, 1396, 0]"]
+ 32["Segment
[1402, 1519, 0]"]
+ 33["Segment
[1525, 1581, 0]"]
+ 34["Segment
[1587, 1594, 0]"]
+ 35[Solid2d]
end
1["Plane
[12, 29, 0]"]
9["Sweep Extrusion
[457, 489, 0]"]
@@ -36,32 +36,22 @@ flowchart LR
14["Cap Start"]
15["Cap End"]
16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
+ 17["SweepEdge Opposite"]
18["SweepEdge Opposite"]
- 19["SweepEdge Adjacent"]
- 20["SweepEdge Opposite"]
- 21["SweepEdge Adjacent"]
- 22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
- 24["EdgeCut Fillet
[495, 530, 0]"]
- 25["Plane
[1184, 1219, 0]"]
- 26["Plane
[718, 752, 0]"]
- 41["Sweep Extrusion
[1608, 1639, 0]"]
- 42[Wall]
- 43[Wall]
- 44[Wall]
- 45[Wall]
- 46["Cap End"]
- 47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
- 49["SweepEdge Opposite"]
- 50["SweepEdge Adjacent"]
- 51["SweepEdge Opposite"]
- 52["SweepEdge Adjacent"]
- 53["SweepEdge Opposite"]
- 54["SweepEdge Adjacent"]
- 55["StartSketchOnFace
[673, 712, 0]"]
- 56["StartSketchOnFace
[1139, 1178, 0]"]
+ 19["EdgeCut Fillet
[495, 530, 0]"]
+ 20["Plane
[1184, 1219, 0]"]
+ 21["Plane
[718, 752, 0]"]
+ 36["Sweep Extrusion
[1608, 1639, 0]"]
+ 37[Wall]
+ 38[Wall]
+ 39[Wall]
+ 40[Wall]
+ 41["Cap End"]
+ 42["SweepEdge Opposite"]
+ 43["SweepEdge Opposite"]
+ 44["SweepEdge Opposite"]
+ 45["StartSketchOnFace
[673, 712, 0]"]
+ 46["StartSketchOnFace
[1139, 1178, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -71,19 +61,18 @@ flowchart LR
2 ---- 9
2 --- 8
3 --- 13
- 3 --- 22
- 3 --- 23
+ 3 --- 18
+ 3 x--> 14
4 --- 12
- 4 --- 20
- 4 --- 21
- 4 --- 24
+ 4 --- 17
+ 4 --- 19
+ 4 x--> 14
5 --- 11
- 5 --- 18
- 5 --- 19
+ 5 --- 16
+ 5 x--> 14
6 --- 10
- 6 --- 16
- 6 --- 17
- 6 x--> 26
+ 6 x--> 21
+ 6 x--> 14
9 --- 10
9 --- 11
9 --- 12
@@ -93,51 +82,50 @@ flowchart LR
9 --- 16
9 --- 17
9 --- 18
- 9 --- 19
- 9 --- 20
- 9 --- 21
- 9 --- 22
- 9 --- 23
- 25 --- 34
- 26 --- 27
- 27 --- 28
- 27 --- 29
- 27 --- 30
- 27 --- 31
- 27 --- 32
- 27 --- 33
- 34 --- 35
- 34 --- 36
- 34 --- 37
- 34 --- 38
- 34 --- 39
- 34 ---- 41
- 34 --- 40
- 35 --- 45
- 35 --- 53
- 35 --- 54
+ 16 <--x 11
+ 16 <--x 15
+ 18 <--x 13
+ 18 <--x 15
+ 20 --- 29
+ 21 --- 22
+ 22 --- 23
+ 22 --- 24
+ 22 --- 25
+ 22 --- 26
+ 22 --- 27
+ 22 --- 28
+ 29 --- 30
+ 29 --- 31
+ 29 --- 32
+ 29 --- 33
+ 29 --- 34
+ 29 ---- 36
+ 29 --- 35
+ 30 --- 40
+ 30 --- 44
+ 30 <--x 20
+ 31 --- 39
+ 31 --- 43
+ 31 <--x 20
+ 32 --- 38
+ 32 --- 42
+ 32 <--x 20
+ 33 --- 37
+ 33 <--x 20
+ 36 --- 37
+ 36 --- 38
+ 36 --- 39
+ 36 --- 40
+ 36 --- 41
+ 36 --- 42
+ 36 --- 43
36 --- 44
- 36 --- 51
- 36 --- 52
- 37 --- 43
- 37 --- 49
- 37 --- 50
- 38 --- 42
- 38 --- 47
- 38 --- 48
- 41 --- 42
- 41 --- 43
- 41 --- 44
- 41 --- 45
- 41 --- 46
- 41 --- 47
- 41 --- 48
- 41 --- 49
- 41 --- 50
- 41 --- 51
- 41 --- 52
- 41 --- 53
- 41 --- 54
- 26 <--x 55
- 25 <--x 56
+ 42 <--x 38
+ 42 <--x 41
+ 43 <--x 39
+ 43 <--x 41
+ 44 <--x 40
+ 44 <--x 41
+ 21 <--x 45
+ 20 <--x 46
```
diff --git a/rust/kcl-lib/tests/sketch-on-chamfer-two-times/artifact_commands.snap b/rust/kcl-lib/tests/sketch-on-chamfer-two-times/artifact_commands.snap
index 3a5f2d45f..7b6fdc411 100644
--- a/rust/kcl-lib/tests/sketch-on-chamfer-two-times/artifact_commands.snap
+++ b/rust/kcl-lib/tests/sketch-on-chamfer-two-times/artifact_commands.snap
@@ -248,20 +248,27 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -284,6 +291,33 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -304,6 +338,80 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -651,20 +759,27 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -687,6 +802,33 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -706,5 +848,79 @@ description: Artifact commands sketch-on-chamfer-two-times.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/sketch-on-chamfer-two-times/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch-on-chamfer-two-times/artifact_graph_flowchart.snap.md
index f3faf2140..ad6359751 100644
--- a/rust/kcl-lib/tests/sketch-on-chamfer-two-times/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/sketch-on-chamfer-two-times/artifact_graph_flowchart.snap.md
@@ -9,23 +9,23 @@ flowchart LR
7["Segment
[438, 446, 0]"]
8[Solid2d]
end
- subgraph path27 [Path]
- 27["Path
[721, 755, 0]"]
- 28["Segment
[761, 827, 0]"]
- 29["Segment
[833, 931, 0]"]
- 30["Segment
[937, 1054, 0]"]
- 31["Segment
[1060, 1116, 0]"]
- 32["Segment
[1122, 1130, 0]"]
- 33[Solid2d]
+ subgraph path22 [Path]
+ 22["Path
[721, 755, 0]"]
+ 23["Segment
[761, 827, 0]"]
+ 24["Segment
[833, 931, 0]"]
+ 25["Segment
[937, 1054, 0]"]
+ 26["Segment
[1060, 1116, 0]"]
+ 27["Segment
[1122, 1130, 0]"]
+ 28[Solid2d]
end
- subgraph path34 [Path]
- 34["Path
[1188, 1223, 0]"]
- 35["Segment
[1229, 1295, 0]"]
- 36["Segment
[1301, 1400, 0]"]
- 37["Segment
[1406, 1523, 0]"]
- 38["Segment
[1529, 1585, 0]"]
- 39["Segment
[1591, 1599, 0]"]
- 40[Solid2d]
+ subgraph path29 [Path]
+ 29["Path
[1188, 1223, 0]"]
+ 30["Segment
[1229, 1295, 0]"]
+ 31["Segment
[1301, 1400, 0]"]
+ 32["Segment
[1406, 1523, 0]"]
+ 33["Segment
[1529, 1585, 0]"]
+ 34["Segment
[1591, 1599, 0]"]
+ 35[Solid2d]
end
1["Plane
[12, 31, 0]"]
9["Sweep Extrusion
[460, 492, 0]"]
@@ -36,32 +36,22 @@ flowchart LR
14["Cap Start"]
15["Cap End"]
16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
+ 17["SweepEdge Opposite"]
18["SweepEdge Opposite"]
- 19["SweepEdge Adjacent"]
- 20["SweepEdge Opposite"]
- 21["SweepEdge Adjacent"]
- 22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
- 24["EdgeCut Fillet
[498, 533, 0]"]
- 25["Plane
[721, 755, 0]"]
- 26["Plane
[1188, 1223, 0]"]
- 41["Sweep Extrusion
[1613, 1644, 0]"]
- 42[Wall]
- 43[Wall]
- 44[Wall]
- 45[Wall]
- 46["Cap End"]
- 47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
- 49["SweepEdge Opposite"]
- 50["SweepEdge Adjacent"]
- 51["SweepEdge Opposite"]
- 52["SweepEdge Adjacent"]
- 53["SweepEdge Opposite"]
- 54["SweepEdge Adjacent"]
- 55["StartSketchOnFace
[676, 715, 0]"]
- 56["StartSketchOnFace
[1143, 1182, 0]"]
+ 19["EdgeCut Fillet
[498, 533, 0]"]
+ 20["Plane
[721, 755, 0]"]
+ 21["Plane
[1188, 1223, 0]"]
+ 36["Sweep Extrusion
[1613, 1644, 0]"]
+ 37[Wall]
+ 38[Wall]
+ 39[Wall]
+ 40[Wall]
+ 41["Cap End"]
+ 42["SweepEdge Opposite"]
+ 43["SweepEdge Opposite"]
+ 44["SweepEdge Opposite"]
+ 45["StartSketchOnFace
[676, 715, 0]"]
+ 46["StartSketchOnFace
[1143, 1182, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -71,19 +61,18 @@ flowchart LR
2 ---- 9
2 --- 8
3 --- 13
- 3 --- 22
- 3 --- 23
+ 3 --- 18
+ 3 x--> 14
4 --- 12
- 4 --- 20
- 4 --- 21
- 4 --- 24
+ 4 --- 17
+ 4 --- 19
+ 4 x--> 14
5 --- 11
- 5 --- 18
- 5 --- 19
+ 5 --- 16
+ 5 x--> 14
6 --- 10
- 6 --- 16
- 6 --- 17
- 6 x--> 25
+ 6 x--> 20
+ 6 x--> 14
9 --- 10
9 --- 11
9 --- 12
@@ -93,51 +82,50 @@ flowchart LR
9 --- 16
9 --- 17
9 --- 18
- 9 --- 19
- 9 --- 20
- 9 --- 21
- 9 --- 22
- 9 --- 23
- 25 --- 27
- 26 --- 34
- 27 --- 28
- 27 --- 29
- 27 --- 30
- 27 --- 31
- 27 --- 32
- 27 --- 33
- 34 --- 35
- 34 --- 36
- 34 --- 37
- 34 --- 38
- 34 --- 39
- 34 ---- 41
- 34 --- 40
- 35 --- 45
- 35 --- 53
- 35 --- 54
+ 16 <--x 11
+ 16 <--x 15
+ 18 <--x 13
+ 18 <--x 15
+ 20 --- 22
+ 21 --- 29
+ 22 --- 23
+ 22 --- 24
+ 22 --- 25
+ 22 --- 26
+ 22 --- 27
+ 22 --- 28
+ 29 --- 30
+ 29 --- 31
+ 29 --- 32
+ 29 --- 33
+ 29 --- 34
+ 29 ---- 36
+ 29 --- 35
+ 30 --- 40
+ 30 --- 44
+ 30 <--x 21
+ 31 --- 39
+ 31 --- 43
+ 31 <--x 21
+ 32 --- 38
+ 32 --- 42
+ 32 <--x 21
+ 33 --- 37
+ 33 <--x 21
+ 36 --- 37
+ 36 --- 38
+ 36 --- 39
+ 36 --- 40
+ 36 --- 41
+ 36 --- 42
+ 36 --- 43
36 --- 44
- 36 --- 51
- 36 --- 52
- 37 --- 43
- 37 --- 49
- 37 --- 50
- 38 --- 42
- 38 --- 47
- 38 --- 48
- 41 --- 42
- 41 --- 43
- 41 --- 44
- 41 --- 45
- 41 --- 46
- 41 --- 47
- 41 --- 48
- 41 --- 49
- 41 --- 50
- 41 --- 51
- 41 --- 52
- 41 --- 53
- 41 --- 54
- 25 <--x 55
- 26 <--x 56
+ 42 <--x 38
+ 42 <--x 41
+ 43 <--x 39
+ 43 <--x 41
+ 44 <--x 40
+ 44 <--x 41
+ 20 <--x 45
+ 21 <--x 46
```
diff --git a/rust/kcl-lib/tests/sketch_in_object/artifact_commands.snap b/rust/kcl-lib/tests/sketch_in_object/artifact_commands.snap
index 798a890a8..e32fa8792 100644
--- a/rust/kcl-lib/tests/sketch_in_object/artifact_commands.snap
+++ b/rust/kcl-lib/tests/sketch_in_object/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands sketch_in_object.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands sketch_in_object.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands sketch_in_object.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -489,20 +597,27 @@ description: Artifact commands sketch_in_object.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -525,6 +640,33 @@ description: Artifact commands sketch_in_object.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -544,5 +686,79 @@ description: Artifact commands sketch_in_object.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/sketch_in_object/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch_in_object/artifact_graph_flowchart.snap.md
index 0622c2027..4194cb6a6 100644
--- a/rust/kcl-lib/tests/sketch_in_object/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/sketch_in_object/artifact_graph_flowchart.snap.md
@@ -8,13 +8,13 @@ flowchart LR
6["Segment
[160, 168, 0]"]
7[Solid2d]
end
- subgraph path24 [Path]
- 24["Path
[257, 282, 0]"]
- 25["Segment
[294, 312, 0]"]
- 26["Segment
[324, 342, 0]"]
- 27["Segment
[354, 373, 0]"]
- 28["Segment
[385, 393, 0]"]
- 29[Solid2d]
+ subgraph path19 [Path]
+ 19["Path
[257, 282, 0]"]
+ 20["Segment
[294, 312, 0]"]
+ 21["Segment
[324, 342, 0]"]
+ 22["Segment
[354, 373, 0]"]
+ 23["Segment
[385, 393, 0]"]
+ 24[Solid2d]
end
1["Plane
[21, 40, 0]"]
8["Sweep Extrusion
[425, 446, 0]"]
@@ -25,29 +25,19 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 23["Plane
[226, 245, 0]"]
- 30["Sweep Extrusion
[483, 503, 0]"]
- 31[Wall]
- 32[Wall]
- 33[Wall]
- 34[Wall]
- 35["Cap Start"]
- 36["Cap End"]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
- 39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 41["SweepEdge Opposite"]
- 42["SweepEdge Adjacent"]
- 43["SweepEdge Opposite"]
- 44["SweepEdge Adjacent"]
+ 18["Plane
[226, 245, 0]"]
+ 25["Sweep Extrusion
[483, 503, 0]"]
+ 26[Wall]
+ 27[Wall]
+ 28[Wall]
+ 29[Wall]
+ 30["Cap Start"]
+ 31["Cap End"]
+ 32["SweepEdge Opposite"]
+ 33["SweepEdge Opposite"]
+ 34["SweepEdge Opposite"]
1 --- 2
2 --- 3
2 --- 4
@@ -56,17 +46,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
+ 3 --- 17
+ 3 x--> 14
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 14
5 --- 10
- 5 --- 17
- 5 --- 18
+ 5 --- 15
+ 5 x--> 14
6 --- 9
- 6 --- 15
- 6 --- 16
+ 6 x--> 14
8 --- 9
8 --- 10
8 --- 11
@@ -76,42 +65,43 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 23 --- 24
- 24 --- 25
- 24 --- 26
- 24 --- 27
- 24 --- 28
- 24 ---- 30
- 24 --- 29
+ 15 <--x 10
+ 15 <--x 13
+ 16 <--x 11
+ 16 <--x 13
+ 17 <--x 12
+ 17 <--x 13
+ 18 --- 19
+ 19 --- 20
+ 19 --- 21
+ 19 --- 22
+ 19 --- 23
+ 19 ---- 25
+ 19 --- 24
+ 20 --- 29
+ 20 --- 34
+ 20 x--> 30
+ 21 --- 28
+ 21 --- 33
+ 21 x--> 30
+ 22 --- 27
+ 22 --- 32
+ 22 x--> 30
+ 23 --- 26
+ 23 x--> 30
+ 25 --- 26
+ 25 --- 27
+ 25 --- 28
+ 25 --- 29
+ 25 --- 30
+ 25 --- 31
+ 25 --- 32
+ 25 --- 33
25 --- 34
- 25 --- 43
- 25 --- 44
- 26 --- 33
- 26 --- 41
- 26 --- 42
- 27 --- 32
- 27 --- 39
- 27 --- 40
- 28 --- 31
- 28 --- 37
- 28 --- 38
- 30 --- 31
- 30 --- 32
- 30 --- 33
- 30 --- 34
- 30 --- 35
- 30 --- 36
- 30 --- 37
- 30 --- 38
- 30 --- 39
- 30 --- 40
- 30 --- 41
- 30 --- 42
- 30 --- 43
- 30 --- 44
+ 32 <--x 27
+ 32 <--x 31
+ 33 <--x 28
+ 33 <--x 31
+ 34 <--x 29
+ 34 <--x 31
```
diff --git a/rust/kcl-lib/tests/sketch_on_face/artifact_commands.snap b/rust/kcl-lib/tests/sketch_on_face/artifact_commands.snap
index 6ad934c09..5c04a16bd 100644
--- a/rust/kcl-lib/tests/sketch_on_face/artifact_commands.snap
+++ b/rust/kcl-lib/tests/sketch_on_face/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands sketch_on_face.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands sketch_on_face.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands sketch_on_face.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -456,20 +564,27 @@ description: Artifact commands sketch_on_face.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -492,6 +607,33 @@ description: Artifact commands sketch_on_face.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -511,5 +653,79 @@ description: Artifact commands sketch_on_face.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/sketch_on_face/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch_on_face/artifact_graph_flowchart.snap.md
index fb9410054..925085a85 100644
--- a/rust/kcl-lib/tests/sketch_on_face/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/sketch_on_face/artifact_graph_flowchart.snap.md
@@ -8,13 +8,13 @@ flowchart LR
6["Segment
[184, 192, 0]"]
7[Solid2d]
end
- subgraph path23 [Path]
- 23["Path
[270, 295, 0]"]
- 24["Segment
[301, 320, 0]"]
- 25["Segment
[326, 345, 0]"]
- 26["Segment
[351, 371, 0]"]
- 27["Segment
[377, 385, 0]"]
- 28[Solid2d]
+ subgraph path18 [Path]
+ 18["Path
[270, 295, 0]"]
+ 19["Segment
[301, 320, 0]"]
+ 20["Segment
[326, 345, 0]"]
+ 21["Segment
[351, 371, 0]"]
+ 22["Segment
[377, 385, 0]"]
+ 23[Solid2d]
end
1["Plane
[10, 27, 0]"]
8["Sweep Extrusion
[198, 217, 0]"]
@@ -25,29 +25,19 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 29["Sweep Extrusion
[391, 410, 0]"]
- 30[Wall]
- 31[Wall]
- 32[Wall]
- 33[Wall]
- 34["Cap Start"]
- 35["Cap End"]
- 36["SweepEdge Opposite"]
- 37["SweepEdge Adjacent"]
- 38["SweepEdge Opposite"]
- 39["SweepEdge Adjacent"]
- 40["SweepEdge Opposite"]
- 41["SweepEdge Adjacent"]
- 42["SweepEdge Opposite"]
- 43["SweepEdge Adjacent"]
- 44["StartSketchOnFace
[229, 264, 0]"]
+ 24["Sweep Extrusion
[391, 410, 0]"]
+ 25[Wall]
+ 26[Wall]
+ 27[Wall]
+ 28[Wall]
+ 29["Cap Start"]
+ 30["Cap End"]
+ 31["SweepEdge Opposite"]
+ 32["SweepEdge Opposite"]
+ 33["SweepEdge Opposite"]
+ 34["StartSketchOnFace
[229, 264, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -56,17 +46,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
+ 3 --- 17
+ 3 x--> 13
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 13
5 --- 10
- 5 --- 17
- 5 --- 18
+ 5 --- 15
+ 5 x--> 13
6 --- 9
- 6 --- 15
- 6 --- 16
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -76,43 +65,44 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 12 --- 23
- 23 --- 24
- 23 --- 25
- 23 --- 26
- 23 --- 27
- 23 ---- 29
- 23 --- 28
+ 12 --- 18
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 18 --- 19
+ 18 --- 20
+ 18 --- 21
+ 18 --- 22
+ 18 ---- 24
+ 18 --- 23
+ 19 --- 28
+ 19 --- 33
+ 19 x--> 29
+ 20 --- 27
+ 20 --- 32
+ 20 x--> 29
+ 21 --- 26
+ 21 --- 31
+ 21 x--> 29
+ 22 --- 25
+ 22 x--> 29
+ 24 --- 25
+ 24 --- 26
+ 24 --- 27
+ 24 --- 28
+ 24 --- 29
+ 24 --- 30
+ 24 --- 31
+ 24 --- 32
24 --- 33
- 24 --- 42
- 24 --- 43
- 25 --- 32
- 25 --- 40
- 25 --- 41
- 26 --- 31
- 26 --- 38
- 26 --- 39
- 27 --- 30
- 27 --- 36
- 27 --- 37
- 29 --- 30
- 29 --- 31
- 29 --- 32
- 29 --- 33
- 29 --- 34
- 29 --- 35
- 29 --- 36
- 29 --- 37
- 29 --- 38
- 29 --- 39
- 29 --- 40
- 29 --- 41
- 29 --- 42
- 29 --- 43
- 12 <--x 44
+ 31 <--x 26
+ 31 <--x 30
+ 32 <--x 27
+ 32 <--x 30
+ 33 <--x 28
+ 33 <--x 30
+ 12 <--x 34
```
diff --git a/rust/kcl-lib/tests/sketch_on_face_after_fillets_referencing_face/artifact_commands.snap b/rust/kcl-lib/tests/sketch_on_face_after_fillets_referencing_face/artifact_commands.snap
index 9576a7a04..ea399f74f 100644
--- a/rust/kcl-lib/tests/sketch_on_face_after_fillets_referencing_face/artifact_commands.snap
+++ b/rust/kcl-lib/tests/sketch_on_face_after_fillets_referencing_face/artifact_commands.snap
@@ -265,20 +265,27 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -305,20 +312,27 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -341,6 +355,33 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -361,6 +402,127 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -591,20 +753,27 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -627,6 +796,33 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -646,5 +842,79 @@ description: Artifact commands sketch_on_face_after_fillets_referencing_face.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/sketch_on_face_after_fillets_referencing_face/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch_on_face_after_fillets_referencing_face/artifact_graph_flowchart.snap.md
index 84866b6dd..4366bd46a 100644
--- a/rust/kcl-lib/tests/sketch_on_face_after_fillets_referencing_face/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/sketch_on_face_after_fillets_referencing_face/artifact_graph_flowchart.snap.md
@@ -10,14 +10,14 @@ flowchart LR
8["Segment
[1288, 1296, 0]"]
9[Solid2d]
end
- subgraph path33 [Path]
- 33["Path
[1535, 1566, 0]"]
- 34["Segment
[1572, 1597, 0]"]
- 35["Segment
[1603, 1628, 0]"]
- 36["Segment
[1634, 1659, 0]"]
- 37["Segment
[1665, 1721, 0]"]
- 38["Segment
[1727, 1735, 0]"]
- 39[Solid2d]
+ subgraph path27 [Path]
+ 27["Path
[1535, 1566, 0]"]
+ 28["Segment
[1572, 1597, 0]"]
+ 29["Segment
[1603, 1628, 0]"]
+ 30["Segment
[1634, 1659, 0]"]
+ 31["Segment
[1665, 1721, 0]"]
+ 32["Segment
[1727, 1735, 0]"]
+ 33[Solid2d]
end
1["Plane
[991, 1008, 0]"]
10["Sweep Extrusion
[1302, 1325, 0]"]
@@ -30,34 +30,23 @@ flowchart LR
17["Cap Start"]
18["Cap End"]
19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
+ 20["SweepEdge Opposite"]
21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
+ 22["SweepEdge Opposite"]
23["SweepEdge Opposite"]
24["SweepEdge Adjacent"]
- 25["SweepEdge Opposite"]
- 26["SweepEdge Adjacent"]
- 27["SweepEdge Opposite"]
- 28["SweepEdge Adjacent"]
- 29["SweepEdge Opposite"]
- 30["SweepEdge Adjacent"]
- 31["EdgeCut Fillet
[1331, 1396, 0]"]
- 32["EdgeCut Fillet
[1402, 1479, 0]"]
- 40["Sweep Extrusion
[1741, 1761, 0]"]
- 41[Wall]
- 42[Wall]
- 43[Wall]
- 44[Wall]
- 45["Cap End"]
- 46["SweepEdge Opposite"]
- 47["SweepEdge Adjacent"]
- 48["SweepEdge Opposite"]
- 49["SweepEdge Adjacent"]
- 50["SweepEdge Opposite"]
- 51["SweepEdge Adjacent"]
- 52["SweepEdge Opposite"]
- 53["SweepEdge Adjacent"]
- 54["StartSketchOnFace
[1493, 1529, 0]"]
+ 25["EdgeCut Fillet
[1331, 1396, 0]"]
+ 26["EdgeCut Fillet
[1402, 1479, 0]"]
+ 34["Sweep Extrusion
[1741, 1761, 0]"]
+ 35[Wall]
+ 36[Wall]
+ 37[Wall]
+ 38[Wall]
+ 39["Cap End"]
+ 40["SweepEdge Opposite"]
+ 41["SweepEdge Opposite"]
+ 42["SweepEdge Opposite"]
+ 43["StartSketchOnFace
[1493, 1529, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -68,23 +57,23 @@ flowchart LR
2 ---- 10
2 --- 9
3 --- 11
- 3 --- 19
- 3 --- 20
+ 3 x--> 17
4 --- 12
- 4 --- 21
- 4 --- 22
+ 4 --- 19
+ 4 x--> 17
5 --- 13
- 5 --- 23
- 5 --- 24
+ 5 --- 20
+ 5 x--> 17
6 --- 14
- 6 --- 25
- 6 --- 26
+ 6 --- 21
+ 6 --- 24
+ 6 x--> 17
7 --- 15
- 7 --- 27
- 7 --- 28
+ 7 --- 22
+ 7 x--> 17
8 --- 16
- 8 --- 29
- 8 --- 30
+ 8 --- 23
+ 8 x--> 17
10 --- 11
10 --- 12
10 --- 13
@@ -99,46 +88,49 @@ flowchart LR
10 --- 22
10 --- 23
10 --- 24
- 10 --- 25
- 10 --- 26
- 10 --- 27
- 10 --- 28
- 10 --- 29
- 10 --- 30
- 12 --- 33
- 26 <--x 31
- 20 <--x 32
- 33 --- 34
- 33 --- 35
- 33 --- 36
- 33 --- 37
- 33 --- 38
- 33 ---- 40
- 33 --- 39
- 34 --- 44
- 34 --- 52
- 34 --- 53
- 35 --- 43
- 35 --- 50
- 35 --- 51
- 36 --- 42
- 36 --- 48
- 36 --- 49
- 37 --- 41
- 37 --- 46
- 37 --- 47
- 40 --- 41
- 40 --- 42
- 40 --- 43
- 40 --- 44
- 40 --- 45
- 40 --- 46
- 40 --- 47
- 40 --- 48
- 40 --- 49
- 40 --- 50
- 40 --- 51
- 40 --- 52
- 40 --- 53
- 12 <--x 54
+ 12 --- 27
+ 19 <--x 12
+ 19 <--x 18
+ 20 <--x 13
+ 20 <--x 18
+ 21 <--x 14
+ 21 <--x 18
+ 22 <--x 15
+ 22 <--x 18
+ 23 <--x 16
+ 23 <--x 18
+ 24 <--x 25
+ 27 --- 28
+ 27 --- 29
+ 27 --- 30
+ 27 --- 31
+ 27 --- 32
+ 27 ---- 34
+ 27 --- 33
+ 28 --- 38
+ 28 --- 42
+ 28 <--x 12
+ 29 --- 37
+ 29 --- 41
+ 29 <--x 12
+ 30 --- 36
+ 30 --- 40
+ 30 <--x 12
+ 31 --- 35
+ 31 <--x 12
+ 34 --- 35
+ 34 --- 36
+ 34 --- 37
+ 34 --- 38
+ 34 --- 39
+ 34 --- 40
+ 34 --- 41
+ 34 --- 42
+ 40 <--x 36
+ 40 <--x 39
+ 41 <--x 37
+ 41 <--x 39
+ 42 <--x 38
+ 42 <--x 39
+ 12 <--x 43
```
diff --git a/rust/kcl-lib/tests/sketch_on_face_circle_tagged/artifact_commands.snap b/rust/kcl-lib/tests/sketch_on_face_circle_tagged/artifact_commands.snap
index 53f1f530e..527061a96 100644
--- a/rust/kcl-lib/tests/sketch_on_face_circle_tagged/artifact_commands.snap
+++ b/rust/kcl-lib/tests/sketch_on_face_circle_tagged/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -425,5 +533,32 @@ description: Artifact commands sketch_on_face_circle_tagged.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/sketch_on_face_circle_tagged/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch_on_face_circle_tagged/artifact_graph_flowchart.snap.md
index b56ebc39d..4df24b68b 100644
--- a/rust/kcl-lib/tests/sketch_on_face_circle_tagged/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/sketch_on_face_circle_tagged/artifact_graph_flowchart.snap.md
@@ -8,10 +8,10 @@ flowchart LR
6["Segment
[217, 225, 0]"]
7[Solid2d]
end
- subgraph path23 [Path]
- 23["Path
[305, 357, 0]"]
- 24["Segment
[305, 357, 0]"]
- 25[Solid2d]
+ subgraph path18 [Path]
+ 18["Path
[305, 357, 0]"]
+ 19["Segment
[305, 357, 0]"]
+ 20[Solid2d]
end
1["Plane
[29, 48, 0]"]
8["Sweep Extrusion
[231, 251, 0]"]
@@ -22,20 +22,13 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 26["Sweep Extrusion
[363, 382, 0]"]
- 27[Wall]
- 28["Cap Start"]
- 29["Cap End"]
- 30["SweepEdge Opposite"]
- 31["SweepEdge Adjacent"]
- 32["StartSketchOnFace
[263, 299, 0]"]
+ 21["Sweep Extrusion
[363, 382, 0]"]
+ 22[Wall]
+ 23["Cap Start"]
+ 24["Cap End"]
+ 25["StartSketchOnFace
[263, 299, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -44,17 +37,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
+ 3 --- 17
+ 3 x--> 13
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 13
5 --- 10
- 5 --- 17
- 5 --- 18
+ 5 --- 15
+ 5 x--> 13
6 --- 9
- 6 --- 15
- 6 --- 16
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -64,22 +56,20 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 14 --- 23
- 23 --- 24
- 23 ---- 26
- 23 --- 25
- 24 --- 27
- 24 --- 30
- 24 --- 31
- 26 --- 27
- 26 --- 28
- 26 --- 29
- 26 --- 30
- 26 --- 31
- 14 <--x 32
+ 14 --- 18
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 18 --- 19
+ 18 ---- 21
+ 18 --- 20
+ 19 --- 22
+ 19 x--> 23
+ 21 --- 22
+ 21 --- 23
+ 21 --- 24
+ 14 <--x 25
```
diff --git a/rust/kcl-lib/tests/sketch_on_face_end/artifact_commands.snap b/rust/kcl-lib/tests/sketch_on_face_end/artifact_commands.snap
index 9a79bca8a..f06e1f633 100644
--- a/rust/kcl-lib/tests/sketch_on_face_end/artifact_commands.snap
+++ b/rust/kcl-lib/tests/sketch_on_face_end/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands sketch_on_face_end.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands sketch_on_face_end.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands sketch_on_face_end.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -456,20 +564,27 @@ description: Artifact commands sketch_on_face_end.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -492,6 +607,33 @@ description: Artifact commands sketch_on_face_end.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -511,5 +653,79 @@ description: Artifact commands sketch_on_face_end.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/sketch_on_face_end/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch_on_face_end/artifact_graph_flowchart.snap.md
index d804536af..e9e979b7b 100644
--- a/rust/kcl-lib/tests/sketch_on_face_end/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/sketch_on_face_end/artifact_graph_flowchart.snap.md
@@ -8,13 +8,13 @@ flowchart LR
6["Segment
[217, 225, 0]"]
7[Solid2d]
end
- subgraph path23 [Path]
- 23["Path
[305, 330, 0]"]
- 24["Segment
[336, 355, 0]"]
- 25["Segment
[361, 380, 0]"]
- 26["Segment
[386, 406, 0]"]
- 27["Segment
[412, 420, 0]"]
- 28[Solid2d]
+ subgraph path18 [Path]
+ 18["Path
[305, 330, 0]"]
+ 19["Segment
[336, 355, 0]"]
+ 20["Segment
[361, 380, 0]"]
+ 21["Segment
[386, 406, 0]"]
+ 22["Segment
[412, 420, 0]"]
+ 23[Solid2d]
end
1["Plane
[29, 48, 0]"]
8["Sweep Extrusion
[231, 251, 0]"]
@@ -25,29 +25,19 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 29["Sweep Extrusion
[426, 445, 0]"]
- 30[Wall]
- 31[Wall]
- 32[Wall]
- 33[Wall]
- 34["Cap Start"]
- 35["Cap End"]
- 36["SweepEdge Opposite"]
- 37["SweepEdge Adjacent"]
- 38["SweepEdge Opposite"]
- 39["SweepEdge Adjacent"]
- 40["SweepEdge Opposite"]
- 41["SweepEdge Adjacent"]
- 42["SweepEdge Opposite"]
- 43["SweepEdge Adjacent"]
- 44["StartSketchOnFace
[263, 299, 0]"]
+ 24["Sweep Extrusion
[426, 445, 0]"]
+ 25[Wall]
+ 26[Wall]
+ 27[Wall]
+ 28[Wall]
+ 29["Cap Start"]
+ 30["Cap End"]
+ 31["SweepEdge Opposite"]
+ 32["SweepEdge Opposite"]
+ 33["SweepEdge Opposite"]
+ 34["StartSketchOnFace
[263, 299, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -56,17 +46,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
+ 3 --- 17
+ 3 x--> 13
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 13
5 --- 10
- 5 --- 17
- 5 --- 18
+ 5 --- 15
+ 5 x--> 13
6 --- 9
- 6 --- 15
- 6 --- 16
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -76,43 +65,44 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 14 --- 23
- 23 --- 24
- 23 --- 25
- 23 --- 26
- 23 --- 27
- 23 ---- 29
- 23 --- 28
+ 14 --- 18
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 18 --- 19
+ 18 --- 20
+ 18 --- 21
+ 18 --- 22
+ 18 ---- 24
+ 18 --- 23
+ 19 --- 28
+ 19 --- 33
+ 19 x--> 29
+ 20 --- 27
+ 20 --- 32
+ 20 x--> 29
+ 21 --- 26
+ 21 --- 31
+ 21 x--> 29
+ 22 --- 25
+ 22 x--> 29
+ 24 --- 25
+ 24 --- 26
+ 24 --- 27
+ 24 --- 28
+ 24 --- 29
+ 24 --- 30
+ 24 --- 31
+ 24 --- 32
24 --- 33
- 24 --- 42
- 24 --- 43
- 25 --- 32
- 25 --- 40
- 25 --- 41
- 26 --- 31
- 26 --- 38
- 26 --- 39
- 27 --- 30
- 27 --- 36
- 27 --- 37
- 29 --- 30
- 29 --- 31
- 29 --- 32
- 29 --- 33
- 29 --- 34
- 29 --- 35
- 29 --- 36
- 29 --- 37
- 29 --- 38
- 29 --- 39
- 29 --- 40
- 29 --- 41
- 29 --- 42
- 29 --- 43
- 14 <--x 44
+ 31 <--x 26
+ 31 <--x 30
+ 32 <--x 27
+ 32 <--x 30
+ 33 <--x 28
+ 33 <--x 30
+ 14 <--x 34
```
diff --git a/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/artifact_commands.snap b/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/artifact_commands.snap
index 713f73b59..140e2bf02 100644
--- a/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/artifact_commands.snap
+++ b/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -456,20 +564,27 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -492,6 +607,33 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -511,5 +653,79 @@ description: Artifact commands sketch_on_face_end_negative_extrude.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/artifact_graph_flowchart.snap.md
index 93c97330d..9e675ea6f 100644
--- a/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/sketch_on_face_end_negative_extrude/artifact_graph_flowchart.snap.md
@@ -8,13 +8,13 @@ flowchart LR
6["Segment
[217, 225, 0]"]
7[Solid2d]
end
- subgraph path23 [Path]
- 23["Path
[305, 330, 0]"]
- 24["Segment
[336, 355, 0]"]
- 25["Segment
[361, 380, 0]"]
- 26["Segment
[386, 406, 0]"]
- 27["Segment
[412, 420, 0]"]
- 28[Solid2d]
+ subgraph path18 [Path]
+ 18["Path
[305, 330, 0]"]
+ 19["Segment
[336, 355, 0]"]
+ 20["Segment
[361, 380, 0]"]
+ 21["Segment
[386, 406, 0]"]
+ 22["Segment
[412, 420, 0]"]
+ 23[Solid2d]
end
1["Plane
[29, 48, 0]"]
8["Sweep Extrusion
[231, 251, 0]"]
@@ -25,29 +25,19 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 29["Sweep Extrusion
[426, 446, 0]"]
- 30[Wall]
- 31[Wall]
- 32[Wall]
- 33[Wall]
- 34["Cap Start"]
- 35["Cap End"]
- 36["SweepEdge Opposite"]
- 37["SweepEdge Adjacent"]
- 38["SweepEdge Opposite"]
- 39["SweepEdge Adjacent"]
- 40["SweepEdge Opposite"]
- 41["SweepEdge Adjacent"]
- 42["SweepEdge Opposite"]
- 43["SweepEdge Adjacent"]
- 44["StartSketchOnFace
[263, 299, 0]"]
+ 24["Sweep Extrusion
[426, 446, 0]"]
+ 25[Wall]
+ 26[Wall]
+ 27[Wall]
+ 28[Wall]
+ 29["Cap Start"]
+ 30["Cap End"]
+ 31["SweepEdge Opposite"]
+ 32["SweepEdge Opposite"]
+ 33["SweepEdge Opposite"]
+ 34["StartSketchOnFace
[263, 299, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -56,17 +46,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
+ 3 --- 17
+ 3 x--> 13
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 13
5 --- 10
- 5 --- 17
- 5 --- 18
+ 5 --- 15
+ 5 x--> 13
6 --- 9
- 6 --- 15
- 6 --- 16
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -76,43 +65,44 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 14 --- 23
- 23 --- 24
- 23 --- 25
- 23 --- 26
- 23 --- 27
- 23 ---- 29
- 23 --- 28
+ 14 --- 18
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 18 --- 19
+ 18 --- 20
+ 18 --- 21
+ 18 --- 22
+ 18 ---- 24
+ 18 --- 23
+ 19 --- 28
+ 19 --- 33
+ 19 x--> 30
+ 20 --- 27
+ 20 --- 32
+ 20 x--> 30
+ 21 --- 26
+ 21 --- 31
+ 21 x--> 30
+ 22 --- 25
+ 22 x--> 30
+ 24 --- 25
+ 24 --- 26
+ 24 --- 27
+ 24 --- 28
+ 24 --- 29
+ 24 --- 30
+ 24 --- 31
+ 24 --- 32
24 --- 33
- 24 --- 42
- 24 --- 43
- 25 --- 32
- 25 --- 40
- 25 --- 41
- 26 --- 31
- 26 --- 38
- 26 --- 39
- 27 --- 30
- 27 --- 36
- 27 --- 37
- 29 --- 30
- 29 --- 31
- 29 --- 32
- 29 --- 33
- 29 --- 34
- 29 --- 35
- 29 --- 36
- 29 --- 37
- 29 --- 38
- 29 --- 39
- 29 --- 40
- 29 --- 41
- 29 --- 42
- 29 --- 43
- 14 <--x 44
+ 31 <--x 26
+ 31 <--x 29
+ 32 <--x 27
+ 32 <--x 29
+ 33 <--x 28
+ 33 <--x 29
+ 14 <--x 34
```
diff --git a/rust/kcl-lib/tests/sketch_on_face_start/artifact_commands.snap b/rust/kcl-lib/tests/sketch_on_face_start/artifact_commands.snap
index ef6b0bf75..76f81a144 100644
--- a/rust/kcl-lib/tests/sketch_on_face_start/artifact_commands.snap
+++ b/rust/kcl-lib/tests/sketch_on_face_start/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands sketch_on_face_start.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands sketch_on_face_start.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands sketch_on_face_start.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -456,20 +564,27 @@ description: Artifact commands sketch_on_face_start.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -492,6 +607,33 @@ description: Artifact commands sketch_on_face_start.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -511,5 +653,79 @@ description: Artifact commands sketch_on_face_start.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/sketch_on_face_start/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/sketch_on_face_start/artifact_graph_flowchart.snap.md
index 9a2d230e9..9b5bd25f8 100644
--- a/rust/kcl-lib/tests/sketch_on_face_start/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/sketch_on_face_start/artifact_graph_flowchart.snap.md
@@ -8,13 +8,13 @@ flowchart LR
6["Segment
[215, 223, 0]"]
7[Solid2d]
end
- subgraph path23 [Path]
- 23["Path
[308, 333, 0]"]
- 24["Segment
[339, 358, 0]"]
- 25["Segment
[364, 383, 0]"]
- 26["Segment
[389, 409, 0]"]
- 27["Segment
[415, 423, 0]"]
- 28[Solid2d]
+ subgraph path18 [Path]
+ 18["Path
[308, 333, 0]"]
+ 19["Segment
[339, 358, 0]"]
+ 20["Segment
[364, 383, 0]"]
+ 21["Segment
[389, 409, 0]"]
+ 22["Segment
[415, 423, 0]"]
+ 23[Solid2d]
end
1["Plane
[29, 46, 0]"]
8["Sweep Extrusion
[229, 249, 0]"]
@@ -25,29 +25,19 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 29["Sweep Extrusion
[429, 448, 0]"]
- 30[Wall]
- 31[Wall]
- 32[Wall]
- 33[Wall]
- 34["Cap Start"]
- 35["Cap End"]
- 36["SweepEdge Opposite"]
- 37["SweepEdge Adjacent"]
- 38["SweepEdge Opposite"]
- 39["SweepEdge Adjacent"]
- 40["SweepEdge Opposite"]
- 41["SweepEdge Adjacent"]
- 42["SweepEdge Opposite"]
- 43["SweepEdge Adjacent"]
- 44["StartSketchOnFace
[268, 302, 0]"]
+ 24["Sweep Extrusion
[429, 448, 0]"]
+ 25[Wall]
+ 26[Wall]
+ 27[Wall]
+ 28[Wall]
+ 29["Cap Start"]
+ 30["Cap End"]
+ 31["SweepEdge Opposite"]
+ 32["SweepEdge Opposite"]
+ 33["SweepEdge Opposite"]
+ 34["StartSketchOnFace
[268, 302, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -56,17 +46,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 12
- 3 --- 21
- 3 --- 22
+ 3 --- 17
+ 3 x--> 13
4 --- 11
- 4 --- 19
- 4 --- 20
+ 4 --- 16
+ 4 x--> 13
5 --- 10
- 5 --- 17
- 5 --- 18
+ 5 --- 15
+ 5 x--> 13
6 --- 9
- 6 --- 15
- 6 --- 16
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -76,43 +65,44 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 13 --- 23
- 23 --- 24
- 23 --- 25
- 23 --- 26
- 23 --- 27
- 23 ---- 29
- 23 --- 28
+ 13 --- 18
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 18 --- 19
+ 18 --- 20
+ 18 --- 21
+ 18 --- 22
+ 18 ---- 24
+ 18 --- 23
+ 19 --- 28
+ 19 --- 33
+ 19 x--> 29
+ 20 --- 27
+ 20 --- 32
+ 20 x--> 29
+ 21 --- 26
+ 21 --- 31
+ 21 x--> 29
+ 22 --- 25
+ 22 x--> 29
+ 24 --- 25
+ 24 --- 26
+ 24 --- 27
+ 24 --- 28
+ 24 --- 29
+ 24 --- 30
+ 24 --- 31
+ 24 --- 32
24 --- 33
- 24 --- 42
- 24 --- 43
- 25 --- 32
- 25 --- 40
- 25 --- 41
- 26 --- 31
- 26 --- 38
- 26 --- 39
- 27 --- 30
- 27 --- 36
- 27 --- 37
- 29 --- 30
- 29 --- 31
- 29 --- 32
- 29 --- 33
- 29 --- 34
- 29 --- 35
- 29 --- 36
- 29 --- 37
- 29 --- 38
- 29 --- 39
- 29 --- 40
- 29 --- 41
- 29 --- 42
- 29 --- 43
- 13 <--x 44
+ 31 <--x 26
+ 31 <--x 30
+ 32 <--x 27
+ 32 <--x 30
+ 33 <--x 28
+ 33 <--x 30
+ 13 <--x 34
```
diff --git a/rust/kcl-lib/tests/ssi_pattern/artifact_commands.snap b/rust/kcl-lib/tests/ssi_pattern/artifact_commands.snap
index 810e4d72b..08f06d9e5 100644
--- a/rust/kcl-lib/tests/ssi_pattern/artifact_commands.snap
+++ b/rust/kcl-lib/tests/ssi_pattern/artifact_commands.snap
@@ -265,20 +265,27 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -305,20 +312,27 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -341,6 +355,127 @@ description: Artifact commands ssi_pattern.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -1391,45 +1526,7 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -40.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -1438,20 +1535,18 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -1525,45 +1620,7 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -40.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -1572,20 +1629,18 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -1659,45 +1714,7 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -40.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -1706,20 +1723,18 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -1793,45 +1808,7 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -40.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -1840,20 +1817,18 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -1927,45 +1902,7 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -40.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -1974,20 +1911,18 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -2061,45 +1996,7 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -40.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -2108,20 +2005,18 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -2195,45 +2090,7 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -40.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -2242,20 +2099,18 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -2329,45 +2184,7 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -40.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -2376,20 +2193,18 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -2463,45 +2278,7 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -40.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -2510,20 +2287,18 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -2597,45 +2372,7 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -40.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -2644,20 +2381,18 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -2731,45 +2466,7 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -40.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -2778,20 +2475,18 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -2865,45 +2560,7 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -40.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -2912,20 +2569,18 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -2999,45 +2654,7 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -40.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -3046,20 +2663,18 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -3133,45 +2748,7 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "enable_sketch_mode",
- "entity_id": "[uuid]",
- "ortho": false,
- "animated": false,
- "adjust_camera": false,
- "planar_normal": null
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "extrude",
- "target": "[uuid]",
- "distance": -40.0,
- "faces": null,
- "opposite": "None"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "sketch_mode_disable"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "object_bring_to_front",
- "object_id": "[uuid]"
- }
- },
- {
- "cmdId": "[uuid]",
- "range": [],
- "command": {
- "type": "solid3d_get_extrusion_face_info",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
"edge_id": "[uuid]"
}
@@ -3180,20 +2757,18 @@ description: Artifact commands ssi_pattern.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
@@ -3263,6 +2838,33 @@ description: Artifact commands ssi_pattern.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -3329,5 +2931,1348 @@ description: Artifact commands ssi_pattern.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -40.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -40.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -40.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -40.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -40.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -40.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -40.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -40.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -40.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -40.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -40.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -40.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -40.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "enable_sketch_mode",
+ "entity_id": "[uuid]",
+ "ortho": false,
+ "animated": false,
+ "adjust_camera": false,
+ "planar_normal": null
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "extrude",
+ "target": "[uuid]",
+ "distance": -40.0,
+ "faces": null,
+ "opposite": "None"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "sketch_mode_disable"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "object_bring_to_front",
+ "object_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_extrusion_face_info",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/ssi_pattern/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/ssi_pattern/artifact_graph_flowchart.snap.md
index f47536ba6..a59eab87e 100644
--- a/rust/kcl-lib/tests/ssi_pattern/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/ssi_pattern/artifact_graph_flowchart.snap.md
@@ -10,10 +10,10 @@ flowchart LR
8["Segment
[286, 293, 0]"]
9[Solid2d]
end
- subgraph path28 [Path]
- 28["Path
[398, 442, 0]"]
- 29["Segment
[398, 442, 0]"]
- 30[Solid2d]
+ subgraph path22 [Path]
+ 22["Path
[398, 442, 0]"]
+ 23["Segment
[398, 442, 0]"]
+ 24[Solid2d]
end
1["Plane
[12, 31, 0]"]
10["Sweep Extrusion
[308, 339, 0]"]
@@ -25,19 +25,19 @@ flowchart LR
16["Cap Start"]
17["Cap End"]
18["SweepEdge Opposite"]
- 19["SweepEdge Adjacent"]
+ 19["SweepEdge Opposite"]
20["SweepEdge Opposite"]
- 21["SweepEdge Adjacent"]
- 22["SweepEdge Opposite"]
- 23["SweepEdge Adjacent"]
- 24["SweepEdge Opposite"]
- 25["SweepEdge Adjacent"]
- 26["SweepEdge Opposite"]
- 27["SweepEdge Adjacent"]
+ 21["SweepEdge Opposite"]
+ 25["Sweep Extrusion
[632, 653, 0]"]
+ 26[Wall]
+ 27["Sweep Extrusion
[632, 653, 0]"]
+ 28["Sweep Extrusion
[632, 653, 0]"]
+ 29["Sweep Extrusion
[632, 653, 0]"]
+ 30["Sweep Extrusion
[632, 653, 0]"]
31["Sweep Extrusion
[632, 653, 0]"]
- 32[Wall]
- 33["SweepEdge Opposite"]
- 34["SweepEdge Adjacent"]
+ 32["Sweep Extrusion
[632, 653, 0]"]
+ 33["Sweep Extrusion
[632, 653, 0]"]
+ 34["Sweep Extrusion
[632, 653, 0]"]
35["Sweep Extrusion
[632, 653, 0]"]
36["Sweep Extrusion
[632, 653, 0]"]
37["Sweep Extrusion
[632, 653, 0]"]
@@ -59,15 +59,7 @@ flowchart LR
53["Sweep Extrusion
[632, 653, 0]"]
54["Sweep Extrusion
[632, 653, 0]"]
55["Sweep Extrusion
[632, 653, 0]"]
- 56["Sweep Extrusion
[632, 653, 0]"]
- 57["Sweep Extrusion
[632, 653, 0]"]
- 58["Sweep Extrusion
[632, 653, 0]"]
- 59["Sweep Extrusion
[632, 653, 0]"]
- 60["Sweep Extrusion
[632, 653, 0]"]
- 61["Sweep Extrusion
[632, 653, 0]"]
- 62["Sweep Extrusion
[632, 653, 0]"]
- 63["Sweep Extrusion
[632, 653, 0]"]
- 64["StartSketchOnFace
[353, 392, 0]"]
+ 56["StartSketchOnFace
[353, 392, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -78,20 +70,19 @@ flowchart LR
2 ---- 10
2 --- 9
3 --- 15
- 3 --- 26
- 3 --- 27
+ 3 --- 21
+ 3 x--> 16
4 --- 14
- 4 --- 24
- 4 --- 25
+ 4 --- 20
+ 4 x--> 16
5 --- 13
- 5 --- 22
- 5 --- 23
+ 5 --- 19
+ 5 x--> 16
6 --- 12
- 6 --- 20
- 6 --- 21
+ 6 --- 18
+ 6 x--> 16
7 --- 11
- 7 --- 18
- 7 --- 19
+ 7 x--> 16
10 --- 11
10 --- 12
10 --- 13
@@ -103,21 +94,20 @@ flowchart LR
10 --- 19
10 --- 20
10 --- 21
- 10 --- 22
- 10 --- 23
- 10 --- 24
- 10 --- 25
- 10 --- 26
- 10 --- 27
- 11 --- 28
- 28 --- 29
- 28 ---- 31
- 28 --- 30
- 29 --- 32
- 29 --- 33
- 29 --- 34
- 31 --- 32
- 31 --- 33
- 31 --- 34
- 11 <--x 64
+ 11 --- 22
+ 18 <--x 12
+ 18 <--x 17
+ 19 <--x 13
+ 19 <--x 17
+ 20 <--x 14
+ 20 <--x 17
+ 21 <--x 15
+ 21 <--x 17
+ 22 --- 23
+ 22 ---- 25
+ 22 --- 24
+ 23 --- 26
+ 23 <--x 11
+ 25 --- 26
+ 11 <--x 56
```
diff --git a/rust/kcl-lib/tests/subtract_cylinder_from_cube/artifact_commands.snap b/rust/kcl-lib/tests/subtract_cylinder_from_cube/artifact_commands.snap
index 92b6e18cb..f40a08dcf 100644
--- a/rust/kcl-lib/tests/subtract_cylinder_from_cube/artifact_commands.snap
+++ b/rust/kcl-lib/tests/subtract_cylinder_from_cube/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands subtract_cylinder_from_cube.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands subtract_cylinder_from_cube.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands subtract_cylinder_from_cube.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -459,6 +567,33 @@ description: Artifact commands subtract_cylinder_from_cube.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/subtract_cylinder_from_cube/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/subtract_cylinder_from_cube/artifact_graph_flowchart.snap.md
index 477743d8c..13c611b1b 100644
--- a/rust/kcl-lib/tests/subtract_cylinder_from_cube/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/subtract_cylinder_from_cube/artifact_graph_flowchart.snap.md
@@ -8,10 +8,10 @@ flowchart LR
6["Segment
[291, 298, 0]"]
7[Solid2d]
end
- subgraph path24 [Path]
- 24["Path
[388, 423, 0]"]
- 25["Segment
[388, 423, 0]"]
- 26[Solid2d]
+ subgraph path19 [Path]
+ 19["Path
[388, 423, 0]"]
+ 20["Segment
[388, 423, 0]"]
+ 21[Solid2d]
end
1["Plane
[27, 44, 0]"]
8["Sweep Extrusion
[306, 326, 0]"]
@@ -22,21 +22,14 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 23["Plane
[363, 382, 0]"]
- 27["Sweep Extrusion
[429, 448, 0]"]
- 28[Wall]
- 29["Cap Start"]
- 30["Cap End"]
- 31["SweepEdge Opposite"]
- 32["SweepEdge Adjacent"]
- 33["CompositeSolid Subtract
[461, 497, 0]"]
+ 18["Plane
[363, 382, 0]"]
+ 22["Sweep Extrusion
[429, 448, 0]"]
+ 23[Wall]
+ 24["Cap Start"]
+ 25["Cap End"]
+ 26["CompositeSolid Subtract
[461, 497, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -45,17 +38,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 9
- 3 --- 15
- 3 --- 16
+ 3 x--> 13
4 --- 10
- 4 --- 17
- 4 --- 18
+ 4 --- 15
+ 4 x--> 13
5 --- 11
- 5 --- 19
- 5 --- 20
+ 5 --- 16
+ 5 x--> 13
6 --- 12
- 6 --- 21
- 6 --- 22
+ 6 --- 17
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -65,23 +57,21 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 23 --- 24
- 24 --- 25
- 24 ---- 27
- 24 --- 26
- 25 --- 28
- 25 --- 31
- 25 --- 32
- 27 --- 28
- 27 --- 29
- 27 --- 30
- 27 --- 31
- 27 --- 32
- 2 <--x 33
- 24 <--x 33
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 18 --- 19
+ 19 --- 20
+ 19 ---- 22
+ 19 --- 21
+ 20 --- 23
+ 20 x--> 24
+ 22 --- 23
+ 22 --- 24
+ 22 --- 25
+ 2 <--x 26
+ 19 <--x 26
```
diff --git a/rust/kcl-lib/tests/subtract_doesnt_need_brackets/artifact_commands.snap b/rust/kcl-lib/tests/subtract_doesnt_need_brackets/artifact_commands.snap
index ff544648c..1a134ddc6 100644
--- a/rust/kcl-lib/tests/subtract_doesnt_need_brackets/artifact_commands.snap
+++ b/rust/kcl-lib/tests/subtract_doesnt_need_brackets/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -489,20 +597,27 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -525,6 +640,33 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -545,6 +687,80 @@ description: Artifact commands subtract_doesnt_need_brackets.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/subtract_doesnt_need_brackets/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/subtract_doesnt_need_brackets/artifact_graph_flowchart.snap.md
index 6da35c68c..01cc95401 100644
--- a/rust/kcl-lib/tests/subtract_doesnt_need_brackets/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/subtract_doesnt_need_brackets/artifact_graph_flowchart.snap.md
@@ -8,13 +8,13 @@ flowchart LR
6["Segment
[313, 320, 0]"]
7[Solid2d]
end
- subgraph path24 [Path]
- 24["Path
[58, 113, 0]"]
- 25["Segment
[121, 177, 0]"]
- 26["Segment
[185, 241, 0]"]
- 27["Segment
[249, 305, 0]"]
- 28["Segment
[313, 320, 0]"]
- 29[Solid2d]
+ subgraph path19 [Path]
+ 19["Path
[58, 113, 0]"]
+ 20["Segment
[121, 177, 0]"]
+ 21["Segment
[185, 241, 0]"]
+ 22["Segment
[249, 305, 0]"]
+ 23["Segment
[313, 320, 0]"]
+ 24[Solid2d]
end
1["Plane
[33, 50, 0]"]
8["Sweep Extrusion
[328, 348, 0]"]
@@ -25,30 +25,20 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 23["Plane
[33, 50, 0]"]
- 30["Sweep Extrusion
[328, 348, 0]"]
- 31[Wall]
- 32[Wall]
- 33[Wall]
- 34[Wall]
- 35["Cap Start"]
- 36["Cap End"]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
- 39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 41["SweepEdge Opposite"]
- 42["SweepEdge Adjacent"]
- 43["SweepEdge Opposite"]
- 44["SweepEdge Adjacent"]
- 45["CompositeSolid Subtract
[445, 479, 0]"]
+ 18["Plane
[33, 50, 0]"]
+ 25["Sweep Extrusion
[328, 348, 0]"]
+ 26[Wall]
+ 27[Wall]
+ 28[Wall]
+ 29[Wall]
+ 30["Cap Start"]
+ 31["Cap End"]
+ 32["SweepEdge Opposite"]
+ 33["SweepEdge Opposite"]
+ 34["SweepEdge Opposite"]
+ 35["CompositeSolid Subtract
[445, 479, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -57,17 +47,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 9
- 3 --- 15
- 3 --- 16
+ 3 x--> 13
4 --- 10
- 4 --- 17
- 4 --- 18
+ 4 --- 15
+ 4 x--> 13
5 --- 11
- 5 --- 19
- 5 --- 20
+ 5 --- 16
+ 5 x--> 13
6 --- 12
- 6 --- 21
- 6 --- 22
+ 6 --- 17
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -77,44 +66,45 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 23 --- 24
- 24 --- 25
- 24 --- 26
- 24 --- 27
- 24 --- 28
- 24 ---- 30
- 24 --- 29
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 18 --- 19
+ 19 --- 20
+ 19 --- 21
+ 19 --- 22
+ 19 --- 23
+ 19 ---- 25
+ 19 --- 24
+ 20 --- 26
+ 20 x--> 30
+ 21 --- 27
+ 21 --- 32
+ 21 x--> 30
+ 22 --- 28
+ 22 --- 33
+ 22 x--> 30
+ 23 --- 29
+ 23 --- 34
+ 23 x--> 30
+ 25 --- 26
+ 25 --- 27
+ 25 --- 28
+ 25 --- 29
+ 25 --- 30
25 --- 31
- 25 --- 37
- 25 --- 38
- 26 --- 32
- 26 --- 39
- 26 --- 40
- 27 --- 33
- 27 --- 41
- 27 --- 42
- 28 --- 34
- 28 --- 43
- 28 --- 44
- 30 --- 31
- 30 --- 32
- 30 --- 33
- 30 --- 34
- 30 --- 35
- 30 --- 36
- 30 --- 37
- 30 --- 38
- 30 --- 39
- 30 --- 40
- 30 --- 41
- 30 --- 42
- 30 --- 43
- 30 --- 44
- 2 <--x 45
- 24 <--x 45
+ 25 --- 32
+ 25 --- 33
+ 25 --- 34
+ 32 <--x 27
+ 32 <--x 31
+ 33 <--x 28
+ 33 <--x 31
+ 34 <--x 29
+ 34 <--x 31
+ 2 <--x 35
+ 19 <--x 35
```
diff --git a/rust/kcl-lib/tests/tangential_arc/artifact_commands.snap b/rust/kcl-lib/tests/tangential_arc/artifact_commands.snap
index d076e0fd2..43ad4a840 100644
--- a/rust/kcl-lib/tests/tangential_arc/artifact_commands.snap
+++ b/rust/kcl-lib/tests/tangential_arc/artifact_commands.snap
@@ -222,20 +222,27 @@ description: Artifact commands tangential_arc.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -257,5 +264,79 @@ description: Artifact commands tangential_arc.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/tangential_arc/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/tangential_arc/artifact_graph_flowchart.snap.md
index 5d1b4055d..9303690ba 100644
--- a/rust/kcl-lib/tests/tangential_arc/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/tangential_arc/artifact_graph_flowchart.snap.md
@@ -14,25 +14,20 @@ flowchart LR
10["Cap Start"]
11["Cap End"]
12["SweepEdge Opposite"]
- 13["SweepEdge Adjacent"]
- 14["SweepEdge Opposite"]
- 15["SweepEdge Adjacent"]
- 16["SweepEdge Opposite"]
- 17["SweepEdge Adjacent"]
+ 13["SweepEdge Opposite"]
1 --- 2
2 --- 3
2 --- 4
2 --- 5
2 ---- 6
3 --- 7
- 3 --- 12
- 3 --- 13
+ 3 x--> 10
4 --- 8
- 4 --- 14
- 4 --- 15
+ 4 --- 12
+ 4 x--> 10
5 --- 9
- 5 --- 16
- 5 --- 17
+ 5 --- 13
+ 5 x--> 10
6 --- 7
6 --- 8
6 --- 9
@@ -40,8 +35,8 @@ flowchart LR
6 --- 11
6 --- 12
6 --- 13
- 6 --- 14
- 6 --- 15
- 6 --- 16
- 6 --- 17
+ 12 <--x 8
+ 12 <--x 11
+ 13 <--x 9
+ 13 <--x 11
```
diff --git a/rust/kcl-lib/tests/translate_after_fillet/artifact_commands.snap b/rust/kcl-lib/tests/translate_after_fillet/artifact_commands.snap
index 03ea5521b..4d481db5b 100644
--- a/rust/kcl-lib/tests/translate_after_fillet/artifact_commands.snap
+++ b/rust/kcl-lib/tests/translate_after_fillet/artifact_commands.snap
@@ -201,6 +201,33 @@ description: Artifact commands translate_after_fillet.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -438,20 +465,27 @@ description: Artifact commands translate_after_fillet.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -478,20 +512,27 @@ description: Artifact commands translate_after_fillet.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -514,6 +555,33 @@ description: Artifact commands translate_after_fillet.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -534,6 +602,127 @@ description: Artifact commands translate_after_fillet.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -673,6 +862,33 @@ description: Artifact commands translate_after_fillet.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/translate_after_fillet/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/translate_after_fillet/artifact_graph_flowchart.snap.md
index 0b50a3946..271043638 100644
--- a/rust/kcl-lib/tests/translate_after_fillet/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/translate_after_fillet/artifact_graph_flowchart.snap.md
@@ -5,20 +5,20 @@ flowchart LR
3["Segment
[345, 415, 0]"]
4[Solid2d]
end
- subgraph path13 [Path]
- 13["Path
[660, 720, 0]"]
- 14["Segment
[728, 807, 0]"]
- 15["Segment
[815, 894, 0]"]
- 16["Segment
[902, 981, 0]"]
- 17["Segment
[989, 1067, 0]"]
- 18["Segment
[1075, 1153, 0]"]
- 19["Segment
[1161, 1168, 0]"]
- 20[Solid2d]
+ subgraph path12 [Path]
+ 12["Path
[660, 720, 0]"]
+ 13["Segment
[728, 807, 0]"]
+ 14["Segment
[815, 894, 0]"]
+ 15["Segment
[902, 981, 0]"]
+ 16["Segment
[989, 1067, 0]"]
+ 17["Segment
[1075, 1153, 0]"]
+ 18["Segment
[1161, 1168, 0]"]
+ 19[Solid2d]
end
- subgraph path41 [Path]
- 41["Path
[1276, 1345, 0]"]
- 42["Segment
[1276, 1345, 0]"]
- 43[Solid2d]
+ subgraph path33 [Path]
+ 33["Path
[1276, 1345, 0]"]
+ 34["Segment
[1276, 1345, 0]"]
+ 35[Solid2d]
end
1["Plane
[320, 337, 0]"]
5["Sweep Extrusion
[423, 456, 0]"]
@@ -26,37 +26,28 @@ flowchart LR
7["Cap Start"]
8["Cap End"]
9["SweepEdge Opposite"]
- 10["SweepEdge Adjacent"]
+ 10["EdgeCut Fillet
[464, 530, 0]"]
11["EdgeCut Fillet
[464, 530, 0]"]
- 12["EdgeCut Fillet
[464, 530, 0]"]
- 21["Sweep Extrusion
[1176, 1216, 0]"]
+ 20["Sweep Extrusion
[1176, 1216, 0]"]
+ 21[Wall]
22[Wall]
23[Wall]
24[Wall]
25[Wall]
26[Wall]
- 27[Wall]
- 28["Cap Start"]
+ 27["Cap Start"]
+ 28["SweepEdge Opposite"]
29["SweepEdge Opposite"]
- 30["SweepEdge Adjacent"]
+ 30["SweepEdge Opposite"]
31["SweepEdge Opposite"]
- 32["SweepEdge Adjacent"]
- 33["SweepEdge Opposite"]
- 34["SweepEdge Adjacent"]
- 35["SweepEdge Opposite"]
- 36["SweepEdge Adjacent"]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
+ 32["SweepEdge Opposite"]
+ 36["Sweep Extrusion
[1353, 1381, 0]"]
+ 37[Wall]
+ 38["Cap End"]
39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 44["Sweep Extrusion
[1353, 1381, 0]"]
- 45[Wall]
- 46["Cap End"]
- 47["SweepEdge Opposite"]
- 48["SweepEdge Adjacent"]
- 49["EdgeCut Fillet
[1389, 1448, 0]"]
- 50["StartSketchOnFace
[613, 652, 0]"]
- 51["StartSketchOnFace
[1231, 1268, 0]"]
+ 40["EdgeCut Fillet
[1389, 1448, 0]"]
+ 41["StartSketchOnFace
[613, 652, 0]"]
+ 42["StartSketchOnFace
[1231, 1268, 0]"]
1 --- 2
2 --- 3
2 ---- 5
@@ -64,71 +55,71 @@ flowchart LR
3 --- 6
3 --- 9
3 --- 10
- 3 --- 11
+ 3 x--> 8
5 --- 6
5 --- 7
5 --- 8
5 --- 9
- 5 --- 10
- 7 --- 13
- 8 --- 41
- 9 <--x 12
- 13 --- 14
- 13 --- 15
- 13 --- 16
- 13 --- 17
- 13 --- 18
- 13 --- 19
- 13 ---- 21
- 13 --- 20
- 14 --- 27
- 14 --- 39
- 14 --- 40
- 15 --- 26
- 15 --- 37
- 15 --- 38
- 16 --- 25
- 16 --- 35
- 16 --- 36
- 17 --- 24
- 17 --- 33
- 17 --- 34
- 18 --- 23
- 18 --- 31
- 18 --- 32
- 19 --- 22
- 19 --- 29
- 19 --- 30
- 21 --- 22
- 21 --- 23
- 21 --- 24
- 21 --- 25
- 21 --- 26
- 21 --- 27
- 21 --- 28
- 21 --- 29
- 21 --- 30
- 21 --- 31
- 21 --- 32
- 21 --- 33
- 21 --- 34
- 21 --- 35
- 21 --- 36
- 21 --- 37
- 21 --- 38
- 21 --- 39
- 21 --- 40
- 41 --- 42
- 41 ---- 44
- 41 --- 43
- 42 --- 45
- 42 --- 47
- 42 --- 48
- 44 --- 45
- 44 --- 46
- 44 --- 47
- 44 --- 48
- 47 <--x 49
- 7 <--x 50
- 8 <--x 51
+ 7 --- 12
+ 8 --- 33
+ 9 <--x 11
+ 12 --- 13
+ 12 --- 14
+ 12 --- 15
+ 12 --- 16
+ 12 --- 17
+ 12 --- 18
+ 12 ---- 20
+ 12 --- 19
+ 13 --- 26
+ 13 --- 32
+ 13 <--x 7
+ 14 --- 25
+ 14 --- 31
+ 14 <--x 7
+ 15 --- 24
+ 15 --- 30
+ 15 <--x 7
+ 16 --- 23
+ 16 --- 29
+ 16 <--x 7
+ 17 --- 22
+ 17 --- 28
+ 17 <--x 7
+ 18 --- 21
+ 18 <--x 7
+ 20 --- 21
+ 20 --- 22
+ 20 --- 23
+ 20 --- 24
+ 20 --- 25
+ 20 --- 26
+ 20 --- 27
+ 20 --- 28
+ 20 --- 29
+ 20 --- 30
+ 20 --- 31
+ 20 --- 32
+ 28 <--x 22
+ 28 <--x 27
+ 29 <--x 23
+ 29 <--x 27
+ 30 <--x 24
+ 30 <--x 27
+ 31 <--x 25
+ 31 <--x 27
+ 32 <--x 26
+ 32 <--x 27
+ 33 --- 34
+ 33 ---- 36
+ 33 --- 35
+ 34 --- 37
+ 34 --- 39
+ 34 <--x 8
+ 36 --- 37
+ 36 --- 38
+ 36 --- 39
+ 39 <--x 40
+ 7 <--x 41
+ 8 <--x 42
```
diff --git a/rust/kcl-lib/tests/union_cubes/artifact_commands.snap b/rust/kcl-lib/tests/union_cubes/artifact_commands.snap
index 45f1dfbd9..a9b7d4d80 100644
--- a/rust/kcl-lib/tests/union_cubes/artifact_commands.snap
+++ b/rust/kcl-lib/tests/union_cubes/artifact_commands.snap
@@ -231,20 +231,27 @@ description: Artifact commands union_cubes.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -267,6 +274,33 @@ description: Artifact commands union_cubes.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -287,6 +321,80 @@ description: Artifact commands union_cubes.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -489,20 +597,27 @@ description: Artifact commands union_cubes.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -525,6 +640,33 @@ description: Artifact commands union_cubes.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
@@ -545,6 +687,80 @@ description: Artifact commands union_cubes.kcl
"face_id": "[uuid]"
}
},
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
{
"cmdId": "[uuid]",
"range": [],
diff --git a/rust/kcl-lib/tests/union_cubes/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/union_cubes/artifact_graph_flowchart.snap.md
index a991f572e..a6e6f86eb 100644
--- a/rust/kcl-lib/tests/union_cubes/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/union_cubes/artifact_graph_flowchart.snap.md
@@ -8,13 +8,13 @@ flowchart LR
6["Segment
[313, 320, 0]"]
7[Solid2d]
end
- subgraph path24 [Path]
- 24["Path
[58, 113, 0]"]
- 25["Segment
[121, 177, 0]"]
- 26["Segment
[185, 241, 0]"]
- 27["Segment
[249, 305, 0]"]
- 28["Segment
[313, 320, 0]"]
- 29[Solid2d]
+ subgraph path19 [Path]
+ 19["Path
[58, 113, 0]"]
+ 20["Segment
[121, 177, 0]"]
+ 21["Segment
[185, 241, 0]"]
+ 22["Segment
[249, 305, 0]"]
+ 23["Segment
[313, 320, 0]"]
+ 24[Solid2d]
end
1["Plane
[33, 50, 0]"]
8["Sweep Extrusion
[328, 354, 0]"]
@@ -25,30 +25,20 @@ flowchart LR
13["Cap Start"]
14["Cap End"]
15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
+ 16["SweepEdge Opposite"]
17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
- 19["SweepEdge Opposite"]
- 20["SweepEdge Adjacent"]
- 21["SweepEdge Opposite"]
- 22["SweepEdge Adjacent"]
- 23["Plane
[33, 50, 0]"]
- 30["Sweep Extrusion
[328, 354, 0]"]
- 31[Wall]
- 32[Wall]
- 33[Wall]
- 34[Wall]
- 35["Cap Start"]
- 36["Cap End"]
- 37["SweepEdge Opposite"]
- 38["SweepEdge Adjacent"]
- 39["SweepEdge Opposite"]
- 40["SweepEdge Adjacent"]
- 41["SweepEdge Opposite"]
- 42["SweepEdge Adjacent"]
- 43["SweepEdge Opposite"]
- 44["SweepEdge Adjacent"]
- 45["CompositeSolid Union
[448, 473, 0]"]
+ 18["Plane
[33, 50, 0]"]
+ 25["Sweep Extrusion
[328, 354, 0]"]
+ 26[Wall]
+ 27[Wall]
+ 28[Wall]
+ 29[Wall]
+ 30["Cap Start"]
+ 31["Cap End"]
+ 32["SweepEdge Opposite"]
+ 33["SweepEdge Opposite"]
+ 34["SweepEdge Opposite"]
+ 35["CompositeSolid Union
[448, 473, 0]"]
1 --- 2
2 --- 3
2 --- 4
@@ -57,17 +47,16 @@ flowchart LR
2 ---- 8
2 --- 7
3 --- 9
- 3 --- 15
- 3 --- 16
+ 3 x--> 13
4 --- 10
- 4 --- 17
- 4 --- 18
+ 4 --- 15
+ 4 x--> 13
5 --- 11
- 5 --- 19
- 5 --- 20
+ 5 --- 16
+ 5 x--> 13
6 --- 12
- 6 --- 21
- 6 --- 22
+ 6 --- 17
+ 6 x--> 13
8 --- 9
8 --- 10
8 --- 11
@@ -77,44 +66,45 @@ flowchart LR
8 --- 15
8 --- 16
8 --- 17
- 8 --- 18
- 8 --- 19
- 8 --- 20
- 8 --- 21
- 8 --- 22
- 23 --- 24
- 24 --- 25
- 24 --- 26
- 24 --- 27
- 24 --- 28
- 24 ---- 30
- 24 --- 29
+ 15 <--x 10
+ 15 <--x 14
+ 16 <--x 11
+ 16 <--x 14
+ 17 <--x 12
+ 17 <--x 14
+ 18 --- 19
+ 19 --- 20
+ 19 --- 21
+ 19 --- 22
+ 19 --- 23
+ 19 ---- 25
+ 19 --- 24
+ 20 --- 26
+ 20 x--> 30
+ 21 --- 27
+ 21 --- 32
+ 21 x--> 30
+ 22 --- 28
+ 22 --- 33
+ 22 x--> 30
+ 23 --- 29
+ 23 --- 34
+ 23 x--> 30
+ 25 --- 26
+ 25 --- 27
+ 25 --- 28
+ 25 --- 29
+ 25 --- 30
25 --- 31
- 25 --- 37
- 25 --- 38
- 26 --- 32
- 26 --- 39
- 26 --- 40
- 27 --- 33
- 27 --- 41
- 27 --- 42
- 28 --- 34
- 28 --- 43
- 28 --- 44
- 30 --- 31
- 30 --- 32
- 30 --- 33
- 30 --- 34
- 30 --- 35
- 30 --- 36
- 30 --- 37
- 30 --- 38
- 30 --- 39
- 30 --- 40
- 30 --- 41
- 30 --- 42
- 30 --- 43
- 30 --- 44
- 2 <--x 45
- 24 <--x 45
+ 25 --- 32
+ 25 --- 33
+ 25 --- 34
+ 32 <--x 27
+ 32 <--x 31
+ 33 <--x 28
+ 33 <--x 31
+ 34 <--x 29
+ 34 <--x 31
+ 2 <--x 35
+ 19 <--x 35
```
diff --git a/rust/kcl-lib/tests/xz_plane/artifact_commands.snap b/rust/kcl-lib/tests/xz_plane/artifact_commands.snap
index 3a1077f24..e39639267 100644
--- a/rust/kcl-lib/tests/xz_plane/artifact_commands.snap
+++ b/rust/kcl-lib/tests/xz_plane/artifact_commands.snap
@@ -214,20 +214,27 @@ description: Artifact commands xz_plane.kcl
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_opposite_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
}
},
{
"cmdId": "[uuid]",
"range": [],
"command": {
- "type": "solid3d_get_next_adjacent_edge",
+ "type": "solid3d_get_all_edge_faces",
"object_id": "[uuid]",
- "edge_id": "[uuid]",
- "face_id": "[uuid]"
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
}
},
{
@@ -249,5 +256,79 @@ description: Artifact commands xz_plane.kcl
"edge_id": "[uuid]",
"face_id": "[uuid]"
}
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_opposite_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_next_adjacent_edge",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]",
+ "face_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
+ },
+ {
+ "cmdId": "[uuid]",
+ "range": [],
+ "command": {
+ "type": "solid3d_get_all_edge_faces",
+ "object_id": "[uuid]",
+ "edge_id": "[uuid]"
+ }
}
]
diff --git a/rust/kcl-lib/tests/xz_plane/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/xz_plane/artifact_graph_flowchart.snap.md
index 720253458..a05b78288 100644
--- a/rust/kcl-lib/tests/xz_plane/artifact_graph_flowchart.snap.md
+++ b/rust/kcl-lib/tests/xz_plane/artifact_graph_flowchart.snap.md
@@ -15,11 +15,7 @@ flowchart LR
11["Cap Start"]
12["Cap End"]
13["SweepEdge Opposite"]
- 14["SweepEdge Adjacent"]
- 15["SweepEdge Opposite"]
- 16["SweepEdge Adjacent"]
- 17["SweepEdge Opposite"]
- 18["SweepEdge Adjacent"]
+ 14["SweepEdge Opposite"]
1 --- 2
2 --- 3
2 --- 4
@@ -27,14 +23,13 @@ flowchart LR
2 ---- 7
2 --- 6
3 --- 10
- 3 --- 17
- 3 --- 18
+ 3 --- 14
+ 3 x--> 11
4 --- 9
- 4 --- 15
- 4 --- 16
+ 4 --- 13
+ 4 x--> 11
5 --- 8
- 5 --- 13
- 5 --- 14
+ 5 x--> 11
7 --- 8
7 --- 9
7 --- 10
@@ -42,8 +37,8 @@ flowchart LR
7 --- 12
7 --- 13
7 --- 14
- 7 --- 15
- 7 --- 16
- 7 --- 17
- 7 --- 18
+ 13 <--x 9
+ 13 <--x 12
+ 14 <--x 10
+ 14 <--x 12
```
diff --git a/src/components/NetworkMachineIndicator.tsx b/src/components/NetworkMachineIndicator.tsx
index 2d3867216..924dac5fb 100644
--- a/src/components/NetworkMachineIndicator.tsx
+++ b/src/components/NetworkMachineIndicator.tsx
@@ -1,11 +1,11 @@
import { Popover } from '@headlessui/react'
import { useContext } from 'react'
-
import { CustomIcon } from '@src/components/CustomIcon'
import { MachineManagerContext } from '@src/components/MachineManagerProvider'
import Tooltip from '@src/components/Tooltip'
import { isDesktop } from '@src/lib/isDesktop'
import type { components } from '@src/lib/machine-api'
+import { capitaliseFC } from '@src/lib/utils'
export const NetworkMachineIndicator = ({
className,
@@ -69,9 +69,7 @@ export const NetworkMachineIndicator = ({
- {`Status: ${machine.state.state
- .charAt(0)
- .toUpperCase()}${machine.state.state.slice(1)}`}
+ {`Status: ${capitaliseFC(machine.state.state)}`}
{machine.state.state === 'failed' && machine.state.message
? ` (${machine.state.message})`
: ''}
diff --git a/src/lang/modifyAst.test.ts b/src/lang/modifyAst.test.ts
index 2c758caa0..3dca773d0 100644
--- a/src/lang/modifyAst.test.ts
+++ b/src/lang/modifyAst.test.ts
@@ -14,7 +14,6 @@ import {
} from '@src/lang/create'
import {
addSketchTo,
- deleteFromSelection,
deleteSegmentFromPipeExpression,
moveValueIntoNewVariable,
removeSingleConstraintInfo,
@@ -32,6 +31,7 @@ import { assertParse, recast } from '@src/lang/wasm'
import { initPromise } from '@src/lang/wasmUtils'
import { enginelessExecutor } from '@src/lib/testHelpers'
import { err } from '@src/lib/trap'
+import { deleteFromSelection } from '@src/lang/modifyAst/deleteFromSelection'
beforeAll(async () => {
await initPromise
diff --git a/src/lang/modifyAst.ts b/src/lang/modifyAst.ts
index 4aa1df21f..2cec0c3f3 100644
--- a/src/lang/modifyAst.ts
+++ b/src/lang/modifyAst.ts
@@ -1,5 +1,3 @@
-import type { Models } from '@kittycad/lib'
-
import type { BodyItem } from '@rust/kcl-lib/bindings/BodyItem'
import type { Name } from '@rust/kcl-lib/bindings/Name'
import type { Node } from '@rust/kcl-lib/bindings/Node'
@@ -21,10 +19,6 @@ import {
createVariableDeclaration,
findUniqueName,
} from '@src/lang/create'
-import {
- deleteEdgeTreatment,
- locateExtrudeDeclarator,
-} from '@src/lang/modifyAst/addEdgeTreatment'
import {
findAllPreviousVariables,
findAllPreviousVariablesPath,
@@ -33,7 +27,6 @@ import {
isCallExprWithName,
isNodeSafeToReplace,
isNodeSafeToReplacePath,
- traverse,
} from '@src/lang/queryAst'
import {
ARG_INDEX_FIELD,
@@ -42,15 +35,7 @@ import {
} from '@src/lang/queryAstConstants'
import { getNodePathFromSourceRange } from '@src/lang/queryAstNodePathUtils'
import type { Artifact } from '@src/lang/std/artifactGraph'
-import {
- expandCap,
- expandPlane,
- expandWall,
- getArtifactOfTypes,
- getArtifactsOfTypes,
- getFaceCodeRef,
- getPathsFromArtifact,
-} from '@src/lang/std/artifactGraph'
+import { getPathsFromArtifact } from '@src/lang/std/artifactGraph'
import {
addTagForSketchOnFace,
getConstraintInfo,
@@ -69,8 +54,6 @@ import type {
CallExpression,
CallExpressionKw,
Expr,
- ExpressionStatement,
- KclValue,
Literal,
PathToNode,
PipeExpression,
@@ -88,8 +71,8 @@ import type {
import { KCL_DEFAULT_CONSTANT_PREFIXES } from '@src/lib/constants'
import type { DefaultPlaneStr } from '@src/lib/planes'
import type { Selection } from '@src/lib/selections'
-import { err, reportRejection, trap } from '@src/lib/trap'
-import { isArray, isOverlap, roundOff } from '@src/lib/utils'
+import { err, trap } from '@src/lib/trap'
+import { isOverlap, roundOff } from '@src/lib/utils'
import type { ExtrudeFacePlane } from '@src/machines/modelingMachine'
import { ARG_AT } from '@src/lang/constants'
@@ -1255,448 +1238,6 @@ export function removeSingleConstraintInfo(
return retval
}
-export async function deleteFromSelection(
- ast: Node