test: Add face_code_ref to the mermaid output (#6985)
* Add face_code_ref to the mermaid output * Update output
This commit is contained in:
@ -298,13 +298,19 @@ impl ArtifactGraph {
|
||||
let range = code_ref.range;
|
||||
[range.start(), range.end(), range.module_id().as_usize()]
|
||||
}
|
||||
fn node_path_display<W: Write>(output: &mut W, prefix: &str, code_ref: &CodeRef) -> std::fmt::Result {
|
||||
fn node_path_display<W: Write>(
|
||||
output: &mut W,
|
||||
prefix: &str,
|
||||
label: Option<&str>,
|
||||
code_ref: &CodeRef,
|
||||
) -> std::fmt::Result {
|
||||
// %% is a mermaid comment. Prefix is increased one level since it's
|
||||
// a child of the line above it.
|
||||
let label = label.unwrap_or("");
|
||||
if code_ref.node_path.is_empty() {
|
||||
return writeln!(output, "{prefix} %% Missing NodePath");
|
||||
return writeln!(output, "{prefix} %% {label}Missing NodePath");
|
||||
}
|
||||
writeln!(output, "{prefix} %% {:?}", code_ref.node_path.steps)
|
||||
writeln!(output, "{prefix} %% {label}{:?}", code_ref.node_path.steps)
|
||||
}
|
||||
|
||||
match artifact {
|
||||
@ -315,7 +321,7 @@ impl ArtifactGraph {
|
||||
composite_solid.sub_type,
|
||||
code_ref_display(&composite_solid.code_ref)
|
||||
)?;
|
||||
node_path_display(output, prefix, &composite_solid.code_ref)?;
|
||||
node_path_display(output, prefix, None, &composite_solid.code_ref)?;
|
||||
}
|
||||
Artifact::Plane(plane) => {
|
||||
writeln!(
|
||||
@ -323,7 +329,7 @@ impl ArtifactGraph {
|
||||
"{prefix}{id}[\"Plane<br>{:?}\"]",
|
||||
code_ref_display(&plane.code_ref)
|
||||
)?;
|
||||
node_path_display(output, prefix, &plane.code_ref)?;
|
||||
node_path_display(output, prefix, None, &plane.code_ref)?;
|
||||
}
|
||||
Artifact::Path(path) => {
|
||||
writeln!(
|
||||
@ -331,7 +337,7 @@ impl ArtifactGraph {
|
||||
"{prefix}{id}[\"Path<br>{:?}\"]",
|
||||
code_ref_display(&path.code_ref)
|
||||
)?;
|
||||
node_path_display(output, prefix, &path.code_ref)?;
|
||||
node_path_display(output, prefix, None, &path.code_ref)?;
|
||||
}
|
||||
Artifact::Segment(segment) => {
|
||||
writeln!(
|
||||
@ -339,7 +345,7 @@ impl ArtifactGraph {
|
||||
"{prefix}{id}[\"Segment<br>{:?}\"]",
|
||||
code_ref_display(&segment.code_ref)
|
||||
)?;
|
||||
node_path_display(output, prefix, &segment.code_ref)?;
|
||||
node_path_display(output, prefix, None, &segment.code_ref)?;
|
||||
}
|
||||
Artifact::Solid2d(_solid2d) => {
|
||||
writeln!(output, "{prefix}{}[Solid2d]", id)?;
|
||||
@ -350,7 +356,7 @@ impl ArtifactGraph {
|
||||
"{prefix}{id}[\"StartSketchOnFace<br>{:?}\"]",
|
||||
code_ref_display(code_ref)
|
||||
)?;
|
||||
node_path_display(output, prefix, code_ref)?;
|
||||
node_path_display(output, prefix, None, code_ref)?;
|
||||
}
|
||||
Artifact::StartSketchOnPlane(StartSketchOnPlane { code_ref, .. }) => {
|
||||
writeln!(
|
||||
@ -358,7 +364,7 @@ impl ArtifactGraph {
|
||||
"{prefix}{id}[\"StartSketchOnPlane<br>{:?}\"]",
|
||||
code_ref_display(code_ref)
|
||||
)?;
|
||||
node_path_display(output, prefix, code_ref)?;
|
||||
node_path_display(output, prefix, None, code_ref)?;
|
||||
}
|
||||
Artifact::Sweep(sweep) => {
|
||||
writeln!(
|
||||
@ -367,13 +373,15 @@ impl ArtifactGraph {
|
||||
sweep.sub_type,
|
||||
code_ref_display(&sweep.code_ref)
|
||||
)?;
|
||||
node_path_display(output, prefix, &sweep.code_ref)?;
|
||||
node_path_display(output, prefix, None, &sweep.code_ref)?;
|
||||
}
|
||||
Artifact::Wall(_wall) => {
|
||||
Artifact::Wall(wall) => {
|
||||
writeln!(output, "{prefix}{id}[Wall]")?;
|
||||
node_path_display(output, prefix, Some("face_code_ref="), &wall.face_code_ref)?;
|
||||
}
|
||||
Artifact::Cap(cap) => {
|
||||
writeln!(output, "{prefix}{id}[\"Cap {:?}\"]", cap.sub_type)?;
|
||||
node_path_display(output, prefix, Some("face_code_ref="), &cap.face_code_ref)?;
|
||||
}
|
||||
Artifact::SweepEdge(sweep_edge) => {
|
||||
writeln!(output, "{prefix}{id}[\"SweepEdge {:?}\"]", sweep_edge.sub_type)?;
|
||||
@ -385,7 +393,7 @@ impl ArtifactGraph {
|
||||
edge_cut.sub_type,
|
||||
code_ref_display(&edge_cut.code_ref)
|
||||
)?;
|
||||
node_path_display(output, prefix, &edge_cut.code_ref)?;
|
||||
node_path_display(output, prefix, None, &edge_cut.code_ref)?;
|
||||
}
|
||||
Artifact::EdgeCutEdge(_edge_cut_edge) => {
|
||||
writeln!(output, "{prefix}{id}[EdgeCutEdge]")?;
|
||||
@ -396,7 +404,7 @@ impl ArtifactGraph {
|
||||
"{prefix}{id}[\"Helix<br>{:?}\"]",
|
||||
code_ref_display(&helix.code_ref)
|
||||
)?;
|
||||
node_path_display(output, prefix, &helix.code_ref)?;
|
||||
node_path_display(output, prefix, None, &helix.code_ref)?;
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
|
@ -22,13 +22,21 @@ flowchart LR
|
||||
10["Sweep Extrusion<br>[279, 298, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
16[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
17["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
18["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
19["SweepEdge Opposite"]
|
||||
20["SweepEdge Opposite"]
|
||||
21["SweepEdge Opposite"]
|
||||
|
@ -37,15 +37,25 @@ flowchart LR
|
||||
17["Sweep Extrusion<br>[553, 583, 0]"]
|
||||
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
18[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
19[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
20[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
21[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
22[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
23[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
24[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
25["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
26["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
27["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
28["SweepEdge Opposite"]
|
||||
29["SweepEdge Opposite"]
|
||||
30["SweepEdge Opposite"]
|
||||
|
@ -69,22 +69,39 @@ flowchart LR
|
||||
32["Sweep Extrusion<br>[994, 1024, 0]"]
|
||||
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
33[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
34[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
35[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
36[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
37[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
38[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
39[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
40[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
41[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
42[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
43[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
44[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
45["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
46["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
47["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
48["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
49["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
50["SweepEdge Opposite"]
|
||||
51["SweepEdge Opposite"]
|
||||
52["SweepEdge Opposite"]
|
||||
|
@ -39,17 +39,29 @@ flowchart LR
|
||||
18["Sweep Extrusion<br>[264, 286, 2]"]
|
||||
%% Missing NodePath
|
||||
19[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
20[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
21[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
22[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
23[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
24[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
25[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
26[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
27["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
28["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
29["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
30["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
31["SweepEdge Opposite"]
|
||||
32["SweepEdge Opposite"]
|
||||
33["SweepEdge Opposite"]
|
||||
|
@ -18,11 +18,17 @@ flowchart LR
|
||||
8["Sweep Extrusion<br>[195, 215, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
9[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
10[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15["SweepEdge Opposite"]
|
||||
16["SweepEdge Opposite"]
|
||||
17["SweepEdge Opposite"]
|
||||
|
@ -18,11 +18,17 @@ flowchart LR
|
||||
8["Sweep Extrusion<br>[183, 203, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
9[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
10[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15["SweepEdge Opposite"]
|
||||
16["SweepEdge Opposite"]
|
||||
17["SweepEdge Opposite"]
|
||||
|
@ -18,11 +18,17 @@ flowchart LR
|
||||
8["Sweep Extrusion<br>[210, 230, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
9[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
10[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15["SweepEdge Opposite"]
|
||||
16["SweepEdge Opposite"]
|
||||
17["SweepEdge Opposite"]
|
||||
|
@ -18,11 +18,17 @@ flowchart LR
|
||||
8["Sweep Extrusion<br>[210, 230, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
9[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
10[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15["SweepEdge Opposite"]
|
||||
16["SweepEdge Opposite"]
|
||||
17["SweepEdge Opposite"]
|
||||
|
@ -18,11 +18,17 @@ flowchart LR
|
||||
8["Sweep Extrusion<br>[183, 203, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
9[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
10[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15["SweepEdge Opposite"]
|
||||
16["SweepEdge Opposite"]
|
||||
17["SweepEdge Opposite"]
|
||||
|
@ -12,6 +12,7 @@ flowchart LR
|
||||
5["Sweep Revolve<br>[76, 120, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||
6[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
7["SweepEdge Adjacent"]
|
||||
1 --- 2
|
||||
2 --- 3
|
||||
|
@ -12,8 +12,11 @@ flowchart LR
|
||||
5["Sweep Extrusion<br>[102, 122, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||
6[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
7["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
8["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
9["SweepEdge Opposite"]
|
||||
10["SweepEdge Adjacent"]
|
||||
1 --- 2
|
||||
|
@ -18,11 +18,17 @@ flowchart LR
|
||||
8["Sweep Extrusion<br>[157, 176, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
9[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
10[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15["SweepEdge Opposite"]
|
||||
16["SweepEdge Opposite"]
|
||||
17["SweepEdge Opposite"]
|
||||
|
@ -142,26 +142,47 @@ flowchart LR
|
||||
64["Sweep RevolveAboutEdge<br>[2443, 2488, 0]"]
|
||||
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
65[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
66[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
67[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
68[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
69[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
70[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
71[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
72[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
73[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
74[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
75[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
76[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
77[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
78["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
79["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
80["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
81["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
82["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
83["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
84["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
85["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
86["SweepEdge Opposite"]
|
||||
87["SweepEdge Opposite"]
|
||||
88["SweepEdge Opposite"]
|
||||
|
@ -20,11 +20,17 @@ flowchart LR
|
||||
9["Sweep Extrusion<br>[374, 402, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 7 }, ReturnStatementArg, PipeBodyItem { index: 7 }]
|
||||
10[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
16["SweepEdge Opposite"]
|
||||
17["SweepEdge Opposite"]
|
||||
18["SweepEdge Opposite"]
|
||||
|
@ -20,11 +20,17 @@ flowchart LR
|
||||
9["Sweep Extrusion<br>[366, 390, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 7 }, ReturnStatementArg, PipeBodyItem { index: 7 }]
|
||||
10[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
16["SweepEdge Opposite"]
|
||||
17["SweepEdge Opposite"]
|
||||
18["SweepEdge Opposite"]
|
||||
|
@ -33,11 +33,17 @@ flowchart LR
|
||||
15["Sweep Extrusion<br>[169, 189, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
16[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
17[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
18[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
19[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
20["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
21["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
22["SweepEdge Opposite"]
|
||||
23["SweepEdge Opposite"]
|
||||
24["SweepEdge Opposite"]
|
||||
|
@ -121,23 +121,41 @@ flowchart LR
|
||||
51["Sweep Extrusion<br>[1482, 1506, 0]"]
|
||||
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||
52[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
53[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
54[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
55[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
56[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
57[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
58[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
59[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
60["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
61["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
62["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
63["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
64["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
65["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
66["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
67["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
68["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
69["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
70["SweepEdge Opposite"]
|
||||
71["SweepEdge Opposite"]
|
||||
72["SweepEdge Opposite"]
|
||||
|
@ -18,11 +18,17 @@ flowchart LR
|
||||
8["Sweep Extrusion<br>[216, 236, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, ExpressionStatementExpr, PipeBodyItem { index: 5 }]
|
||||
9[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
10[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15["SweepEdge Opposite"]
|
||||
16["SweepEdge Opposite"]
|
||||
17["SweepEdge Opposite"]
|
||||
|
@ -19,8 +19,11 @@ flowchart LR
|
||||
8["Sweep Extrusion<br>[702, 739, 0]"]
|
||||
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
9[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
10["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12["SweepEdge Opposite"]
|
||||
13["SweepEdge Adjacent"]
|
||||
1 --- 2
|
||||
|
@ -18,11 +18,17 @@ flowchart LR
|
||||
8["Sweep Extrusion<br>[181, 200, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
9[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
10[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15["SweepEdge Opposite"]
|
||||
16["SweepEdge Opposite"]
|
||||
17["SweepEdge Opposite"]
|
||||
|
@ -18,11 +18,17 @@ flowchart LR
|
||||
8["Sweep Extrusion<br>[179, 198, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
9[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
10[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15["SweepEdge Opposite"]
|
||||
16["SweepEdge Opposite"]
|
||||
17["SweepEdge Opposite"]
|
||||
|
@ -12,8 +12,11 @@ flowchart LR
|
||||
5["Sweep Extrusion<br>[75, 95, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||
6[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
7["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
8["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
9["SweepEdge Opposite"]
|
||||
10["SweepEdge Adjacent"]
|
||||
1 --- 2
|
||||
|
@ -85,31 +85,57 @@ flowchart LR
|
||||
41["Sweep Extrusion<br>[2408, 2429, 0]"]
|
||||
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||
42[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
43[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
44[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
45[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
46[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
47[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
48[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
49[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
50[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
51[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
52[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
53[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
54[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
55[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
56[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
57[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
58[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
59[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
60[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
61[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
62[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
63[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
64[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
65[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
66["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
67["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
68["SweepEdge Opposite"]
|
||||
69["SweepEdge Opposite"]
|
||||
70["SweepEdge Opposite"]
|
||||
|
@ -71,11 +71,17 @@ flowchart LR
|
||||
33["Sweep Loft<br>[3201, 3268, 0]"]
|
||||
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
34[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
35[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
36[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
37[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
38["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
39["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
40["SweepEdge Opposite"]
|
||||
41["SweepEdge Opposite"]
|
||||
42["SweepEdge Opposite"]
|
||||
|
@ -26,13 +26,21 @@ flowchart LR
|
||||
12["Sweep Revolve<br>[302, 319, 1]"]
|
||||
%% Missing NodePath
|
||||
13[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
16[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
17[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
18[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
19[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
20[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
21["SweepEdge Adjacent"]
|
||||
22["SweepEdge Adjacent"]
|
||||
23["SweepEdge Adjacent"]
|
||||
|
@ -12,8 +12,11 @@ flowchart LR
|
||||
5["Sweep Extrusion<br>[124, 144, 1]"]
|
||||
%% Missing NodePath
|
||||
6[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
7["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
8["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
9["SweepEdge Opposite"]
|
||||
10["SweepEdge Adjacent"]
|
||||
1 --- 2
|
||||
|
@ -12,8 +12,11 @@ flowchart LR
|
||||
5["Sweep Extrusion<br>[143, 163, 1]"]
|
||||
%% Missing NodePath
|
||||
6[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
7["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
8["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
9["SweepEdge Opposite"]
|
||||
10["SweepEdge Adjacent"]
|
||||
1 --- 2
|
||||
|
@ -37,17 +37,29 @@ flowchart LR
|
||||
17["CompositeSolid Intersect<br>[480, 509, 0]"]
|
||||
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
18[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
19[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
20[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
21[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
22[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
23[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
24[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
25[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
26["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
27["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
28["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
29["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
30["SweepEdge Opposite"]
|
||||
31["SweepEdge Opposite"]
|
||||
32["SweepEdge Opposite"]
|
||||
|
@ -31,13 +31,21 @@ flowchart LR
|
||||
14["Sweep Extrusion<br>[1230, 1258, 0]"]
|
||||
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 11 }]
|
||||
15[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
16[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
17[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
18[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
19[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
20[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
21["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
22["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
23["SweepEdge Opposite"]
|
||||
24["SweepEdge Opposite"]
|
||||
25["SweepEdge Opposite"]
|
||||
|
@ -147,71 +147,137 @@ flowchart LR
|
||||
72["Sweep Extrusion<br>[5086, 5114, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 68 }]
|
||||
73[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
74[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
75[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
76[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
77[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
78[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
79[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
80[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
81[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
82[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
83[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
84[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
85[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
86[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
87[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
88[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
89[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
90[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
91[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
92[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
93[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
94[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
95[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
96[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
97[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
98[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
99[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
100[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
101[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
102[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
103[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
104[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
105[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
106[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
107[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
108[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
109[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
110[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
111[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
112[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
113[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
114[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
115[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
116[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
117[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
118[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
119[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
120[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
121[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
122[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
123[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
124[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
125[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
126[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
127[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
128[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
129[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
130[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
131[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
132[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
133[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
134[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
135[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
136[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
137["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
138["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
139["SweepEdge Opposite"]
|
||||
140["SweepEdge Opposite"]
|
||||
141["SweepEdge Opposite"]
|
||||
|
@ -289,62 +289,119 @@ flowchart LR
|
||||
132["Sweep Loft<br>[2472, 2491, 4]"]
|
||||
%% Missing NodePath
|
||||
133[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
134[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
135[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
136[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
137[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
138[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
139[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
140[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
141[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
142[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
143[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
144[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
145[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
146[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
147[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
148[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
149[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
150[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
151[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
152[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
153[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
154[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
155[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
156[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
157[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
158[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
159[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
160[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
161[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
162[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
163[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
164[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
165[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
166[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
167[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
168[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
169[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
170[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
171[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
172[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
173[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
174[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
175[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
176[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
177[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
178["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
179["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
180["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
181["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
182["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
183["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
184["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
185["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
186["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
187["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
188["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
189["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
190["SweepEdge Opposite"]
|
||||
191["SweepEdge Opposite"]
|
||||
192["SweepEdge Opposite"]
|
||||
@ -724,19 +781,19 @@ flowchart LR
|
||||
84 --- 144
|
||||
84 --- 237
|
||||
86 --- 168
|
||||
86 x--> 189
|
||||
86 x--> 188
|
||||
86 --- 212
|
||||
86 --- 256
|
||||
88 --- 169
|
||||
88 x--> 189
|
||||
88 x--> 188
|
||||
88 --- 213
|
||||
88 --- 257
|
||||
90 --- 167
|
||||
90 x--> 189
|
||||
90 x--> 188
|
||||
90 --- 214
|
||||
90 --- 258
|
||||
92 --- 170
|
||||
92 x--> 189
|
||||
92 x--> 188
|
||||
92 --- 215
|
||||
92 --- 259
|
||||
119 --- 133
|
||||
@ -1018,10 +1075,10 @@ flowchart LR
|
||||
218 <--x 186
|
||||
219 <--x 186
|
||||
194 <--x 187
|
||||
212 <--x 188
|
||||
213 <--x 188
|
||||
214 <--x 188
|
||||
215 <--x 188
|
||||
212 <--x 189
|
||||
213 <--x 189
|
||||
214 <--x 189
|
||||
215 <--x 189
|
||||
220 <--x 275
|
||||
223 <--x 270
|
||||
224 <--x 274
|
||||
|
@ -82,20 +82,35 @@ flowchart LR
|
||||
37["Sweep Extrusion<br>[2812, 2865, 0]"]
|
||||
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
38[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
39[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
40[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
41[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
42[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
43[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
44[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
45[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
46[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
47["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
48["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
49["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
50["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
51["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
52["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
53["SweepEdge Opposite"]
|
||||
54["SweepEdge Opposite"]
|
||||
55["SweepEdge Opposite"]
|
||||
|
@ -497,187 +497,369 @@ flowchart LR
|
||||
238["Sweep Sweep<br>[3902, 3929, 1]"]
|
||||
%% Missing NodePath
|
||||
239[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
240[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
241[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
242[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
243[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
244[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
245[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
246[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
247[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
248[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
249[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
250[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
251[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
252[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
253[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
254[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
255[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
256[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
257[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
258[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
259[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
260[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
261[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
262[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
263[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
264[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
265[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
266[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
267[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
268[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
269[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
270[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
271[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
272[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
273[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
274[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
275[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
276[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
277[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
278[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
279[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
280[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
281[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
282[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
283[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
284[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
285[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
286[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
287[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
288[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
289[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
290[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
291[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
292[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
293[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
294[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
295[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
296[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
297[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
298[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
299[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
300[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
301[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
302[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
303[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
304[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
305[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
306[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
307[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
308[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
309[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
310[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
311[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
312[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
313[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
314[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
315[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
316[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
317[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
318[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
319[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
320[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
321[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
322[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
323[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
324[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
325[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
326[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
327[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
328[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
329[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
330[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
331[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
332[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
333[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
334[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
335[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
336[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
337[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
338[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
339[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
340[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
341[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
342[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
343[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
344[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
345[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
346[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
347[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
348[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
349[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
350[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
351[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
352[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
353[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
354[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
355[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
356[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
357[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
358[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
359[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
360[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
361[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
362[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
363[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
364[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
365[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
366[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
367[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
368[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
369[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
370[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
371[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
372[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
373[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
374[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
375[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
376[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
377[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
378[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
379[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
380[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
381[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
382[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
383[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
384[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
385[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
386[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
387[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
388[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
389[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
390[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
391[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
392[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
393[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
394[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
395[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
396[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
397["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
398["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
399["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
400["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
401["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
402["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
403["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
404["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
405["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
406["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
407["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
408["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
409["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
410["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
411["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
412["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
413["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
414["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
415["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
416["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
417["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
418["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
419["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
420["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
421["SweepEdge Opposite"]
|
||||
422["SweepEdge Opposite"]
|
||||
423["SweepEdge Opposite"]
|
||||
|
@ -134,47 +134,89 @@ flowchart LR
|
||||
62["CompositeSolid Union<br>[2745, 2768, 0]"]
|
||||
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwArg { index: 0 }]
|
||||
63[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
64[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
65[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
66[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
67[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
68[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
69[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
70[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
71[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
72[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
73[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
74[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
75[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
76[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
77[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
78[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
79[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
80[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
81[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
82[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
83[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
84[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
85[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
86[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
87["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
88["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
89["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
90["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
91["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
92["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
93["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
94["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
95["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
96["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
97["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
98["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
99["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
100["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
101["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
102["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
103["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
104["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
105["SweepEdge Opposite"]
|
||||
106["SweepEdge Opposite"]
|
||||
107["SweepEdge Opposite"]
|
||||
|
@ -31,7 +31,9 @@ flowchart LR
|
||||
14["Sweep Extrusion<br>[812, 839, 0]"]
|
||||
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||
15[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
16["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
17["SweepEdge Opposite"]
|
||||
18["SweepEdge Adjacent"]
|
||||
1 --- 4
|
||||
|
@ -54,15 +54,25 @@ flowchart LR
|
||||
25["Sweep Extrusion<br>[3542, 3579, 0]"]
|
||||
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||
26[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
27[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
28[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
29[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
30[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
31[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
32[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
33[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
34["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
35["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
36["SweepEdge Opposite"]
|
||||
37["SweepEdge Opposite"]
|
||||
38["SweepEdge Opposite"]
|
||||
|
@ -470,123 +470,241 @@ flowchart LR
|
||||
223["Sweep Revolve<br>[1502, 1531, 6]"]
|
||||
%% Missing NodePath
|
||||
224[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
225[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
226[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
227[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
228[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
229[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
230[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
231[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
232[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
233[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
234[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
235[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
236[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
237[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
238[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
239[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
240[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
241[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
242[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
243[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
244[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
245[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
246[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
247[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
248[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
249[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
250[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
251[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
252[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
253[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
254[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
255[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
256[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
257[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
258[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
259[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
260[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
261[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
262[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
263[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
264[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
265[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
266[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
267[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
268[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
269[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
270[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
271[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
272[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
273[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
274[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
275[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
276[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
277[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
278[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
279[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
280[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
281[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
282[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
283[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
284[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
285[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
286[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
287[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
288[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
289[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
290[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
291[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
292[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
293[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
294[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
295[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
296[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
297[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
298[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
299[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
300[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
301[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
302[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
303[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
304[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
305[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
306[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
307[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
308[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
309[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
310[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
311[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
312[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
313[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
314[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
315[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
316[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
317[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
318[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
319[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
320[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
321[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
322[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
323["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
324["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
325["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
326["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
327["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
328["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
329["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
330["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
331["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
332["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
333["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
334["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
335["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
336["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
337["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
338["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
339["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
340["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
341["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
342["SweepEdge Opposite"]
|
||||
343["SweepEdge Opposite"]
|
||||
344["SweepEdge Opposite"]
|
||||
|
@ -101,14 +101,23 @@ flowchart LR
|
||||
47["Sweep Extrusion<br>[2963, 3001, 0]"]
|
||||
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||
48[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
49[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
50[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
51[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
52[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
53["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
54["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
55["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
56["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
57["SweepEdge Opposite"]
|
||||
58["SweepEdge Opposite"]
|
||||
59["SweepEdge Opposite"]
|
||||
|
@ -115,41 +115,77 @@ flowchart LR
|
||||
54["Sweep Extrusion<br>[1221, 1252, 0]"]
|
||||
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 7 }]
|
||||
55[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
56[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
57[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
58[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
59[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
60[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
61[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
62[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
63[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
64[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
65[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
66[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
67[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
68[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
69[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
70[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
71[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
72[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
73[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
74[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
75[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
76[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
77[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
78[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
79["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
80["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
81["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
82["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
83["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
84["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
85["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
86["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
87["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
88["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
89["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
90["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
91["SweepEdge Opposite"]
|
||||
92["SweepEdge Opposite"]
|
||||
93["SweepEdge Opposite"]
|
||||
|
@ -190,43 +190,81 @@ flowchart LR
|
||||
87["CompositeSolid Subtract<br>[3031, 3058, 0]"]
|
||||
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||
88[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
89[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
90[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
91[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
92[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
93[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
94[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
95[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
96[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
97[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
98[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
99[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
100[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
101[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
102[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
103[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
104[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
105[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
106[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
107[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
108[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
109[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
110[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
111[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
112["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
113["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
114["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
115["Cap Start"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
116["Cap Start"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
117["Cap Start"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
118["Cap Start"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
119["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
120["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
121["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
122["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
123["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
124["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
125["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
126["SweepEdge Opposite"]
|
||||
127["SweepEdge Opposite"]
|
||||
128["SweepEdge Opposite"]
|
||||
|
@ -57,17 +57,29 @@ flowchart LR
|
||||
26["Sweep Extrusion<br>[1734, 1767, 0]"]
|
||||
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ExpressionStatementExpr, PipeBodyItem { index: 2 }]
|
||||
27[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
28[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
29[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
30[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
31[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
32[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
33[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
34[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
35[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
36[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
37["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
38["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ExpressionStatementExpr, PipeBodyItem { index: 0 }]
|
||||
39["SweepEdge Opposite"]
|
||||
40["SweepEdge Opposite"]
|
||||
41["SweepEdge Opposite"]
|
||||
|
@ -81,13 +81,21 @@ flowchart LR
|
||||
37["Sweep Loft<br>[1483, 1572, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
38[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
39[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
40[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
41[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
42[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
43[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
44["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
45["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
46["SweepEdge Opposite"]
|
||||
47["SweepEdge Opposite"]
|
||||
48["SweepEdge Opposite"]
|
||||
|
@ -227,77 +227,149 @@ flowchart LR
|
||||
107["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
||||
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg]
|
||||
108[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
109[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
110[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
111[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
112[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
113[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
114[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
115[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
116[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
117[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
118[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
119[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
120[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
121[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
122[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
123[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
124[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
125[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
126[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
127[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
128[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
129[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
130[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
131[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
132[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
133[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
134[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
135[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
136[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
137[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
138[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
139[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
140[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
141[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
142[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
143[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
144[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
145[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
146[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
147[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
148[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
149[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
150[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
151[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
152[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
153[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
154[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
155[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
156["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
157["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
158["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
159["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
160["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
161["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
162["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
163["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
164["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
165["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
166["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
167["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
168["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
169["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
170["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
171["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
172["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
173["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
174["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
175["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
176["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
177["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
178["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
179["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
180["SweepEdge Opposite"]
|
||||
181["SweepEdge Opposite"]
|
||||
182["SweepEdge Opposite"]
|
||||
|
@ -186,35 +186,65 @@ flowchart LR
|
||||
83["Sweep Extrusion<br>[5333, 5375, 0]"]
|
||||
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
84[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
85[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
86[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
87[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
88[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
89[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
90[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
91[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
92[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
93[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
94[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
95[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
96[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
97[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
98[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
99[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
100["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
101["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
102["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
103["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
104["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
105["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
106["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
107["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
108["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
109["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
110["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
111["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
112["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
113["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
114["SweepEdge Opposite"]
|
||||
115["SweepEdge Opposite"]
|
||||
116["SweepEdge Opposite"]
|
||||
|
@ -236,35 +236,65 @@ flowchart LR
|
||||
105["Sweep Extrusion<br>[3955, 3984, 0]"]
|
||||
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 27 }]
|
||||
106[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
107[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
108[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
109[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
110[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
111[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
112[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
113[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
114[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
115[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
116[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
117[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
118[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
119[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
120[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
121[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
122[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
123[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
124[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
125[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
126["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
127["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
128["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
129["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
130["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
131["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
132["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
133["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
134["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
135["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
136["SweepEdge Opposite"]
|
||||
137["SweepEdge Opposite"]
|
||||
138["SweepEdge Opposite"]
|
||||
|
@ -54,13 +54,21 @@ flowchart LR
|
||||
24["Sweep Extrusion<br>[1891, 1966, 0]"]
|
||||
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||
25[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
26[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
27[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
28[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
29["Cap Start"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
30["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
31["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
32["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
33["SweepEdge Opposite"]
|
||||
34["SweepEdge Opposite"]
|
||||
35["SweepEdge Opposite"]
|
||||
|
@ -106,38 +106,71 @@ flowchart LR
|
||||
49["Sweep Extrusion<br>[4205, 4233, 0]"]
|
||||
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
50[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
51[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
52[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
53[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
54[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
55[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
56[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
57[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
58[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
59[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
60[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
61[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
62[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
63[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
64[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
65[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
66[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
67[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
68[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
69[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
70[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
71[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
72[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
73["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
74["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
75["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
76["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
77["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
78["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
79["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
80["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
81["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
82["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
83["SweepEdge Opposite"]
|
||||
84["SweepEdge Opposite"]
|
||||
85["SweepEdge Opposite"]
|
||||
|
@ -136,35 +136,65 @@ flowchart LR
|
||||
64["Sweep Extrusion<br>[4812, 4862, 0]"]
|
||||
%% [ProgramBodyItem { index: 29 }, ExpressionStatementExpr]
|
||||
65[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
66[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
67[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
68[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
69[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
70[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
71[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
72[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
73[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
74[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
75[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
76[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
77[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
78[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
79[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
80[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
81[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
82[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
83[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
84[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
85[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
86[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
87[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
88[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
89["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
90["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
91["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
92["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
93["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
94["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
95["SweepEdge Opposite"]
|
||||
96["SweepEdge Opposite"]
|
||||
97["SweepEdge Opposite"]
|
||||
|
@ -280,75 +280,145 @@ flowchart LR
|
||||
133["Sweep Extrusion<br>[5840, 5885, 0]"]
|
||||
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
134[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
135[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
136[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
137[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
138[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
139[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
140[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
141[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
142[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
143[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
144[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
145[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
146[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
147[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
148[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
149[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
150[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
151[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
152[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
153[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
154[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
155[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
156[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
157[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
158[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
159[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
160[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
161[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
162[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
163[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
164[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
165[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
166[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
167[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
168[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
169[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
170[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
171[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
172[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
173[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
174[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
175[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
176[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
177[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
178[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
179[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
180[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
181[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
182[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
183[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
184[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
185[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
186[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
187[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
188[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
189[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
190[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
191[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
192[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
193[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
194["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
195["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
196["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
197["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
198["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
199["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
200["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
201["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
202["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
203["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
204["SweepEdge Opposite"]
|
||||
205["SweepEdge Opposite"]
|
||||
206["SweepEdge Opposite"]
|
||||
|
@ -77,33 +77,61 @@ flowchart LR
|
||||
36["Sweep Extrusion<br>[2098, 2121, 0]"]
|
||||
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
37[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
38[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
39[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
40[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
41[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
42[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
43[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
44[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
45[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
46[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
47[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
48[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
49[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
50[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
51[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
52[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
53[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
54[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
55[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
56[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
57["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
58["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
59["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
60["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
61["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
62["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
63["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
64["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
65["SweepEdge Opposite"]
|
||||
66["SweepEdge Opposite"]
|
||||
67["SweepEdge Opposite"]
|
||||
|
@ -170,31 +170,57 @@ flowchart LR
|
||||
81["Sweep Extrusion<br>[5701, 5752, 0]"]
|
||||
%% [ProgramBodyItem { index: 26 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
82[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
83[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
84[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
85[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
86[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
87[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
88[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
89[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
90[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
91[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
92[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
93[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
94[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
95[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
96[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
97[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
98[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
99[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
100["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
101["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
102["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
103["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
104["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
105["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
106["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
107["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
108["SweepEdge Opposite"]
|
||||
109["SweepEdge Opposite"]
|
||||
110["SweepEdge Opposite"]
|
||||
|
@ -43,19 +43,33 @@ flowchart LR
|
||||
20["Sweep Revolve<br>[1594, 1676, 0]"]
|
||||
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
21[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
22[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
23[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
24[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
25[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
26[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
27[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
28[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
29[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
30[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
31["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
32["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
33["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
34["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
35["SweepEdge Opposite"]
|
||||
36["SweepEdge Opposite"]
|
||||
37["SweepEdge Opposite"]
|
||||
|
@ -200,73 +200,141 @@ flowchart LR
|
||||
95["Sweep Revolve<br>[7771, 7825, 0]"]
|
||||
%% [ProgramBodyItem { index: 45 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
96[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
97[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
98[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
99[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
100[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
101[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
102[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
103[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
104[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
105[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
106[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
107[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
108[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
109[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
110[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
111[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
112[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
113[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
114[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
115[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
116[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
117[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
118[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
119[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
120[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
121[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
122[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
123[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
124[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
125[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
126[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
127[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
128[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
129[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
130[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
131[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
132[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
133[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
134[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
135[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
136[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
137[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
138[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
139[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
140[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
141[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
142[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
143[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
144[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
145[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
146[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
147["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
148["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
149["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
150["Cap Start"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 30 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
151["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
152["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
153["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
154["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
155["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
156["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
157["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
158["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
159["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
160["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
161["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
162["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
163["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
164["SweepEdge Opposite"]
|
||||
165["SweepEdge Opposite"]
|
||||
166["SweepEdge Opposite"]
|
||||
|
@ -100,33 +100,61 @@ flowchart LR
|
||||
47["Sweep Extrusion<br>[4654, 4698, 0]"]
|
||||
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
48[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
49[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
50[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
51[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
52[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
53[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
54[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
55[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
56[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
57[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
58[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
59[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
60[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
61[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
62[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
63[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
64[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
65[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
66[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
67["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
68["Cap Start"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
69["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
70["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
71["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
72["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
73["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
74["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
75["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
76["SweepEdge Opposite"]
|
||||
77["SweepEdge Opposite"]
|
||||
78["SweepEdge Opposite"]
|
||||
|
@ -188,68 +188,131 @@ flowchart LR
|
||||
90["CompositeSolid Union<br>[3633, 3668, 0]"]
|
||||
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
91[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
92[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
93[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
94[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
95[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
96[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
97[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
98[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
99[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
100[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
101[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
102[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
103[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
104[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
105[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
106[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
107[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
108[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
109[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
110[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
111[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
112[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
113[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
114[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
115[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
116[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
117[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
118[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
119[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
120[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
121[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
122[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
123[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
124[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
125[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
126[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
127[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
128[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
129[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
130[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
131[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
132[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
133[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
134[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
135[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
136[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
137[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
138[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
139[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
140[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
141[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
142["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
143["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
144["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
145["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
146["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
147["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
148["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
149["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
150["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
151["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
152["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
153["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
154["SweepEdge Opposite"]
|
||||
155["SweepEdge Opposite"]
|
||||
156["SweepEdge Opposite"]
|
||||
|
@ -71,11 +71,17 @@ flowchart LR
|
||||
33["Sweep Loft<br>[3337, 3404, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
34[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
35[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
36[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
37[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
38["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
39["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
40["SweepEdge Opposite"]
|
||||
41["SweepEdge Opposite"]
|
||||
42["SweepEdge Opposite"]
|
||||
|
@ -231,20 +231,35 @@ flowchart LR
|
||||
108["Sweep Loft<br>[6125, 6192, 0]"]
|
||||
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
109[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
110[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
111[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
112[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
113[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
114[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
115[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
116[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
117[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
118["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
119["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
120["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
121["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
122["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
123["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
124["SweepEdge Opposite"]
|
||||
125["SweepEdge Opposite"]
|
||||
126["SweepEdge Opposite"]
|
||||
|
@ -188,40 +188,75 @@ flowchart LR
|
||||
88["CompositeSolid Union<br>[2305, 2334, 0]"]
|
||||
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
89[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
90[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
91[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
92[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
93[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
94[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
95[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
96[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
97[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
98[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
99[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
100[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
101[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
102[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
103[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
104[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
105[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
106[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
107[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
108[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
109[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
110[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
111[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
112["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
113["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
114["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
115["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
116["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
117["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
118["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
119["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
120["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
121["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
122["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
123["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
124["SweepEdge Opposite"]
|
||||
125["SweepEdge Opposite"]
|
||||
126["SweepEdge Opposite"]
|
||||
|
@ -55,11 +55,17 @@ flowchart LR
|
||||
25["Sweep Loft<br>[2816, 2917, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
26[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
27[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
28[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
29[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
30["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
31["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
32["SweepEdge Opposite"]
|
||||
33["SweepEdge Opposite"]
|
||||
34["SweepEdge Opposite"]
|
||||
|
@ -171,20 +171,35 @@ flowchart LR
|
||||
79["Sweep Loft<br>[5671, 5772, 0]"]
|
||||
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
80[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
81[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
82[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
83[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
84[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
85[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
86[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
87[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
88[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
89["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
90["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
91["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
92["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
93["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
94["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
95["SweepEdge Opposite"]
|
||||
96["SweepEdge Opposite"]
|
||||
97["SweepEdge Opposite"]
|
||||
|
@ -29,13 +29,21 @@ flowchart LR
|
||||
13["Sweep Extrusion<br>[1003, 1024, 0]"]
|
||||
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||
14[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
16[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
17[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
18[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
19[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
20["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
21["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
22["SweepEdge Opposite"]
|
||||
23["SweepEdge Opposite"]
|
||||
24["SweepEdge Opposite"]
|
||||
|
@ -734,271 +734,537 @@ flowchart LR
|
||||
351["Sweep Extrusion<br>[8182, 8206, 0]"]
|
||||
%% [ProgramBodyItem { index: 44 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
352[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
353[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
354[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
355[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
356[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
357[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
358[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
359[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
360[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
361[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
362[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
363[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
364[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
365[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
366[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
367[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
368[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
369[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
370[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
371[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
372[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
373[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
374[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
375[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
376[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
377[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
378[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
379[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
380[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
381[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
382[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
383[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
384[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
385[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
386[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
387[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
388[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
389[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
390[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
391[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
392[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
393[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
394[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
395[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
396[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
397[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
398[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
399[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
400[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
401[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
402[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
403[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
404[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
405[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
406[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
407[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
408[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
409[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
410[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
411[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
412[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
413[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
414[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
415[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
416[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
417[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
418[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
419[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
420[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
421[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
422[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
423[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
424[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
425[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
426[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
427[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
428[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
429[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
430[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
431[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
432[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
433[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
434[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
435[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
436[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
437[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
438[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
439[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
440[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
441[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
442[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
443[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
444[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
445[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
446[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
447[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
448[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
449[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
450[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
451[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
452[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
453[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
454[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
455[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
456[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
457[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
458[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
459[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
460[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
461[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
462[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
463[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
464[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
465[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
466[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
467[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
468[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
469[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
470[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
471[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
472[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
473[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
474[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
475[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
476[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
477[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
478[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
479[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
480[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
481[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
482[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
483[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
484[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
485[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
486[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
487[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
488[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
489[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
490[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
491[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
492[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
493[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
494[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
495[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
496[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
497[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
498[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
499[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
500[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
501[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
502[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
503[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
504[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
505[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
506[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
507[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
508[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
509[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
510[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
511[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
512[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
513[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
514[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
515[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
516[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
517[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
518[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
519[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
520[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
521[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
522[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
523[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
524[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
525[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
526[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
527[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
528[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
529[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
530[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
531[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
532[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
533[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
534[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
535[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
536[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
537[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
538[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
539[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
540[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
541[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
542[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
543[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
544[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
545[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
546[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
547[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
548[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
549[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
550[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
551[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
552[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
553[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
554[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
555[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
556[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
557[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
558[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
559[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
560["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
561["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
562["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
563["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
564["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
565["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
566["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
567["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
568["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
569["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
570["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
571["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
572["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
573["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
574["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
575["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
576["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
577["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
578["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
579["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
580["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
581["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
582["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
583["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
584["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
585["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
586["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
587["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
588["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
589["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
590["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
591["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
592["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
593["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
594["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
595["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
596["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
597["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
598["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
599["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
600["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
601["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
602["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
603["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
604["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
605["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
606["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
607["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
608["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
609["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
610["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
611["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
612["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
613["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
614["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
615["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
616["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
617["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
618["SweepEdge Opposite"]
|
||||
619["SweepEdge Opposite"]
|
||||
620["SweepEdge Opposite"]
|
||||
|
@ -850,239 +850,473 @@ flowchart LR
|
||||
403["Sweep Extrusion<br>[8122, 8167, 0]"]
|
||||
%% [ProgramBodyItem { index: 66 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
404[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
405[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
406[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
407[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
408[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
409[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
410[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
411[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
412[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
413[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
414[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
415[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
416[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
417[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
418[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
419[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
420[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
421[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
422[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
423[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
424[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
425[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
426[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
427[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
428[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
429[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
430[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
431[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
432[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
433[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
434[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
435[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
436[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
437[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
438[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
439[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
440[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
441[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
442[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
443[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
444[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
445[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
446[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
447[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
448[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
449[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
450[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
451[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
452[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
453[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
454[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
455[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
456[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
457[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
458[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
459[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
460[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
461[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
462[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
463[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
464[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
465[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
466[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
467[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
468[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
469[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
470[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
471[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
472[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
473[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
474[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
475[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
476[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
477[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
478[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
479[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
480[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
481[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
482[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
483[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
484[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
485[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
486[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
487[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
488[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
489[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
490[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
491[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
492[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
493[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
494[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
495[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
496[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
497[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
498[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
499[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
500[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
501[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
502[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
503[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
504[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
505[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
506[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
507[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
508[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
509[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
510[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
511[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
512[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
513[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
514[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
515[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
516[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
517[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
518[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
519[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
520[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
521[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
522[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
523[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
524[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
525[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
526[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
527[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
528[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
529[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
530[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
531[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
532[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
533[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
534[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
535[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
536[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
537[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
538[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
539[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
540[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
541[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
542[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
543[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
544[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
545[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
546[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
547[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
548[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
549[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
550[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
551[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
552[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
553[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
554[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
555[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
556[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
557[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
558[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
559[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
560[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
561[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
562[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
563[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
564[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
565[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
566[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
567[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
568[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
569[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
570[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
571[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
572[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
573[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
574[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
575[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
576[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
577[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
578[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
579[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
580[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
581[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
582[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
583[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
584[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
585[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
586[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
587[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
588[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
589[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
590[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
591[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
592["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
593["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
594["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
595["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
596["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
597["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
598["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
599["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
600["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
601["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
602["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
603["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
604["Cap Start"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
605["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
606["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
607["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
608["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
609["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
610["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
611["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
612["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
613["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
614["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
615["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
616["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
617["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
618["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
619["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
620["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
621["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
622["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
623["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
624["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
625["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
626["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
627["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
628["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
629["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
630["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
631["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
632["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
633["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
634["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
635["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
636["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
637["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
638["SweepEdge Opposite"]
|
||||
639["SweepEdge Opposite"]
|
||||
640["SweepEdge Opposite"]
|
||||
|
@ -69,20 +69,35 @@ flowchart LR
|
||||
32["Sweep Extrusion<br>[2583, 2611, 0]"]
|
||||
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||
33[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
34[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
35[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
36[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
37[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
38[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
39[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
40[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
41[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
42[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
43["Cap Start"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
44["Cap Start"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
45["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
46["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
47["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
48["SweepEdge Opposite"]
|
||||
49["SweepEdge Opposite"]
|
||||
50["SweepEdge Opposite"]
|
||||
|
@ -144,41 +144,77 @@ flowchart LR
|
||||
66["Sweep Extrusion<br>[2381, 2404, 0]"]
|
||||
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
67[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
68[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
69[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
70[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
71[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
72[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
73[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
74[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
75[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
76[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
77[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
78[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
79[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
80[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
81["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
82["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
83["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
84["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
85["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
86["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
87["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
88["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
89["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
90["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
91["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
92["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
93["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
94["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
95["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
96["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
97["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
98["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
99["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
100["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
101["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
102["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
103["SweepEdge Opposite"]
|
||||
104["SweepEdge Opposite"]
|
||||
105["SweepEdge Opposite"]
|
||||
|
@ -53,11 +53,17 @@ flowchart LR
|
||||
23["Sweep Extrusion<br>[1889, 1921, 0]"]
|
||||
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
24[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
25[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
26[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
27[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
28["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
29["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
30["SweepEdge Opposite"]
|
||||
31["SweepEdge Opposite"]
|
||||
32["SweepEdge Opposite"]
|
||||
|
@ -350,88 +350,171 @@ flowchart LR
|
||||
162["Sweep Extrusion<br>[4495, 4528, 5]"]
|
||||
%% Missing NodePath
|
||||
163[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
164[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
165[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
166[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
167[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
168[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
169[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
170[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
171[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
172[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
173[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
174[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
175[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
176[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
177[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
178[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
179[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
180[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
181[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
182[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
183[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
184[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
185[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
186[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
187[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
188[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
189[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
190[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
191[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
192[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
193[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
194[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
195[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
196[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
197[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
198[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
199[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
200[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
201[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
202[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
203[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
204[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
205[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
206[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
207[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
208[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
209[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
210[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
211[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
212["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
213["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
214["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
215["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
216["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
217["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
218["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
219["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
220["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
221["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
222["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
223["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
224["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
225["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
226["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
227["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
228["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
229["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
230["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
231["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
232["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
233["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
234["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
235["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
236["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
237["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
238["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
239["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
240["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
241["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
242["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
243["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
244["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
245["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
246["SweepEdge Opposite"]
|
||||
247["SweepEdge Opposite"]
|
||||
248["SweepEdge Opposite"]
|
||||
|
@ -196,50 +196,95 @@ flowchart LR
|
||||
90["Sweep Extrusion<br>[2173, 2225, 3]"]
|
||||
%% Missing NodePath
|
||||
91[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
92[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
93[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
94[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
95[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
96[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
97[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
98[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
99[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
100[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
101[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
102[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
103[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
104[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
105[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
106[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
107[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
108[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
109[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
110[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
111[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
112[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
113[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
114[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
115[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
116[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
117[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
118[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
119[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
120[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
121[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
122[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
123[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
124[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
125[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
126[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
127[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
128["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
129["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
130["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
131["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
132["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
133["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
134["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
135["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
136["SweepEdge Opposite"]
|
||||
137["SweepEdge Opposite"]
|
||||
138["SweepEdge Opposite"]
|
||||
|
@ -268,58 +268,111 @@ flowchart LR
|
||||
122["Sweep Extrusion<br>[608, 640, 7]"]
|
||||
%% Missing NodePath
|
||||
123[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
124[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
125[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
126[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
127[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
128[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
129[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
130[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
131[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
132[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
133[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
134[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
135[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
136[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
137[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
138[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
139[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
140[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
141[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
142[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
143[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
144[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
145[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
146[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
147[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
148[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
149[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
150[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
151[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
152[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
153[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
154["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
155["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
156["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
157["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
158["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
159["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
160["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
161["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
162["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
163["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
164["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
165["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
166["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
167["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
168["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
169["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
170["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
171["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
172["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
173["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
174["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
175["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
176["SweepEdge Opposite"]
|
||||
177["SweepEdge Opposite"]
|
||||
178["SweepEdge Opposite"]
|
||||
|
@ -19,8 +19,11 @@ flowchart LR
|
||||
8["Sweep Revolve<br>[803, 852, 0]"]
|
||||
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
9[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
10["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12["SweepEdge Opposite"]
|
||||
13["SweepEdge Adjacent"]
|
||||
1 --- 2
|
||||
|
@ -23,9 +23,13 @@ flowchart LR
|
||||
10["Sweep Extrusion<br>[514, 546, 0]"]
|
||||
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
15["SweepEdge Opposite"]
|
||||
16["SweepEdge Opposite"]
|
||||
17["SweepEdge Adjacent"]
|
||||
|
@ -191,79 +191,153 @@ flowchart LR
|
||||
91["Sweep Extrusion<br>[4519, 4551, 0]"]
|
||||
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
92[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
93[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
94[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
95[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
96[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
97[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
98[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
99[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
100[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
101[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
102[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
103[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
104[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
105[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
106[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
107[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
108[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
109[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
110[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
111[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
112[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
113[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
114[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
115[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
116[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
117[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
118[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
119[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
120[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
121[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
122[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
123[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
124[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
125[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
126[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
127[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
128[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
129[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
130[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
131[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
132[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
133[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
134[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
135[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
136[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
137[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
138[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
139[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
140[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
141[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
142[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
143[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
144[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
145[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
146[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
147[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
148[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
149[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
150[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
151["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
152["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
153["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
154["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
155["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
156["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
157["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
158["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
159["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
160["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
161["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
162["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
163["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
164["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
165["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
166["SweepEdge Opposite"]
|
||||
167["SweepEdge Opposite"]
|
||||
168["SweepEdge Opposite"]
|
||||
|
@ -192,31 +192,57 @@ flowchart LR
|
||||
91["Sweep Revolve<br>[5267, 5297, 0]"]
|
||||
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||
92[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
93[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
94[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
95[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
96[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
97[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
98[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
99[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
100[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
101[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
102[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
103[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
104[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
105[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
106[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
107[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
108[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
109[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
110[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
111[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
112[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
113[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
114[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
115[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
116["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
117["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
118["SweepEdge Opposite"]
|
||||
119["SweepEdge Opposite"]
|
||||
120["SweepEdge Opposite"]
|
||||
|
@ -109,44 +109,83 @@ flowchart LR
|
||||
52["Sweep Extrusion<br>[3591, 3621, 0]"]
|
||||
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
53[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
54[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
55[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
56[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
57[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
58[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
59[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
60[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
61[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
62[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
63[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
64[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
65[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
66[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
67[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
68[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
69[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
70[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
71[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
72[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
73[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
74[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
75[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
76[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
77[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
78[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
79[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
80[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
81[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
82[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
83[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
84["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
85["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
86["Cap Start"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
87["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
88["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
89["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
90["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
91["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
92["SweepEdge Opposite"]
|
||||
93["SweepEdge Opposite"]
|
||||
94["SweepEdge Opposite"]
|
||||
|
@ -74,30 +74,55 @@ flowchart LR
|
||||
35["Sweep Extrusion<br>[2527, 2559, 0]"]
|
||||
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
36[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
37[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
38[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
39[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
40[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
41[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
42[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
43[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
44[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
45[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
46[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
47[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
48[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
49[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
50[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
51[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
52[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
53[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
54[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
55["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
56["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
57["Cap Start"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
58["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
59["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
60["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
61["SweepEdge Opposite"]
|
||||
62["SweepEdge Opposite"]
|
||||
63["SweepEdge Opposite"]
|
||||
|
@ -110,31 +110,57 @@ flowchart LR
|
||||
52["Sweep Extrusion<br>[4351, 4379, 0]"]
|
||||
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||
53[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
54[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
55[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
56[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
57[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
58[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
59[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
60[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
61[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
62[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
63[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
64[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
65[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
66[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
67[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
68[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
69[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
70[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
71[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
72[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
73[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
74[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
75[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
76[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
77["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
78["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
79["SweepEdge Opposite"]
|
||||
80["SweepEdge Opposite"]
|
||||
81["SweepEdge Opposite"]
|
||||
|
@ -44,17 +44,29 @@ flowchart LR
|
||||
20["Sweep Extrusion<br>[1537, 1565, 0]"]
|
||||
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||
21[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
22[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
23[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
24[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
25[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
26[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
27[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
28[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
29["Cap Start"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
30["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
31["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
32["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
33["SweepEdge Opposite"]
|
||||
34["SweepEdge Opposite"]
|
||||
35["SweepEdge Opposite"]
|
||||
|
@ -39,11 +39,17 @@ flowchart LR
|
||||
18["Sweep Extrusion<br>[2697, 2725, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||
19[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
20[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
21[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
22[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
23["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
24["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
25["SweepEdge Opposite"]
|
||||
26["SweepEdge Opposite"]
|
||||
27["SweepEdge Opposite"]
|
||||
|
@ -53,17 +53,29 @@ flowchart LR
|
||||
24["Sweep Extrusion<br>[1745, 1773, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||
25[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
26[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
27[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
28[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
29[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
30[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
31[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
32[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
33["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
34["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
35["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
36["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
37["SweepEdge Opposite"]
|
||||
38["SweepEdge Opposite"]
|
||||
39["SweepEdge Opposite"]
|
||||
|
@ -166,39 +166,73 @@ flowchart LR
|
||||
76["CompositeSolid Union<br>[1688, 1715, 0]"]
|
||||
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwArg { index: 0 }]
|
||||
77[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
78[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
79[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
80[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
81[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
82[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
83[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
84[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
85[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
86[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
87[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
88[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
89[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
90[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
91[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
92[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
93[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
94[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
95["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
96["Cap Start"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
97["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
98["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
99["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
100["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
101["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
102["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
103["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
104["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
105["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
106["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
107["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
108["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
109["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
110["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
111["SweepEdge Opposite"]
|
||||
112["SweepEdge Opposite"]
|
||||
113["SweepEdge Opposite"]
|
||||
|
@ -218,47 +218,89 @@ flowchart LR
|
||||
99["Sweep Extrusion<br>[1364, 1416, 0]"]
|
||||
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||
100[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
101[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
102[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
103[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
104[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
105[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
106[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
107[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
108[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
109[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
110[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
111[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
112[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
113[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
114[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
115[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
116[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
117[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
118[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
119[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
120[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
121[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
122["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
123["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
124["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
125["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
126["Cap Start"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
127["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
128["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
129["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
130["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
131["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
132["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
133["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
134["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
135["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
136["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
137["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
138["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
139["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
140["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
141["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
142["SweepEdge Opposite"]
|
||||
143["SweepEdge Opposite"]
|
||||
144["SweepEdge Opposite"]
|
||||
|
@ -315,84 +315,163 @@ flowchart LR
|
||||
148["Sweep Sweep<br>[8740, 8793, 0]"]
|
||||
%% [ProgramBodyItem { index: 69 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
149[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
150[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
151[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
152[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
153[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
154[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
155[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
156[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
157[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
158[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
159[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
160[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
161[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
162[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
163[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
164[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
165[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
166[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
167[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
168[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
169[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
170[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
171[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
172[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
173[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
174[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
175[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
176[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
177[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
178[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
179[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
180[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
181[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
182[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
183[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
184[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
185[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
186[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
187[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
188[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
189[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
190[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
191[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
192[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
193[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
194[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
195[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
196[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
197[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
198["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
199["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
200["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
201["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
202["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
203["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
204["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
205["Cap Start"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 38 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
206["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
207["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
208["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
209["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
210["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
211["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
212["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
213["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
214["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
215["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
216["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
217["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
218["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
219["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
220["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
221["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
222["Cap End"]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 40 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
223["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
224["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
225["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
226["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
227["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
228["SweepEdge Opposite"]
|
||||
229["SweepEdge Opposite"]
|
||||
230["SweepEdge Opposite"]
|
||||
|
@ -349,79 +349,153 @@ flowchart LR
|
||||
164["Sweep Extrusion<br>[652, 699, 8]"]
|
||||
%% Missing NodePath
|
||||
165[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
166[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
167[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
168[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
169[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
170[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
171[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
172[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
173[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
174[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
175[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
176[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
177[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
178[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
179[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
180[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
181[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
182[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
183[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
184[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
185[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
186[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
187[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
188[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
189[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
190[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
191[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
192[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
193[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
194[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
195[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
196[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
197[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
198[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
199[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
200[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
201[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
202[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
203[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
204[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
205[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
206[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
207[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
208[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
209[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
210[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
211[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
212[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
213[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
214[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
215[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
216[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
217[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
218["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
219["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
220["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
221["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
222["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
223["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
224["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
225["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
226["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
227["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
228["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
229["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
230["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
231["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
232["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
233["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
234["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
235["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
236["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
237["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
238["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
239["SweepEdge Opposite"]
|
||||
240["SweepEdge Opposite"]
|
||||
241["SweepEdge Opposite"]
|
||||
|
@ -19,8 +19,11 @@ flowchart LR
|
||||
8["Sweep Extrusion<br>[878, 922, 0]"]
|
||||
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
9[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
10["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12["SweepEdge Opposite"]
|
||||
13["SweepEdge Adjacent"]
|
||||
1 --- 2
|
||||
|
@ -211,65 +211,125 @@ flowchart LR
|
||||
100["Sweep Extrusion<br>[5452, 5473, 0]"]
|
||||
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 12 }]
|
||||
101[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
102[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
103[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
104[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
105[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
106[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
107[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
108[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
109[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
110[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
111[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
112[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
113[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
114[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
115[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
116[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
117[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
118[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
119[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
120[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
121[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
122[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
123[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
124[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
125[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
126[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
127[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
128[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
129[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
130[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
131[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
132[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
133[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
134[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
135[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
136[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
137[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
138[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
139[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
140[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
141[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
142[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
143[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
144[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
145[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
146[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
147[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
148[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
149[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
150[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
151[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
152[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
153[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
154[Wall]
|
||||
%% face_code_ref=[ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||
155["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
156["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
157["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
158["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
159["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
160["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
161["SweepEdge Opposite"]
|
||||
162["SweepEdge Opposite"]
|
||||
163["SweepEdge Opposite"]
|
||||
|
@ -574,288 +574,571 @@ flowchart LR
|
||||
286["Sweep Extrusion<br>[18401, 18420, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 284 }]
|
||||
287[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
288[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
289[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
290[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
291[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
292[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
293[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
294[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
295[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
296[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
297[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
298[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
299[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
300[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
301[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
302[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
303[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
304[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
305[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
306[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
307[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
308[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
309[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
310[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
311[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
312[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
313[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
314[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
315[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
316[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
317[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
318[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
319[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
320[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
321[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
322[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
323[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
324[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
325[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
326[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
327[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
328[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
329[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
330[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
331[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
332[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
333[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
334[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
335[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
336[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
337[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
338[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
339[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
340[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
341[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
342[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
343[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
344[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
345[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
346[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
347[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
348[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
349[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
350[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
351[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
352[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
353[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
354[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
355[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
356[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
357[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
358[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
359[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
360[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
361[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
362[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
363[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
364[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
365[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
366[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
367[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
368[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
369[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
370[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
371[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
372[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
373[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
374[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
375[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
376[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
377[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
378[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
379[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
380[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
381[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
382[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
383[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
384[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
385[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
386[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
387[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
388[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
389[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
390[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
391[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
392[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
393[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
394[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
395[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
396[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
397[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
398[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
399[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
400[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
401[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
402[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
403[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
404[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
405[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
406[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
407[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
408[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
409[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
410[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
411[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
412[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
413[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
414[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
415[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
416[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
417[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
418[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
419[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
420[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
421[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
422[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
423[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
424[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
425[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
426[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
427[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
428[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
429[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
430[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
431[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
432[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
433[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
434[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
435[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
436[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
437[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
438[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
439[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
440[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
441[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
442[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
443[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
444[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
445[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
446[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
447[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
448[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
449[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
450[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
451[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
452[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
453[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
454[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
455[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
456[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
457[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
458[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
459[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
460[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
461[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
462[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
463[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
464[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
465[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
466[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
467[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
468[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
469[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
470[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
471[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
472[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
473[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
474[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
475[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
476[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
477[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
478[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
479[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
480[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
481[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
482[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
483[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
484[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
485[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
486[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
487[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
488[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
489[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
490[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
491[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
492[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
493[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
494[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
495[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
496[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
497[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
498[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
499[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
500[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
501[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
502[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
503[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
504[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
505[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
506[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
507[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
508[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
509[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
510[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
511[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
512[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
513[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
514[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
515[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
516[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
517[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
518[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
519[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
520[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
521[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
522[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
523[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
524[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
525[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
526[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
527[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
528[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
529[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
530[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
531[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
532[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
533[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
534[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
535[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
536[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
537[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
538[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
539[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
540[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
541[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
542[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
543[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
544[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
545[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
546[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
547[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
548[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
549[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
550[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
551[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
552[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
553[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
554[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
555[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
556[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
557[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
558[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
559[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
560[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
561[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
562[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
563[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
564[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
565[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
566[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
567[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
568["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
569["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
570["SweepEdge Opposite"]
|
||||
571["SweepEdge Opposite"]
|
||||
572["SweepEdge Opposite"]
|
||||
|
@ -18,11 +18,17 @@ flowchart LR
|
||||
8["Sweep Extrusion<br>[157, 176, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
9[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
10[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15["SweepEdge Opposite"]
|
||||
16["SweepEdge Opposite"]
|
||||
17["SweepEdge Opposite"]
|
||||
|
@ -110,57 +110,109 @@ flowchart LR
|
||||
54["Sweep Extrusion<br>[1122, 1160, 0]"]
|
||||
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
55[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
56[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
57[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
58[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
59[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
60[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
61[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
62[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
63[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
64[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
65[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
66[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
67[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
68[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
69[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
70[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
71[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
72[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
73[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
74[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
75[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
76[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
77[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
78[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
79[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
80[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
81[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
82[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
83[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
84[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
85[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
86[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
87[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
88[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
89[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
90[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
91[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
92[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
93[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
94[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
95[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
96[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
97[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
98[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
99[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
100[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
101[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
102[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
103[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
104[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
105["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
106["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
107["SweepEdge Opposite"]
|
||||
108["SweepEdge Opposite"]
|
||||
109["SweepEdge Opposite"]
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -20,11 +20,17 @@ flowchart LR
|
||||
9["Sweep Extrusion<br>[219, 238, 1]"]
|
||||
%% Missing NodePath
|
||||
10[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
16["SweepEdge Opposite"]
|
||||
17["SweepEdge Opposite"]
|
||||
18["SweepEdge Opposite"]
|
||||
|
@ -24,11 +24,17 @@ flowchart LR
|
||||
10["Sweep Extrusion<br>[276, 295, 0]"]
|
||||
%% [ProgramBodyItem { index: 1 }, ExpressionStatementExpr, PipeBodyItem { index: 3 }]
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
16["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
17["SweepEdge Opposite"]
|
||||
18["SweepEdge Opposite"]
|
||||
19["SweepEdge Opposite"]
|
||||
|
@ -16,10 +16,15 @@ flowchart LR
|
||||
7["Sweep Extrusion<br>[149, 172, 0]"]
|
||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||
8[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
9[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
10[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13["SweepEdge Opposite"]
|
||||
14["SweepEdge Opposite"]
|
||||
15["SweepEdge Opposite"]
|
||||
|
@ -35,17 +35,29 @@ flowchart LR
|
||||
16["Sweep Extrusion<br>[712, 777, 0]"]
|
||||
%% [ProgramBodyItem { index: 6 }, ExpressionStatementExpr]
|
||||
17[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
18[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
19[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
20[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
21[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
22[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
23[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
24[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
25["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
26["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
27["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
28["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
29["SweepEdge Opposite"]
|
||||
30["SweepEdge Opposite"]
|
||||
31["SweepEdge Opposite"]
|
||||
|
@ -20,11 +20,17 @@ flowchart LR
|
||||
9["Sweep Extrusion<br>[806, 924, 0]"]
|
||||
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||
10[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
16["SweepEdge Opposite"]
|
||||
17["SweepEdge Opposite"]
|
||||
18["SweepEdge Opposite"]
|
||||
|
@ -22,13 +22,21 @@ flowchart LR
|
||||
10["Sweep Extrusion<br>[463, 486, 0]"]
|
||||
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||
11[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
12[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
13[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
16[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
17["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
18["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
19["SweepEdge Opposite"]
|
||||
20["SweepEdge Opposite"]
|
||||
21["SweepEdge Opposite"]
|
||||
|
@ -26,15 +26,25 @@ flowchart LR
|
||||
12["Sweep Extrusion<br>[587, 610, 0]"]
|
||||
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }]
|
||||
13[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
14[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
15[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
16[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
17[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
18[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
19[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
20[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
21["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
22["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
23["SweepEdge Opposite"]
|
||||
24["SweepEdge Opposite"]
|
||||
25["SweepEdge Opposite"]
|
||||
|
@ -47,17 +47,29 @@ flowchart LR
|
||||
22["Sweep Extrusion<br>[342, 376, 1]"]
|
||||
%% Missing NodePath
|
||||
23[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
24[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
25[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
26[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
27[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
28[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
29[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
30[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
31["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
32["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
33["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
34["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
35["SweepEdge Opposite"]
|
||||
36["SweepEdge Opposite"]
|
||||
37["SweepEdge Opposite"]
|
||||
|
@ -60,27 +60,49 @@ flowchart LR
|
||||
28["Sweep Extrusion<br>[1647, 1685, 0]"]
|
||||
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||
29[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
30[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
31[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
32[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
33[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
34[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
35[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
36[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
37[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
38[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
39[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
40[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
41[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
42[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
43[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
44[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
45["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
46["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
47["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
48["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
49["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
50["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
51["SweepEdge Opposite"]
|
||||
52["SweepEdge Opposite"]
|
||||
53["SweepEdge Opposite"]
|
||||
|
@ -47,11 +47,17 @@ flowchart LR
|
||||
22["Sweep Extrusion<br>[200, 219, 1]"]
|
||||
%% Missing NodePath
|
||||
23[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
24[Wall]
|
||||
%% face_code_ref=Missing NodePath
|
||||
25["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
26["Cap Start"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
27["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
28["Cap End"]
|
||||
%% face_code_ref=Missing NodePath
|
||||
29["SweepEdge Opposite"]
|
||||
30["SweepEdge Opposite"]
|
||||
31["SweepEdge Adjacent"]
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user