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;
|
let range = code_ref.range;
|
||||||
[range.start(), range.end(), range.module_id().as_usize()]
|
[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
|
// %% is a mermaid comment. Prefix is increased one level since it's
|
||||||
// a child of the line above it.
|
// a child of the line above it.
|
||||||
|
let label = label.unwrap_or("");
|
||||||
if code_ref.node_path.is_empty() {
|
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 {
|
match artifact {
|
||||||
@ -315,7 +321,7 @@ impl ArtifactGraph {
|
|||||||
composite_solid.sub_type,
|
composite_solid.sub_type,
|
||||||
code_ref_display(&composite_solid.code_ref)
|
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) => {
|
Artifact::Plane(plane) => {
|
||||||
writeln!(
|
writeln!(
|
||||||
@ -323,7 +329,7 @@ impl ArtifactGraph {
|
|||||||
"{prefix}{id}[\"Plane<br>{:?}\"]",
|
"{prefix}{id}[\"Plane<br>{:?}\"]",
|
||||||
code_ref_display(&plane.code_ref)
|
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) => {
|
Artifact::Path(path) => {
|
||||||
writeln!(
|
writeln!(
|
||||||
@ -331,7 +337,7 @@ impl ArtifactGraph {
|
|||||||
"{prefix}{id}[\"Path<br>{:?}\"]",
|
"{prefix}{id}[\"Path<br>{:?}\"]",
|
||||||
code_ref_display(&path.code_ref)
|
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) => {
|
Artifact::Segment(segment) => {
|
||||||
writeln!(
|
writeln!(
|
||||||
@ -339,7 +345,7 @@ impl ArtifactGraph {
|
|||||||
"{prefix}{id}[\"Segment<br>{:?}\"]",
|
"{prefix}{id}[\"Segment<br>{:?}\"]",
|
||||||
code_ref_display(&segment.code_ref)
|
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) => {
|
Artifact::Solid2d(_solid2d) => {
|
||||||
writeln!(output, "{prefix}{}[Solid2d]", id)?;
|
writeln!(output, "{prefix}{}[Solid2d]", id)?;
|
||||||
@ -350,7 +356,7 @@ impl ArtifactGraph {
|
|||||||
"{prefix}{id}[\"StartSketchOnFace<br>{:?}\"]",
|
"{prefix}{id}[\"StartSketchOnFace<br>{:?}\"]",
|
||||||
code_ref_display(code_ref)
|
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, .. }) => {
|
Artifact::StartSketchOnPlane(StartSketchOnPlane { code_ref, .. }) => {
|
||||||
writeln!(
|
writeln!(
|
||||||
@ -358,7 +364,7 @@ impl ArtifactGraph {
|
|||||||
"{prefix}{id}[\"StartSketchOnPlane<br>{:?}\"]",
|
"{prefix}{id}[\"StartSketchOnPlane<br>{:?}\"]",
|
||||||
code_ref_display(code_ref)
|
code_ref_display(code_ref)
|
||||||
)?;
|
)?;
|
||||||
node_path_display(output, prefix, code_ref)?;
|
node_path_display(output, prefix, None, code_ref)?;
|
||||||
}
|
}
|
||||||
Artifact::Sweep(sweep) => {
|
Artifact::Sweep(sweep) => {
|
||||||
writeln!(
|
writeln!(
|
||||||
@ -367,13 +373,15 @@ impl ArtifactGraph {
|
|||||||
sweep.sub_type,
|
sweep.sub_type,
|
||||||
code_ref_display(&sweep.code_ref)
|
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]")?;
|
writeln!(output, "{prefix}{id}[Wall]")?;
|
||||||
|
node_path_display(output, prefix, Some("face_code_ref="), &wall.face_code_ref)?;
|
||||||
}
|
}
|
||||||
Artifact::Cap(cap) => {
|
Artifact::Cap(cap) => {
|
||||||
writeln!(output, "{prefix}{id}[\"Cap {:?}\"]", cap.sub_type)?;
|
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) => {
|
Artifact::SweepEdge(sweep_edge) => {
|
||||||
writeln!(output, "{prefix}{id}[\"SweepEdge {:?}\"]", sweep_edge.sub_type)?;
|
writeln!(output, "{prefix}{id}[\"SweepEdge {:?}\"]", sweep_edge.sub_type)?;
|
||||||
@ -385,7 +393,7 @@ impl ArtifactGraph {
|
|||||||
edge_cut.sub_type,
|
edge_cut.sub_type,
|
||||||
code_ref_display(&edge_cut.code_ref)
|
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) => {
|
Artifact::EdgeCutEdge(_edge_cut_edge) => {
|
||||||
writeln!(output, "{prefix}{id}[EdgeCutEdge]")?;
|
writeln!(output, "{prefix}{id}[EdgeCutEdge]")?;
|
||||||
@ -396,7 +404,7 @@ impl ArtifactGraph {
|
|||||||
"{prefix}{id}[\"Helix<br>{:?}\"]",
|
"{prefix}{id}[\"Helix<br>{:?}\"]",
|
||||||
code_ref_display(&helix.code_ref)
|
code_ref_display(&helix.code_ref)
|
||||||
)?;
|
)?;
|
||||||
node_path_display(output, prefix, &helix.code_ref)?;
|
node_path_display(output, prefix, None, &helix.code_ref)?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
|
@ -22,13 +22,21 @@ flowchart LR
|
|||||||
10["Sweep Extrusion<br>[279, 298, 0]"]
|
10["Sweep Extrusion<br>[279, 298, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13[Wall]
|
13[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14[Wall]
|
14[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15[Wall]
|
15[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
16[Wall]
|
16[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
17["Cap Start"]
|
17["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
18["Cap End"]
|
18["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
19["SweepEdge Opposite"]
|
19["SweepEdge Opposite"]
|
||||||
20["SweepEdge Opposite"]
|
20["SweepEdge Opposite"]
|
||||||
21["SweepEdge Opposite"]
|
21["SweepEdge Opposite"]
|
||||||
|
@ -37,15 +37,25 @@ flowchart LR
|
|||||||
17["Sweep Extrusion<br>[553, 583, 0]"]
|
17["Sweep Extrusion<br>[553, 583, 0]"]
|
||||||
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
18[Wall]
|
18[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
19[Wall]
|
19[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
20[Wall]
|
20[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
21[Wall]
|
21[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
22[Wall]
|
22[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
23[Wall]
|
23[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
24[Wall]
|
24[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
25["Cap Start"]
|
25["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
26["Cap End"]
|
26["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
27["Cap End"]
|
27["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
28["SweepEdge Opposite"]
|
28["SweepEdge Opposite"]
|
||||||
29["SweepEdge Opposite"]
|
29["SweepEdge Opposite"]
|
||||||
30["SweepEdge Opposite"]
|
30["SweepEdge Opposite"]
|
||||||
|
@ -69,22 +69,39 @@ flowchart LR
|
|||||||
32["Sweep Extrusion<br>[994, 1024, 0]"]
|
32["Sweep Extrusion<br>[994, 1024, 0]"]
|
||||||
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
33[Wall]
|
33[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
34[Wall]
|
34[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
35[Wall]
|
35[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
36[Wall]
|
36[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
37[Wall]
|
37[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
38[Wall]
|
38[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
39[Wall]
|
39[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
40[Wall]
|
40[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
41[Wall]
|
41[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
42[Wall]
|
42[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
43[Wall]
|
43[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
44[Wall]
|
44[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
45["Cap Start"]
|
45["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
46["Cap End"]
|
46["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
47["Cap End"]
|
47["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
48["Cap End"]
|
48["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
49["Cap End"]
|
49["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
50["SweepEdge Opposite"]
|
50["SweepEdge Opposite"]
|
||||||
51["SweepEdge Opposite"]
|
51["SweepEdge Opposite"]
|
||||||
52["SweepEdge Opposite"]
|
52["SweepEdge Opposite"]
|
||||||
|
@ -39,17 +39,29 @@ flowchart LR
|
|||||||
18["Sweep Extrusion<br>[264, 286, 2]"]
|
18["Sweep Extrusion<br>[264, 286, 2]"]
|
||||||
%% Missing NodePath
|
%% Missing NodePath
|
||||||
19[Wall]
|
19[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
20[Wall]
|
20[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
21[Wall]
|
21[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
22[Wall]
|
22[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
23[Wall]
|
23[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
24[Wall]
|
24[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
25[Wall]
|
25[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
26[Wall]
|
26[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
27["Cap Start"]
|
27["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
28["Cap Start"]
|
28["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
29["Cap End"]
|
29["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
30["Cap End"]
|
30["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
31["SweepEdge Opposite"]
|
31["SweepEdge Opposite"]
|
||||||
32["SweepEdge Opposite"]
|
32["SweepEdge Opposite"]
|
||||||
33["SweepEdge Opposite"]
|
33["SweepEdge Opposite"]
|
||||||
|
@ -18,11 +18,17 @@ flowchart LR
|
|||||||
8["Sweep Extrusion<br>[195, 215, 0]"]
|
8["Sweep Extrusion<br>[195, 215, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
9[Wall]
|
9[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
10[Wall]
|
10[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13["Cap Start"]
|
13["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14["Cap End"]
|
14["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15["SweepEdge Opposite"]
|
15["SweepEdge Opposite"]
|
||||||
16["SweepEdge Opposite"]
|
16["SweepEdge Opposite"]
|
||||||
17["SweepEdge Opposite"]
|
17["SweepEdge Opposite"]
|
||||||
|
@ -18,11 +18,17 @@ flowchart LR
|
|||||||
8["Sweep Extrusion<br>[183, 203, 0]"]
|
8["Sweep Extrusion<br>[183, 203, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
9[Wall]
|
9[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
10[Wall]
|
10[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13["Cap Start"]
|
13["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14["Cap End"]
|
14["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15["SweepEdge Opposite"]
|
15["SweepEdge Opposite"]
|
||||||
16["SweepEdge Opposite"]
|
16["SweepEdge Opposite"]
|
||||||
17["SweepEdge Opposite"]
|
17["SweepEdge Opposite"]
|
||||||
|
@ -18,11 +18,17 @@ flowchart LR
|
|||||||
8["Sweep Extrusion<br>[210, 230, 0]"]
|
8["Sweep Extrusion<br>[210, 230, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
9[Wall]
|
9[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
10[Wall]
|
10[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13["Cap Start"]
|
13["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14["Cap End"]
|
14["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15["SweepEdge Opposite"]
|
15["SweepEdge Opposite"]
|
||||||
16["SweepEdge Opposite"]
|
16["SweepEdge Opposite"]
|
||||||
17["SweepEdge Opposite"]
|
17["SweepEdge Opposite"]
|
||||||
|
@ -18,11 +18,17 @@ flowchart LR
|
|||||||
8["Sweep Extrusion<br>[210, 230, 0]"]
|
8["Sweep Extrusion<br>[210, 230, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
9[Wall]
|
9[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
10[Wall]
|
10[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13["Cap Start"]
|
13["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14["Cap End"]
|
14["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15["SweepEdge Opposite"]
|
15["SweepEdge Opposite"]
|
||||||
16["SweepEdge Opposite"]
|
16["SweepEdge Opposite"]
|
||||||
17["SweepEdge Opposite"]
|
17["SweepEdge Opposite"]
|
||||||
|
@ -18,11 +18,17 @@ flowchart LR
|
|||||||
8["Sweep Extrusion<br>[183, 203, 0]"]
|
8["Sweep Extrusion<br>[183, 203, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
9[Wall]
|
9[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
10[Wall]
|
10[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13["Cap Start"]
|
13["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14["Cap End"]
|
14["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15["SweepEdge Opposite"]
|
15["SweepEdge Opposite"]
|
||||||
16["SweepEdge Opposite"]
|
16["SweepEdge Opposite"]
|
||||||
17["SweepEdge Opposite"]
|
17["SweepEdge Opposite"]
|
||||||
|
@ -12,6 +12,7 @@ flowchart LR
|
|||||||
5["Sweep Revolve<br>[76, 120, 0]"]
|
5["Sweep Revolve<br>[76, 120, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
6[Wall]
|
6[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
7["SweepEdge Adjacent"]
|
7["SweepEdge Adjacent"]
|
||||||
1 --- 2
|
1 --- 2
|
||||||
2 --- 3
|
2 --- 3
|
||||||
|
@ -12,8 +12,11 @@ flowchart LR
|
|||||||
5["Sweep Extrusion<br>[102, 122, 0]"]
|
5["Sweep Extrusion<br>[102, 122, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
6[Wall]
|
6[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
7["Cap Start"]
|
7["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
8["Cap End"]
|
8["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
9["SweepEdge Opposite"]
|
9["SweepEdge Opposite"]
|
||||||
10["SweepEdge Adjacent"]
|
10["SweepEdge Adjacent"]
|
||||||
1 --- 2
|
1 --- 2
|
||||||
|
@ -18,11 +18,17 @@ flowchart LR
|
|||||||
8["Sweep Extrusion<br>[157, 176, 0]"]
|
8["Sweep Extrusion<br>[157, 176, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
9[Wall]
|
9[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
10[Wall]
|
10[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13["Cap Start"]
|
13["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14["Cap End"]
|
14["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15["SweepEdge Opposite"]
|
15["SweepEdge Opposite"]
|
||||||
16["SweepEdge Opposite"]
|
16["SweepEdge Opposite"]
|
||||||
17["SweepEdge Opposite"]
|
17["SweepEdge Opposite"]
|
||||||
|
@ -142,26 +142,47 @@ flowchart LR
|
|||||||
64["Sweep RevolveAboutEdge<br>[2443, 2488, 0]"]
|
64["Sweep RevolveAboutEdge<br>[2443, 2488, 0]"]
|
||||||
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
65[Wall]
|
65[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
66[Wall]
|
66[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
67[Wall]
|
67[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
68[Wall]
|
68[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
69[Wall]
|
69[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
70[Wall]
|
70[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
71[Wall]
|
71[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
72[Wall]
|
72[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
73[Wall]
|
73[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
74[Wall]
|
74[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
75[Wall]
|
75[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
76[Wall]
|
76[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
77[Wall]
|
77[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
78["Cap Start"]
|
78["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
79["Cap Start"]
|
79["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
80["Cap Start"]
|
80["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
81["Cap Start"]
|
81["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
82["Cap End"]
|
82["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
83["Cap End"]
|
83["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
84["Cap End"]
|
84["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
85["Cap End"]
|
85["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
86["SweepEdge Opposite"]
|
86["SweepEdge Opposite"]
|
||||||
87["SweepEdge Opposite"]
|
87["SweepEdge Opposite"]
|
||||||
88["SweepEdge Opposite"]
|
88["SweepEdge Opposite"]
|
||||||
|
@ -20,11 +20,17 @@ flowchart LR
|
|||||||
9["Sweep Extrusion<br>[374, 402, 0]"]
|
9["Sweep Extrusion<br>[374, 402, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 7 }, ReturnStatementArg, PipeBodyItem { index: 7 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 7 }, ReturnStatementArg, PipeBodyItem { index: 7 }]
|
||||||
10[Wall]
|
10[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13[Wall]
|
13[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14["Cap Start"]
|
14["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15["Cap End"]
|
15["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
16["SweepEdge Opposite"]
|
16["SweepEdge Opposite"]
|
||||||
17["SweepEdge Opposite"]
|
17["SweepEdge Opposite"]
|
||||||
18["SweepEdge Opposite"]
|
18["SweepEdge Opposite"]
|
||||||
|
@ -20,11 +20,17 @@ flowchart LR
|
|||||||
9["Sweep Extrusion<br>[366, 390, 0]"]
|
9["Sweep Extrusion<br>[366, 390, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 7 }, ReturnStatementArg, PipeBodyItem { index: 7 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 7 }, ReturnStatementArg, PipeBodyItem { index: 7 }]
|
||||||
10[Wall]
|
10[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13[Wall]
|
13[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14["Cap Start"]
|
14["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15["Cap End"]
|
15["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
16["SweepEdge Opposite"]
|
16["SweepEdge Opposite"]
|
||||||
17["SweepEdge Opposite"]
|
17["SweepEdge Opposite"]
|
||||||
18["SweepEdge Opposite"]
|
18["SweepEdge Opposite"]
|
||||||
|
@ -33,11 +33,17 @@ flowchart LR
|
|||||||
15["Sweep Extrusion<br>[169, 189, 0]"]
|
15["Sweep Extrusion<br>[169, 189, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
16[Wall]
|
16[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
17[Wall]
|
17[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
18[Wall]
|
18[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
19[Wall]
|
19[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
20["Cap Start"]
|
20["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
21["Cap End"]
|
21["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
22["SweepEdge Opposite"]
|
22["SweepEdge Opposite"]
|
||||||
23["SweepEdge Opposite"]
|
23["SweepEdge Opposite"]
|
||||||
24["SweepEdge Opposite"]
|
24["SweepEdge Opposite"]
|
||||||
|
@ -121,23 +121,41 @@ flowchart LR
|
|||||||
51["Sweep Extrusion<br>[1482, 1506, 0]"]
|
51["Sweep Extrusion<br>[1482, 1506, 0]"]
|
||||||
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
52[Wall]
|
52[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
53[Wall]
|
53[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
54[Wall]
|
54[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
55[Wall]
|
55[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
56[Wall]
|
56[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
57[Wall]
|
57[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
58[Wall]
|
58[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
59[Wall]
|
59[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
60["Cap Start"]
|
60["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
61["Cap Start"]
|
61["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
62["Cap Start"]
|
62["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
63["Cap Start"]
|
63["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
64["Cap Start"]
|
64["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
65["Cap End"]
|
65["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
66["Cap End"]
|
66["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
67["Cap End"]
|
67["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
68["Cap End"]
|
68["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
69["Cap End"]
|
69["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
70["SweepEdge Opposite"]
|
70["SweepEdge Opposite"]
|
||||||
71["SweepEdge Opposite"]
|
71["SweepEdge Opposite"]
|
||||||
72["SweepEdge Opposite"]
|
72["SweepEdge Opposite"]
|
||||||
|
@ -18,11 +18,17 @@ flowchart LR
|
|||||||
8["Sweep Extrusion<br>[216, 236, 0]"]
|
8["Sweep Extrusion<br>[216, 236, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, ExpressionStatementExpr, PipeBodyItem { index: 5 }]
|
%% [ProgramBodyItem { index: 0 }, ExpressionStatementExpr, PipeBodyItem { index: 5 }]
|
||||||
9[Wall]
|
9[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
10[Wall]
|
10[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13["Cap Start"]
|
13["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14["Cap End"]
|
14["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15["SweepEdge Opposite"]
|
15["SweepEdge Opposite"]
|
||||||
16["SweepEdge Opposite"]
|
16["SweepEdge Opposite"]
|
||||||
17["SweepEdge Opposite"]
|
17["SweepEdge Opposite"]
|
||||||
|
@ -19,8 +19,11 @@ flowchart LR
|
|||||||
8["Sweep Extrusion<br>[702, 739, 0]"]
|
8["Sweep Extrusion<br>[702, 739, 0]"]
|
||||||
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
9[Wall]
|
9[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
10["Cap Start"]
|
10["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11["Cap End"]
|
11["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12["SweepEdge Opposite"]
|
12["SweepEdge Opposite"]
|
||||||
13["SweepEdge Adjacent"]
|
13["SweepEdge Adjacent"]
|
||||||
1 --- 2
|
1 --- 2
|
||||||
|
@ -18,11 +18,17 @@ flowchart LR
|
|||||||
8["Sweep Extrusion<br>[181, 200, 0]"]
|
8["Sweep Extrusion<br>[181, 200, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
9[Wall]
|
9[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
10[Wall]
|
10[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13["Cap Start"]
|
13["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14["Cap End"]
|
14["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15["SweepEdge Opposite"]
|
15["SweepEdge Opposite"]
|
||||||
16["SweepEdge Opposite"]
|
16["SweepEdge Opposite"]
|
||||||
17["SweepEdge Opposite"]
|
17["SweepEdge Opposite"]
|
||||||
|
@ -18,11 +18,17 @@ flowchart LR
|
|||||||
8["Sweep Extrusion<br>[179, 198, 0]"]
|
8["Sweep Extrusion<br>[179, 198, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
9[Wall]
|
9[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
10[Wall]
|
10[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13["Cap Start"]
|
13["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14["Cap End"]
|
14["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15["SweepEdge Opposite"]
|
15["SweepEdge Opposite"]
|
||||||
16["SweepEdge Opposite"]
|
16["SweepEdge Opposite"]
|
||||||
17["SweepEdge Opposite"]
|
17["SweepEdge Opposite"]
|
||||||
|
@ -12,8 +12,11 @@ flowchart LR
|
|||||||
5["Sweep Extrusion<br>[75, 95, 0]"]
|
5["Sweep Extrusion<br>[75, 95, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
6[Wall]
|
6[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
7["Cap Start"]
|
7["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
8["Cap End"]
|
8["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
9["SweepEdge Opposite"]
|
9["SweepEdge Opposite"]
|
||||||
10["SweepEdge Adjacent"]
|
10["SweepEdge Adjacent"]
|
||||||
1 --- 2
|
1 --- 2
|
||||||
|
@ -85,31 +85,57 @@ flowchart LR
|
|||||||
41["Sweep Extrusion<br>[2408, 2429, 0]"]
|
41["Sweep Extrusion<br>[2408, 2429, 0]"]
|
||||||
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
42[Wall]
|
42[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
43[Wall]
|
43[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
44[Wall]
|
44[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
45[Wall]
|
45[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
46[Wall]
|
46[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
47[Wall]
|
47[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
48[Wall]
|
48[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
49[Wall]
|
49[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
50[Wall]
|
50[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
51[Wall]
|
51[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
52[Wall]
|
52[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
53[Wall]
|
53[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
54[Wall]
|
54[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
55[Wall]
|
55[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
56[Wall]
|
56[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
57[Wall]
|
57[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
58[Wall]
|
58[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
59[Wall]
|
59[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
60[Wall]
|
60[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
61[Wall]
|
61[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
62[Wall]
|
62[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
63[Wall]
|
63[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
64[Wall]
|
64[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
65[Wall]
|
65[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
66["Cap Start"]
|
66["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
67["Cap End"]
|
67["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
68["SweepEdge Opposite"]
|
68["SweepEdge Opposite"]
|
||||||
69["SweepEdge Opposite"]
|
69["SweepEdge Opposite"]
|
||||||
70["SweepEdge Opposite"]
|
70["SweepEdge Opposite"]
|
||||||
|
@ -71,11 +71,17 @@ flowchart LR
|
|||||||
33["Sweep Loft<br>[3201, 3268, 0]"]
|
33["Sweep Loft<br>[3201, 3268, 0]"]
|
||||||
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
34[Wall]
|
34[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
35[Wall]
|
35[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
36[Wall]
|
36[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
37[Wall]
|
37[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
38["Cap Start"]
|
38["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
39["Cap End"]
|
39["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
40["SweepEdge Opposite"]
|
40["SweepEdge Opposite"]
|
||||||
41["SweepEdge Opposite"]
|
41["SweepEdge Opposite"]
|
||||||
42["SweepEdge Opposite"]
|
42["SweepEdge Opposite"]
|
||||||
|
@ -26,13 +26,21 @@ flowchart LR
|
|||||||
12["Sweep Revolve<br>[302, 319, 1]"]
|
12["Sweep Revolve<br>[302, 319, 1]"]
|
||||||
%% Missing NodePath
|
%% Missing NodePath
|
||||||
13[Wall]
|
13[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14[Wall]
|
14[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15[Wall]
|
15[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
16[Wall]
|
16[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
17[Wall]
|
17[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
18[Wall]
|
18[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
19[Wall]
|
19[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
20[Wall]
|
20[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
21["SweepEdge Adjacent"]
|
21["SweepEdge Adjacent"]
|
||||||
22["SweepEdge Adjacent"]
|
22["SweepEdge Adjacent"]
|
||||||
23["SweepEdge Adjacent"]
|
23["SweepEdge Adjacent"]
|
||||||
|
@ -12,8 +12,11 @@ flowchart LR
|
|||||||
5["Sweep Extrusion<br>[124, 144, 1]"]
|
5["Sweep Extrusion<br>[124, 144, 1]"]
|
||||||
%% Missing NodePath
|
%% Missing NodePath
|
||||||
6[Wall]
|
6[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
7["Cap Start"]
|
7["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
8["Cap End"]
|
8["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
9["SweepEdge Opposite"]
|
9["SweepEdge Opposite"]
|
||||||
10["SweepEdge Adjacent"]
|
10["SweepEdge Adjacent"]
|
||||||
1 --- 2
|
1 --- 2
|
||||||
|
@ -12,8 +12,11 @@ flowchart LR
|
|||||||
5["Sweep Extrusion<br>[143, 163, 1]"]
|
5["Sweep Extrusion<br>[143, 163, 1]"]
|
||||||
%% Missing NodePath
|
%% Missing NodePath
|
||||||
6[Wall]
|
6[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
7["Cap Start"]
|
7["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
8["Cap End"]
|
8["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
9["SweepEdge Opposite"]
|
9["SweepEdge Opposite"]
|
||||||
10["SweepEdge Adjacent"]
|
10["SweepEdge Adjacent"]
|
||||||
1 --- 2
|
1 --- 2
|
||||||
|
@ -37,17 +37,29 @@ flowchart LR
|
|||||||
17["CompositeSolid Intersect<br>[480, 509, 0]"]
|
17["CompositeSolid Intersect<br>[480, 509, 0]"]
|
||||||
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
18[Wall]
|
18[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
19[Wall]
|
19[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
20[Wall]
|
20[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
21[Wall]
|
21[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
22[Wall]
|
22[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
23[Wall]
|
23[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
24[Wall]
|
24[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
25[Wall]
|
25[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
26["Cap Start"]
|
26["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
27["Cap Start"]
|
27["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
28["Cap End"]
|
28["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
29["Cap End"]
|
29["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
30["SweepEdge Opposite"]
|
30["SweepEdge Opposite"]
|
||||||
31["SweepEdge Opposite"]
|
31["SweepEdge Opposite"]
|
||||||
32["SweepEdge Opposite"]
|
32["SweepEdge Opposite"]
|
||||||
|
@ -31,13 +31,21 @@ flowchart LR
|
|||||||
14["Sweep Extrusion<br>[1230, 1258, 0]"]
|
14["Sweep Extrusion<br>[1230, 1258, 0]"]
|
||||||
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 11 }]
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 11 }]
|
||||||
15[Wall]
|
15[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
16[Wall]
|
16[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
17[Wall]
|
17[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
18[Wall]
|
18[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
19[Wall]
|
19[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
20[Wall]
|
20[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
21["Cap Start"]
|
21["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
22["Cap End"]
|
22["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
23["SweepEdge Opposite"]
|
23["SweepEdge Opposite"]
|
||||||
24["SweepEdge Opposite"]
|
24["SweepEdge Opposite"]
|
||||||
25["SweepEdge Opposite"]
|
25["SweepEdge Opposite"]
|
||||||
|
@ -147,71 +147,137 @@ flowchart LR
|
|||||||
72["Sweep Extrusion<br>[5086, 5114, 0]"]
|
72["Sweep Extrusion<br>[5086, 5114, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 68 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 68 }]
|
||||||
73[Wall]
|
73[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
74[Wall]
|
74[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
75[Wall]
|
75[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
76[Wall]
|
76[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
77[Wall]
|
77[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
78[Wall]
|
78[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
79[Wall]
|
79[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
80[Wall]
|
80[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
81[Wall]
|
81[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
82[Wall]
|
82[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
83[Wall]
|
83[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
84[Wall]
|
84[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
85[Wall]
|
85[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
86[Wall]
|
86[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
87[Wall]
|
87[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
88[Wall]
|
88[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
89[Wall]
|
89[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
90[Wall]
|
90[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
91[Wall]
|
91[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
92[Wall]
|
92[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
93[Wall]
|
93[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
94[Wall]
|
94[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
95[Wall]
|
95[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
96[Wall]
|
96[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
97[Wall]
|
97[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
98[Wall]
|
98[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
99[Wall]
|
99[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
100[Wall]
|
100[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
101[Wall]
|
101[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
102[Wall]
|
102[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
103[Wall]
|
103[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
104[Wall]
|
104[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
105[Wall]
|
105[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
106[Wall]
|
106[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
107[Wall]
|
107[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
108[Wall]
|
108[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
109[Wall]
|
109[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
110[Wall]
|
110[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
111[Wall]
|
111[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
112[Wall]
|
112[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
113[Wall]
|
113[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
114[Wall]
|
114[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
115[Wall]
|
115[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
116[Wall]
|
116[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
117[Wall]
|
117[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
118[Wall]
|
118[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
119[Wall]
|
119[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
120[Wall]
|
120[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
121[Wall]
|
121[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
122[Wall]
|
122[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
123[Wall]
|
123[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
124[Wall]
|
124[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
125[Wall]
|
125[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
126[Wall]
|
126[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
127[Wall]
|
127[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
128[Wall]
|
128[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
129[Wall]
|
129[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
130[Wall]
|
130[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
131[Wall]
|
131[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
132[Wall]
|
132[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
133[Wall]
|
133[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
134[Wall]
|
134[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
135[Wall]
|
135[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
136[Wall]
|
136[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
137["Cap Start"]
|
137["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
138["Cap End"]
|
138["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
139["SweepEdge Opposite"]
|
139["SweepEdge Opposite"]
|
||||||
140["SweepEdge Opposite"]
|
140["SweepEdge Opposite"]
|
||||||
141["SweepEdge Opposite"]
|
141["SweepEdge Opposite"]
|
||||||
|
@ -289,62 +289,119 @@ flowchart LR
|
|||||||
132["Sweep Loft<br>[2472, 2491, 4]"]
|
132["Sweep Loft<br>[2472, 2491, 4]"]
|
||||||
%% Missing NodePath
|
%% Missing NodePath
|
||||||
133[Wall]
|
133[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
134[Wall]
|
134[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
135[Wall]
|
135[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
136[Wall]
|
136[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
137[Wall]
|
137[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
138[Wall]
|
138[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
139[Wall]
|
139[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
140[Wall]
|
140[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
141[Wall]
|
141[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
142[Wall]
|
142[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
143[Wall]
|
143[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
144[Wall]
|
144[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
145[Wall]
|
145[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
146[Wall]
|
146[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
147[Wall]
|
147[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
148[Wall]
|
148[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
149[Wall]
|
149[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
150[Wall]
|
150[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
151[Wall]
|
151[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
152[Wall]
|
152[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
153[Wall]
|
153[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
154[Wall]
|
154[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
155[Wall]
|
155[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
156[Wall]
|
156[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
157[Wall]
|
157[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
158[Wall]
|
158[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
159[Wall]
|
159[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
160[Wall]
|
160[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
161[Wall]
|
161[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
162[Wall]
|
162[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
163[Wall]
|
163[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
164[Wall]
|
164[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
165[Wall]
|
165[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
166[Wall]
|
166[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
167[Wall]
|
167[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
168[Wall]
|
168[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
169[Wall]
|
169[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
170[Wall]
|
170[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
171[Wall]
|
171[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
172[Wall]
|
172[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
173[Wall]
|
173[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
174[Wall]
|
174[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
175[Wall]
|
175[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
176[Wall]
|
176[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
177[Wall]
|
177[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
178["Cap Start"]
|
178["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
179["Cap Start"]
|
179["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
180["Cap Start"]
|
180["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
181["Cap Start"]
|
181["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
182["Cap End"]
|
182["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
183["Cap End"]
|
183["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
184["Cap End"]
|
184["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
185["Cap End"]
|
185["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
186["Cap End"]
|
186["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
187["Cap End"]
|
187["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
188["Cap End"]
|
188["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
189["Cap End"]
|
189["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
190["SweepEdge Opposite"]
|
190["SweepEdge Opposite"]
|
||||||
191["SweepEdge Opposite"]
|
191["SweepEdge Opposite"]
|
||||||
192["SweepEdge Opposite"]
|
192["SweepEdge Opposite"]
|
||||||
@ -724,19 +781,19 @@ flowchart LR
|
|||||||
84 --- 144
|
84 --- 144
|
||||||
84 --- 237
|
84 --- 237
|
||||||
86 --- 168
|
86 --- 168
|
||||||
86 x--> 189
|
86 x--> 188
|
||||||
86 --- 212
|
86 --- 212
|
||||||
86 --- 256
|
86 --- 256
|
||||||
88 --- 169
|
88 --- 169
|
||||||
88 x--> 189
|
88 x--> 188
|
||||||
88 --- 213
|
88 --- 213
|
||||||
88 --- 257
|
88 --- 257
|
||||||
90 --- 167
|
90 --- 167
|
||||||
90 x--> 189
|
90 x--> 188
|
||||||
90 --- 214
|
90 --- 214
|
||||||
90 --- 258
|
90 --- 258
|
||||||
92 --- 170
|
92 --- 170
|
||||||
92 x--> 189
|
92 x--> 188
|
||||||
92 --- 215
|
92 --- 215
|
||||||
92 --- 259
|
92 --- 259
|
||||||
119 --- 133
|
119 --- 133
|
||||||
@ -1018,10 +1075,10 @@ flowchart LR
|
|||||||
218 <--x 186
|
218 <--x 186
|
||||||
219 <--x 186
|
219 <--x 186
|
||||||
194 <--x 187
|
194 <--x 187
|
||||||
212 <--x 188
|
212 <--x 189
|
||||||
213 <--x 188
|
213 <--x 189
|
||||||
214 <--x 188
|
214 <--x 189
|
||||||
215 <--x 188
|
215 <--x 189
|
||||||
220 <--x 275
|
220 <--x 275
|
||||||
223 <--x 270
|
223 <--x 270
|
||||||
224 <--x 274
|
224 <--x 274
|
||||||
|
@ -82,20 +82,35 @@ flowchart LR
|
|||||||
37["Sweep Extrusion<br>[2812, 2865, 0]"]
|
37["Sweep Extrusion<br>[2812, 2865, 0]"]
|
||||||
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
38[Wall]
|
38[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
39[Wall]
|
39[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
40[Wall]
|
40[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
41[Wall]
|
41[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
42[Wall]
|
42[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
43[Wall]
|
43[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
44[Wall]
|
44[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
45[Wall]
|
45[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
46[Wall]
|
46[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
47["Cap Start"]
|
47["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
48["Cap Start"]
|
48["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
49["Cap Start"]
|
49["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
50["Cap End"]
|
50["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
51["Cap End"]
|
51["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
52["Cap End"]
|
52["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
53["SweepEdge Opposite"]
|
53["SweepEdge Opposite"]
|
||||||
54["SweepEdge Opposite"]
|
54["SweepEdge Opposite"]
|
||||||
55["SweepEdge Opposite"]
|
55["SweepEdge Opposite"]
|
||||||
|
@ -497,187 +497,369 @@ flowchart LR
|
|||||||
238["Sweep Sweep<br>[3902, 3929, 1]"]
|
238["Sweep Sweep<br>[3902, 3929, 1]"]
|
||||||
%% Missing NodePath
|
%% Missing NodePath
|
||||||
239[Wall]
|
239[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
240[Wall]
|
240[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
241[Wall]
|
241[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
242[Wall]
|
242[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
243[Wall]
|
243[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
244[Wall]
|
244[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
245[Wall]
|
245[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
246[Wall]
|
246[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
247[Wall]
|
247[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
248[Wall]
|
248[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
249[Wall]
|
249[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
250[Wall]
|
250[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
251[Wall]
|
251[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
252[Wall]
|
252[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
253[Wall]
|
253[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
254[Wall]
|
254[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
255[Wall]
|
255[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
256[Wall]
|
256[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
257[Wall]
|
257[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
258[Wall]
|
258[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
259[Wall]
|
259[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
260[Wall]
|
260[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
261[Wall]
|
261[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
262[Wall]
|
262[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
263[Wall]
|
263[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
264[Wall]
|
264[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
265[Wall]
|
265[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
266[Wall]
|
266[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
267[Wall]
|
267[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
268[Wall]
|
268[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
269[Wall]
|
269[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
270[Wall]
|
270[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
271[Wall]
|
271[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
272[Wall]
|
272[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
273[Wall]
|
273[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
274[Wall]
|
274[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
275[Wall]
|
275[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
276[Wall]
|
276[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
277[Wall]
|
277[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
278[Wall]
|
278[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
279[Wall]
|
279[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
280[Wall]
|
280[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
281[Wall]
|
281[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
282[Wall]
|
282[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
283[Wall]
|
283[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
284[Wall]
|
284[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
285[Wall]
|
285[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
286[Wall]
|
286[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
287[Wall]
|
287[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
288[Wall]
|
288[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
289[Wall]
|
289[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
290[Wall]
|
290[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
291[Wall]
|
291[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
292[Wall]
|
292[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
293[Wall]
|
293[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
294[Wall]
|
294[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
295[Wall]
|
295[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
296[Wall]
|
296[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
297[Wall]
|
297[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
298[Wall]
|
298[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
299[Wall]
|
299[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
300[Wall]
|
300[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
301[Wall]
|
301[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
302[Wall]
|
302[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
303[Wall]
|
303[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
304[Wall]
|
304[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
305[Wall]
|
305[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
306[Wall]
|
306[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
307[Wall]
|
307[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
308[Wall]
|
308[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
309[Wall]
|
309[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
310[Wall]
|
310[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
311[Wall]
|
311[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
312[Wall]
|
312[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
313[Wall]
|
313[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
314[Wall]
|
314[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
315[Wall]
|
315[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
316[Wall]
|
316[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
317[Wall]
|
317[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
318[Wall]
|
318[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
319[Wall]
|
319[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
320[Wall]
|
320[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
321[Wall]
|
321[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
322[Wall]
|
322[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
323[Wall]
|
323[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
324[Wall]
|
324[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
325[Wall]
|
325[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
326[Wall]
|
326[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
327[Wall]
|
327[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
328[Wall]
|
328[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
329[Wall]
|
329[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
330[Wall]
|
330[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
331[Wall]
|
331[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
332[Wall]
|
332[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
333[Wall]
|
333[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
334[Wall]
|
334[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
335[Wall]
|
335[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
336[Wall]
|
336[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
337[Wall]
|
337[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
338[Wall]
|
338[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
339[Wall]
|
339[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
340[Wall]
|
340[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
341[Wall]
|
341[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
342[Wall]
|
342[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
343[Wall]
|
343[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
344[Wall]
|
344[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
345[Wall]
|
345[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
346[Wall]
|
346[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
347[Wall]
|
347[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
348[Wall]
|
348[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
349[Wall]
|
349[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
350[Wall]
|
350[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
351[Wall]
|
351[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
352[Wall]
|
352[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
353[Wall]
|
353[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
354[Wall]
|
354[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
355[Wall]
|
355[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
356[Wall]
|
356[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
357[Wall]
|
357[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
358[Wall]
|
358[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
359[Wall]
|
359[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
360[Wall]
|
360[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
361[Wall]
|
361[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
362[Wall]
|
362[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
363[Wall]
|
363[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
364[Wall]
|
364[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
365[Wall]
|
365[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
366[Wall]
|
366[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
367[Wall]
|
367[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
368[Wall]
|
368[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
369[Wall]
|
369[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
370[Wall]
|
370[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
371[Wall]
|
371[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
372[Wall]
|
372[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
373[Wall]
|
373[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
374[Wall]
|
374[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
375[Wall]
|
375[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
376[Wall]
|
376[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
377[Wall]
|
377[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
378[Wall]
|
378[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
379[Wall]
|
379[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
380[Wall]
|
380[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
381[Wall]
|
381[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
382[Wall]
|
382[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
383[Wall]
|
383[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
384[Wall]
|
384[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
385[Wall]
|
385[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
386[Wall]
|
386[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
387[Wall]
|
387[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
388[Wall]
|
388[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
389[Wall]
|
389[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
390[Wall]
|
390[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
391[Wall]
|
391[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
392[Wall]
|
392[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
393[Wall]
|
393[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
394[Wall]
|
394[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
395[Wall]
|
395[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
396[Wall]
|
396[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
397["Cap Start"]
|
397["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
398["Cap Start"]
|
398["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
399["Cap Start"]
|
399["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
400["Cap Start"]
|
400["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
401["Cap Start"]
|
401["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
402["Cap Start"]
|
402["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
403["Cap Start"]
|
403["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
404["Cap Start"]
|
404["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
405["Cap Start"]
|
405["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
406["Cap Start"]
|
406["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
407["Cap Start"]
|
407["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
408["Cap Start"]
|
408["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
409["Cap End"]
|
409["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
410["Cap End"]
|
410["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
411["Cap End"]
|
411["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
412["Cap End"]
|
412["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
413["Cap End"]
|
413["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
414["Cap End"]
|
414["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
415["Cap End"]
|
415["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
416["Cap End"]
|
416["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
417["Cap End"]
|
417["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
418["Cap End"]
|
418["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
419["Cap End"]
|
419["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
420["Cap End"]
|
420["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
421["SweepEdge Opposite"]
|
421["SweepEdge Opposite"]
|
||||||
422["SweepEdge Opposite"]
|
422["SweepEdge Opposite"]
|
||||||
423["SweepEdge Opposite"]
|
423["SweepEdge Opposite"]
|
||||||
|
@ -134,47 +134,89 @@ flowchart LR
|
|||||||
62["CompositeSolid Union<br>[2745, 2768, 0]"]
|
62["CompositeSolid Union<br>[2745, 2768, 0]"]
|
||||||
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwArg { index: 0 }]
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwArg { index: 0 }]
|
||||||
63[Wall]
|
63[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
64[Wall]
|
64[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
65[Wall]
|
65[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
66[Wall]
|
66[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
67[Wall]
|
67[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
68[Wall]
|
68[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
69[Wall]
|
69[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
70[Wall]
|
70[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
71[Wall]
|
71[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
72[Wall]
|
72[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
73[Wall]
|
73[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
74[Wall]
|
74[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
75[Wall]
|
75[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
76[Wall]
|
76[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
77[Wall]
|
77[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
78[Wall]
|
78[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
79[Wall]
|
79[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
80[Wall]
|
80[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
81[Wall]
|
81[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
82[Wall]
|
82[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
83[Wall]
|
83[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
84[Wall]
|
84[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
85[Wall]
|
85[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
86[Wall]
|
86[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
87["Cap Start"]
|
87["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
88["Cap Start"]
|
88["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
89["Cap Start"]
|
89["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
90["Cap Start"]
|
90["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
91["Cap Start"]
|
91["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
92["Cap Start"]
|
92["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
93["Cap Start"]
|
93["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
94["Cap Start"]
|
94["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
95["Cap Start"]
|
95["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
96["Cap End"]
|
96["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
97["Cap End"]
|
97["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
98["Cap End"]
|
98["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
99["Cap End"]
|
99["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
100["Cap End"]
|
100["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
101["Cap End"]
|
101["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
102["Cap End"]
|
102["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
103["Cap End"]
|
103["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
104["Cap End"]
|
104["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
105["SweepEdge Opposite"]
|
105["SweepEdge Opposite"]
|
||||||
106["SweepEdge Opposite"]
|
106["SweepEdge Opposite"]
|
||||||
107["SweepEdge Opposite"]
|
107["SweepEdge Opposite"]
|
||||||
|
@ -31,7 +31,9 @@ flowchart LR
|
|||||||
14["Sweep Extrusion<br>[812, 839, 0]"]
|
14["Sweep Extrusion<br>[812, 839, 0]"]
|
||||||
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
15[Wall]
|
15[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
16["Cap End"]
|
16["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
17["SweepEdge Opposite"]
|
17["SweepEdge Opposite"]
|
||||||
18["SweepEdge Adjacent"]
|
18["SweepEdge Adjacent"]
|
||||||
1 --- 4
|
1 --- 4
|
||||||
|
@ -54,15 +54,25 @@ flowchart LR
|
|||||||
25["Sweep Extrusion<br>[3542, 3579, 0]"]
|
25["Sweep Extrusion<br>[3542, 3579, 0]"]
|
||||||
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
26[Wall]
|
26[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
27[Wall]
|
27[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
28[Wall]
|
28[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
29[Wall]
|
29[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
30[Wall]
|
30[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
31[Wall]
|
31[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
32[Wall]
|
32[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
33[Wall]
|
33[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
34["Cap Start"]
|
34["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
35["Cap End"]
|
35["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
36["SweepEdge Opposite"]
|
36["SweepEdge Opposite"]
|
||||||
37["SweepEdge Opposite"]
|
37["SweepEdge Opposite"]
|
||||||
38["SweepEdge Opposite"]
|
38["SweepEdge Opposite"]
|
||||||
|
@ -470,123 +470,241 @@ flowchart LR
|
|||||||
223["Sweep Revolve<br>[1502, 1531, 6]"]
|
223["Sweep Revolve<br>[1502, 1531, 6]"]
|
||||||
%% Missing NodePath
|
%% Missing NodePath
|
||||||
224[Wall]
|
224[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
225[Wall]
|
225[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
226[Wall]
|
226[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
227[Wall]
|
227[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
228[Wall]
|
228[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
229[Wall]
|
229[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
230[Wall]
|
230[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
231[Wall]
|
231[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
232[Wall]
|
232[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
233[Wall]
|
233[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
234[Wall]
|
234[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
235[Wall]
|
235[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
236[Wall]
|
236[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
237[Wall]
|
237[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
238[Wall]
|
238[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
239[Wall]
|
239[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
240[Wall]
|
240[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
241[Wall]
|
241[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
242[Wall]
|
242[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
243[Wall]
|
243[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
244[Wall]
|
244[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
245[Wall]
|
245[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
246[Wall]
|
246[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
247[Wall]
|
247[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
248[Wall]
|
248[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
249[Wall]
|
249[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
250[Wall]
|
250[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
251[Wall]
|
251[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
252[Wall]
|
252[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
253[Wall]
|
253[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
254[Wall]
|
254[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
255[Wall]
|
255[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
256[Wall]
|
256[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
257[Wall]
|
257[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
258[Wall]
|
258[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
259[Wall]
|
259[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
260[Wall]
|
260[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
261[Wall]
|
261[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
262[Wall]
|
262[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
263[Wall]
|
263[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
264[Wall]
|
264[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
265[Wall]
|
265[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
266[Wall]
|
266[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
267[Wall]
|
267[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
268[Wall]
|
268[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
269[Wall]
|
269[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
270[Wall]
|
270[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
271[Wall]
|
271[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
272[Wall]
|
272[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
273[Wall]
|
273[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
274[Wall]
|
274[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
275[Wall]
|
275[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
276[Wall]
|
276[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
277[Wall]
|
277[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
278[Wall]
|
278[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
279[Wall]
|
279[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
280[Wall]
|
280[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
281[Wall]
|
281[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
282[Wall]
|
282[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
283[Wall]
|
283[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
284[Wall]
|
284[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
285[Wall]
|
285[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
286[Wall]
|
286[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
287[Wall]
|
287[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
288[Wall]
|
288[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
289[Wall]
|
289[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
290[Wall]
|
290[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
291[Wall]
|
291[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
292[Wall]
|
292[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
293[Wall]
|
293[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
294[Wall]
|
294[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
295[Wall]
|
295[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
296[Wall]
|
296[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
297[Wall]
|
297[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
298[Wall]
|
298[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
299[Wall]
|
299[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
300[Wall]
|
300[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
301[Wall]
|
301[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
302[Wall]
|
302[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
303[Wall]
|
303[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
304[Wall]
|
304[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
305[Wall]
|
305[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
306[Wall]
|
306[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
307[Wall]
|
307[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
308[Wall]
|
308[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
309[Wall]
|
309[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
310[Wall]
|
310[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
311[Wall]
|
311[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
312[Wall]
|
312[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
313[Wall]
|
313[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
314[Wall]
|
314[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
315[Wall]
|
315[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
316[Wall]
|
316[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
317[Wall]
|
317[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
318[Wall]
|
318[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
319[Wall]
|
319[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
320[Wall]
|
320[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
321[Wall]
|
321[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
322[Wall]
|
322[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
323["Cap Start"]
|
323["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
324["Cap Start"]
|
324["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
325["Cap Start"]
|
325["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
326["Cap Start"]
|
326["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
327["Cap Start"]
|
327["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
328["Cap Start"]
|
328["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
329["Cap Start"]
|
329["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
330["Cap Start"]
|
330["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
331["Cap Start"]
|
331["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
332["Cap End"]
|
332["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
333["Cap End"]
|
333["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
334["Cap End"]
|
334["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
335["Cap End"]
|
335["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
336["Cap End"]
|
336["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
337["Cap End"]
|
337["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
338["Cap End"]
|
338["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
339["Cap End"]
|
339["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
340["Cap End"]
|
340["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
341["Cap End"]
|
341["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
342["SweepEdge Opposite"]
|
342["SweepEdge Opposite"]
|
||||||
343["SweepEdge Opposite"]
|
343["SweepEdge Opposite"]
|
||||||
344["SweepEdge Opposite"]
|
344["SweepEdge Opposite"]
|
||||||
|
@ -101,14 +101,23 @@ flowchart LR
|
|||||||
47["Sweep Extrusion<br>[2963, 3001, 0]"]
|
47["Sweep Extrusion<br>[2963, 3001, 0]"]
|
||||||
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
48[Wall]
|
48[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
49[Wall]
|
49[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
50[Wall]
|
50[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
51[Wall]
|
51[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
52[Wall]
|
52[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
53["Cap Start"]
|
53["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
54["Cap Start"]
|
54["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
55["Cap Start"]
|
55["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
56["Cap End"]
|
56["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
57["SweepEdge Opposite"]
|
57["SweepEdge Opposite"]
|
||||||
58["SweepEdge Opposite"]
|
58["SweepEdge Opposite"]
|
||||||
59["SweepEdge Opposite"]
|
59["SweepEdge Opposite"]
|
||||||
|
@ -115,41 +115,77 @@ flowchart LR
|
|||||||
54["Sweep Extrusion<br>[1221, 1252, 0]"]
|
54["Sweep Extrusion<br>[1221, 1252, 0]"]
|
||||||
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 7 }]
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 7 }]
|
||||||
55[Wall]
|
55[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
56[Wall]
|
56[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
57[Wall]
|
57[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
58[Wall]
|
58[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
59[Wall]
|
59[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
60[Wall]
|
60[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
61[Wall]
|
61[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
62[Wall]
|
62[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
63[Wall]
|
63[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
64[Wall]
|
64[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
65[Wall]
|
65[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
66[Wall]
|
66[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
67[Wall]
|
67[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
68[Wall]
|
68[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
69[Wall]
|
69[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
70[Wall]
|
70[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
71[Wall]
|
71[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
72[Wall]
|
72[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
73[Wall]
|
73[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
74[Wall]
|
74[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
75[Wall]
|
75[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
76[Wall]
|
76[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
77[Wall]
|
77[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
78[Wall]
|
78[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
79["Cap Start"]
|
79["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
80["Cap Start"]
|
80["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
81["Cap Start"]
|
81["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
82["Cap Start"]
|
82["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
83["Cap Start"]
|
83["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
84["Cap Start"]
|
84["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
85["Cap End"]
|
85["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
86["Cap End"]
|
86["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
87["Cap End"]
|
87["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
88["Cap End"]
|
88["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
89["Cap End"]
|
89["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
90["Cap End"]
|
90["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
91["SweepEdge Opposite"]
|
91["SweepEdge Opposite"]
|
||||||
92["SweepEdge Opposite"]
|
92["SweepEdge Opposite"]
|
||||||
93["SweepEdge Opposite"]
|
93["SweepEdge Opposite"]
|
||||||
|
@ -190,43 +190,81 @@ flowchart LR
|
|||||||
87["CompositeSolid Subtract<br>[3031, 3058, 0]"]
|
87["CompositeSolid Subtract<br>[3031, 3058, 0]"]
|
||||||
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
88[Wall]
|
88[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
89[Wall]
|
89[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
90[Wall]
|
90[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
91[Wall]
|
91[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
92[Wall]
|
92[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
93[Wall]
|
93[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
94[Wall]
|
94[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
95[Wall]
|
95[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
96[Wall]
|
96[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
97[Wall]
|
97[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
98[Wall]
|
98[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
99[Wall]
|
99[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
100[Wall]
|
100[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
101[Wall]
|
101[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
102[Wall]
|
102[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
103[Wall]
|
103[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
104[Wall]
|
104[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
105[Wall]
|
105[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
106[Wall]
|
106[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
107[Wall]
|
107[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
108[Wall]
|
108[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
109[Wall]
|
109[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
110[Wall]
|
110[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
111[Wall]
|
111[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
112["Cap Start"]
|
112["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
113["Cap Start"]
|
113["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
114["Cap Start"]
|
114["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
115["Cap Start"]
|
115["Cap Start"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
116["Cap Start"]
|
116["Cap Start"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
117["Cap Start"]
|
117["Cap Start"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
118["Cap Start"]
|
118["Cap Start"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
119["Cap Start"]
|
119["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
120["Cap Start"]
|
120["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
121["Cap End"]
|
121["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
122["Cap End"]
|
122["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
123["Cap End"]
|
123["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
124["Cap End"]
|
124["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
125["Cap End"]
|
125["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
126["SweepEdge Opposite"]
|
126["SweepEdge Opposite"]
|
||||||
127["SweepEdge Opposite"]
|
127["SweepEdge Opposite"]
|
||||||
128["SweepEdge Opposite"]
|
128["SweepEdge Opposite"]
|
||||||
|
@ -57,17 +57,29 @@ flowchart LR
|
|||||||
26["Sweep Extrusion<br>[1734, 1767, 0]"]
|
26["Sweep Extrusion<br>[1734, 1767, 0]"]
|
||||||
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ExpressionStatementExpr, PipeBodyItem { index: 2 }]
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ExpressionStatementExpr, PipeBodyItem { index: 2 }]
|
||||||
27[Wall]
|
27[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
28[Wall]
|
28[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
29[Wall]
|
29[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
30[Wall]
|
30[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
31[Wall]
|
31[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
32[Wall]
|
32[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
33[Wall]
|
33[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
34[Wall]
|
34[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
35[Wall]
|
35[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
36[Wall]
|
36[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
37["Cap Start"]
|
37["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
38["Cap End"]
|
38["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ExpressionStatementExpr, PipeBodyItem { index: 0 }]
|
||||||
39["SweepEdge Opposite"]
|
39["SweepEdge Opposite"]
|
||||||
40["SweepEdge Opposite"]
|
40["SweepEdge Opposite"]
|
||||||
41["SweepEdge Opposite"]
|
41["SweepEdge Opposite"]
|
||||||
|
@ -81,13 +81,21 @@ flowchart LR
|
|||||||
37["Sweep Loft<br>[1483, 1572, 0]"]
|
37["Sweep Loft<br>[1483, 1572, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
38[Wall]
|
38[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
39[Wall]
|
39[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
40[Wall]
|
40[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
41[Wall]
|
41[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
42[Wall]
|
42[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
43[Wall]
|
43[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
44["Cap Start"]
|
44["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
45["Cap End"]
|
45["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
46["SweepEdge Opposite"]
|
46["SweepEdge Opposite"]
|
||||||
47["SweepEdge Opposite"]
|
47["SweepEdge Opposite"]
|
||||||
48["SweepEdge Opposite"]
|
48["SweepEdge Opposite"]
|
||||||
|
@ -227,77 +227,149 @@ flowchart LR
|
|||||||
107["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
107["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
||||||
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg]
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg]
|
||||||
108[Wall]
|
108[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
109[Wall]
|
109[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
110[Wall]
|
110[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
111[Wall]
|
111[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
112[Wall]
|
112[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
113[Wall]
|
113[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
114[Wall]
|
114[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
115[Wall]
|
115[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
116[Wall]
|
116[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
117[Wall]
|
117[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
118[Wall]
|
118[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
119[Wall]
|
119[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
120[Wall]
|
120[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
121[Wall]
|
121[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
122[Wall]
|
122[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
123[Wall]
|
123[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
124[Wall]
|
124[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
125[Wall]
|
125[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
126[Wall]
|
126[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
127[Wall]
|
127[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
128[Wall]
|
128[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
129[Wall]
|
129[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
130[Wall]
|
130[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
131[Wall]
|
131[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
132[Wall]
|
132[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
133[Wall]
|
133[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
134[Wall]
|
134[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
135[Wall]
|
135[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
136[Wall]
|
136[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
137[Wall]
|
137[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
138[Wall]
|
138[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
139[Wall]
|
139[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
140[Wall]
|
140[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
141[Wall]
|
141[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
142[Wall]
|
142[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
143[Wall]
|
143[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
144[Wall]
|
144[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
145[Wall]
|
145[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
146[Wall]
|
146[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
147[Wall]
|
147[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
148[Wall]
|
148[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
149[Wall]
|
149[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
150[Wall]
|
150[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
151[Wall]
|
151[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
152[Wall]
|
152[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
153[Wall]
|
153[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
154[Wall]
|
154[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
155[Wall]
|
155[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
156["Cap Start"]
|
156["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
157["Cap Start"]
|
157["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
158["Cap Start"]
|
158["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
159["Cap Start"]
|
159["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
160["Cap Start"]
|
160["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
161["Cap Start"]
|
161["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
162["Cap Start"]
|
162["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
163["Cap Start"]
|
163["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
164["Cap Start"]
|
164["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
165["Cap Start"]
|
165["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
166["Cap Start"]
|
166["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
167["Cap Start"]
|
167["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
168["Cap End"]
|
168["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
169["Cap End"]
|
169["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
170["Cap End"]
|
170["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
171["Cap End"]
|
171["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
172["Cap End"]
|
172["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
173["Cap End"]
|
173["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
174["Cap End"]
|
174["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
175["Cap End"]
|
175["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
176["Cap End"]
|
176["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
177["Cap End"]
|
177["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
178["Cap End"]
|
178["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
179["Cap End"]
|
179["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
180["SweepEdge Opposite"]
|
180["SweepEdge Opposite"]
|
||||||
181["SweepEdge Opposite"]
|
181["SweepEdge Opposite"]
|
||||||
182["SweepEdge Opposite"]
|
182["SweepEdge Opposite"]
|
||||||
|
@ -186,35 +186,65 @@ flowchart LR
|
|||||||
83["Sweep Extrusion<br>[5333, 5375, 0]"]
|
83["Sweep Extrusion<br>[5333, 5375, 0]"]
|
||||||
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
84[Wall]
|
84[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
85[Wall]
|
85[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
86[Wall]
|
86[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
87[Wall]
|
87[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
88[Wall]
|
88[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
89[Wall]
|
89[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
90[Wall]
|
90[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
91[Wall]
|
91[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
92[Wall]
|
92[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
93[Wall]
|
93[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
94[Wall]
|
94[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
95[Wall]
|
95[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
96[Wall]
|
96[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
97[Wall]
|
97[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
98[Wall]
|
98[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
99[Wall]
|
99[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
100["Cap Start"]
|
100["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
101["Cap Start"]
|
101["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
102["Cap Start"]
|
102["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
103["Cap Start"]
|
103["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
104["Cap Start"]
|
104["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
105["Cap Start"]
|
105["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
106["Cap Start"]
|
106["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
107["Cap End"]
|
107["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
108["Cap End"]
|
108["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
109["Cap End"]
|
109["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
110["Cap End"]
|
110["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
111["Cap End"]
|
111["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
112["Cap End"]
|
112["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
113["Cap End"]
|
113["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
114["SweepEdge Opposite"]
|
114["SweepEdge Opposite"]
|
||||||
115["SweepEdge Opposite"]
|
115["SweepEdge Opposite"]
|
||||||
116["SweepEdge Opposite"]
|
116["SweepEdge Opposite"]
|
||||||
|
@ -236,35 +236,65 @@ flowchart LR
|
|||||||
105["Sweep Extrusion<br>[3955, 3984, 0]"]
|
105["Sweep Extrusion<br>[3955, 3984, 0]"]
|
||||||
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 27 }]
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 27 }]
|
||||||
106[Wall]
|
106[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
107[Wall]
|
107[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
108[Wall]
|
108[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
109[Wall]
|
109[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
110[Wall]
|
110[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
111[Wall]
|
111[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
112[Wall]
|
112[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
113[Wall]
|
113[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
114[Wall]
|
114[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
115[Wall]
|
115[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
116[Wall]
|
116[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
117[Wall]
|
117[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
118[Wall]
|
118[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
119[Wall]
|
119[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
120[Wall]
|
120[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
121[Wall]
|
121[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
122[Wall]
|
122[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
123[Wall]
|
123[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
124[Wall]
|
124[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
125[Wall]
|
125[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
126["Cap Start"]
|
126["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
127["Cap Start"]
|
127["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
128["Cap Start"]
|
128["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
129["Cap Start"]
|
129["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
130["Cap Start"]
|
130["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
131["Cap End"]
|
131["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
132["Cap End"]
|
132["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
133["Cap End"]
|
133["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
134["Cap End"]
|
134["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
135["Cap End"]
|
135["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
136["SweepEdge Opposite"]
|
136["SweepEdge Opposite"]
|
||||||
137["SweepEdge Opposite"]
|
137["SweepEdge Opposite"]
|
||||||
138["SweepEdge Opposite"]
|
138["SweepEdge Opposite"]
|
||||||
|
@ -54,13 +54,21 @@ flowchart LR
|
|||||||
24["Sweep Extrusion<br>[1891, 1966, 0]"]
|
24["Sweep Extrusion<br>[1891, 1966, 0]"]
|
||||||
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
25[Wall]
|
25[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
26[Wall]
|
26[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
27[Wall]
|
27[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
28[Wall]
|
28[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
29["Cap Start"]
|
29["Cap Start"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
30["Cap End"]
|
30["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
31["Cap End"]
|
31["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
32["Cap End"]
|
32["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
33["SweepEdge Opposite"]
|
33["SweepEdge Opposite"]
|
||||||
34["SweepEdge Opposite"]
|
34["SweepEdge Opposite"]
|
||||||
35["SweepEdge Opposite"]
|
35["SweepEdge Opposite"]
|
||||||
|
@ -106,38 +106,71 @@ flowchart LR
|
|||||||
49["Sweep Extrusion<br>[4205, 4233, 0]"]
|
49["Sweep Extrusion<br>[4205, 4233, 0]"]
|
||||||
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
50[Wall]
|
50[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
51[Wall]
|
51[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
52[Wall]
|
52[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
53[Wall]
|
53[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
54[Wall]
|
54[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
55[Wall]
|
55[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
56[Wall]
|
56[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
57[Wall]
|
57[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
58[Wall]
|
58[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
59[Wall]
|
59[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
60[Wall]
|
60[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
61[Wall]
|
61[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
62[Wall]
|
62[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
63[Wall]
|
63[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
64[Wall]
|
64[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
65[Wall]
|
65[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
66[Wall]
|
66[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
67[Wall]
|
67[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
68[Wall]
|
68[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
69[Wall]
|
69[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
70[Wall]
|
70[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
71[Wall]
|
71[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
72[Wall]
|
72[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
73["Cap Start"]
|
73["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
74["Cap Start"]
|
74["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
75["Cap Start"]
|
75["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
76["Cap Start"]
|
76["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
77["Cap Start"]
|
77["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
78["Cap End"]
|
78["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
79["Cap End"]
|
79["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
80["Cap End"]
|
80["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
81["Cap End"]
|
81["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
82["Cap End"]
|
82["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
83["SweepEdge Opposite"]
|
83["SweepEdge Opposite"]
|
||||||
84["SweepEdge Opposite"]
|
84["SweepEdge Opposite"]
|
||||||
85["SweepEdge Opposite"]
|
85["SweepEdge Opposite"]
|
||||||
|
@ -136,35 +136,65 @@ flowchart LR
|
|||||||
64["Sweep Extrusion<br>[4812, 4862, 0]"]
|
64["Sweep Extrusion<br>[4812, 4862, 0]"]
|
||||||
%% [ProgramBodyItem { index: 29 }, ExpressionStatementExpr]
|
%% [ProgramBodyItem { index: 29 }, ExpressionStatementExpr]
|
||||||
65[Wall]
|
65[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
66[Wall]
|
66[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
67[Wall]
|
67[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
68[Wall]
|
68[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
69[Wall]
|
69[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
70[Wall]
|
70[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
71[Wall]
|
71[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
72[Wall]
|
72[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
73[Wall]
|
73[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
74[Wall]
|
74[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
75[Wall]
|
75[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
76[Wall]
|
76[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
77[Wall]
|
77[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
78[Wall]
|
78[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
79[Wall]
|
79[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
80[Wall]
|
80[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
81[Wall]
|
81[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
82[Wall]
|
82[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
83[Wall]
|
83[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
84[Wall]
|
84[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
85[Wall]
|
85[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
86[Wall]
|
86[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
87[Wall]
|
87[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
88[Wall]
|
88[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
89["Cap Start"]
|
89["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
90["Cap Start"]
|
90["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
91["Cap Start"]
|
91["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
92["Cap End"]
|
92["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
93["Cap End"]
|
93["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
94["Cap End"]
|
94["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
95["SweepEdge Opposite"]
|
95["SweepEdge Opposite"]
|
||||||
96["SweepEdge Opposite"]
|
96["SweepEdge Opposite"]
|
||||||
97["SweepEdge Opposite"]
|
97["SweepEdge Opposite"]
|
||||||
|
@ -280,75 +280,145 @@ flowchart LR
|
|||||||
133["Sweep Extrusion<br>[5840, 5885, 0]"]
|
133["Sweep Extrusion<br>[5840, 5885, 0]"]
|
||||||
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
134[Wall]
|
134[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
135[Wall]
|
135[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
136[Wall]
|
136[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
137[Wall]
|
137[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
138[Wall]
|
138[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
139[Wall]
|
139[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
140[Wall]
|
140[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
141[Wall]
|
141[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
142[Wall]
|
142[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
143[Wall]
|
143[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
144[Wall]
|
144[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
145[Wall]
|
145[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
146[Wall]
|
146[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
147[Wall]
|
147[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
148[Wall]
|
148[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
149[Wall]
|
149[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
150[Wall]
|
150[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
151[Wall]
|
151[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
152[Wall]
|
152[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
153[Wall]
|
153[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
154[Wall]
|
154[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
155[Wall]
|
155[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
156[Wall]
|
156[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
157[Wall]
|
157[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
158[Wall]
|
158[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
159[Wall]
|
159[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
160[Wall]
|
160[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
161[Wall]
|
161[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
162[Wall]
|
162[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
163[Wall]
|
163[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
164[Wall]
|
164[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
165[Wall]
|
165[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
166[Wall]
|
166[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
167[Wall]
|
167[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
168[Wall]
|
168[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
169[Wall]
|
169[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
170[Wall]
|
170[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
171[Wall]
|
171[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
172[Wall]
|
172[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
173[Wall]
|
173[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
174[Wall]
|
174[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
175[Wall]
|
175[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
176[Wall]
|
176[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
177[Wall]
|
177[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
178[Wall]
|
178[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
179[Wall]
|
179[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
180[Wall]
|
180[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
181[Wall]
|
181[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
182[Wall]
|
182[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
183[Wall]
|
183[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
184[Wall]
|
184[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
185[Wall]
|
185[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
186[Wall]
|
186[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
187[Wall]
|
187[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
188[Wall]
|
188[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
189[Wall]
|
189[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
190[Wall]
|
190[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
191[Wall]
|
191[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
192[Wall]
|
192[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
193[Wall]
|
193[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
194["Cap Start"]
|
194["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
195["Cap Start"]
|
195["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
196["Cap Start"]
|
196["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
197["Cap Start"]
|
197["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
198["Cap Start"]
|
198["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
199["Cap End"]
|
199["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
200["Cap End"]
|
200["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
201["Cap End"]
|
201["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
202["Cap End"]
|
202["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
203["Cap End"]
|
203["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
204["SweepEdge Opposite"]
|
204["SweepEdge Opposite"]
|
||||||
205["SweepEdge Opposite"]
|
205["SweepEdge Opposite"]
|
||||||
206["SweepEdge Opposite"]
|
206["SweepEdge Opposite"]
|
||||||
|
@ -77,33 +77,61 @@ flowchart LR
|
|||||||
36["Sweep Extrusion<br>[2098, 2121, 0]"]
|
36["Sweep Extrusion<br>[2098, 2121, 0]"]
|
||||||
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
37[Wall]
|
37[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
38[Wall]
|
38[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
39[Wall]
|
39[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
40[Wall]
|
40[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
41[Wall]
|
41[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
42[Wall]
|
42[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
43[Wall]
|
43[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
44[Wall]
|
44[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
45[Wall]
|
45[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
46[Wall]
|
46[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
47[Wall]
|
47[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
48[Wall]
|
48[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
49[Wall]
|
49[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
50[Wall]
|
50[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
51[Wall]
|
51[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
52[Wall]
|
52[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
53[Wall]
|
53[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
54[Wall]
|
54[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
55[Wall]
|
55[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
56[Wall]
|
56[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
57["Cap Start"]
|
57["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
58["Cap Start"]
|
58["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
59["Cap Start"]
|
59["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
60["Cap Start"]
|
60["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
61["Cap End"]
|
61["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
62["Cap End"]
|
62["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
63["Cap End"]
|
63["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
64["Cap End"]
|
64["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
65["SweepEdge Opposite"]
|
65["SweepEdge Opposite"]
|
||||||
66["SweepEdge Opposite"]
|
66["SweepEdge Opposite"]
|
||||||
67["SweepEdge Opposite"]
|
67["SweepEdge Opposite"]
|
||||||
|
@ -170,31 +170,57 @@ flowchart LR
|
|||||||
81["Sweep Extrusion<br>[5701, 5752, 0]"]
|
81["Sweep Extrusion<br>[5701, 5752, 0]"]
|
||||||
%% [ProgramBodyItem { index: 26 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 26 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
82[Wall]
|
82[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
83[Wall]
|
83[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
84[Wall]
|
84[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
85[Wall]
|
85[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
86[Wall]
|
86[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
87[Wall]
|
87[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
88[Wall]
|
88[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
89[Wall]
|
89[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
90[Wall]
|
90[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
91[Wall]
|
91[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
92[Wall]
|
92[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
93[Wall]
|
93[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
94[Wall]
|
94[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
95[Wall]
|
95[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
96[Wall]
|
96[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
97[Wall]
|
97[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
98[Wall]
|
98[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
99[Wall]
|
99[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
100["Cap Start"]
|
100["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
101["Cap Start"]
|
101["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
102["Cap Start"]
|
102["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
103["Cap Start"]
|
103["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
104["Cap End"]
|
104["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
105["Cap End"]
|
105["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
106["Cap End"]
|
106["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
107["Cap End"]
|
107["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
108["SweepEdge Opposite"]
|
108["SweepEdge Opposite"]
|
||||||
109["SweepEdge Opposite"]
|
109["SweepEdge Opposite"]
|
||||||
110["SweepEdge Opposite"]
|
110["SweepEdge Opposite"]
|
||||||
|
@ -43,19 +43,33 @@ flowchart LR
|
|||||||
20["Sweep Revolve<br>[1594, 1676, 0]"]
|
20["Sweep Revolve<br>[1594, 1676, 0]"]
|
||||||
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
21[Wall]
|
21[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
22[Wall]
|
22[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
23[Wall]
|
23[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
24[Wall]
|
24[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
25[Wall]
|
25[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
26[Wall]
|
26[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
27[Wall]
|
27[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
28[Wall]
|
28[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
29[Wall]
|
29[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
30[Wall]
|
30[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
31["Cap Start"]
|
31["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
32["Cap Start"]
|
32["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
33["Cap End"]
|
33["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
34["Cap End"]
|
34["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
35["SweepEdge Opposite"]
|
35["SweepEdge Opposite"]
|
||||||
36["SweepEdge Opposite"]
|
36["SweepEdge Opposite"]
|
||||||
37["SweepEdge Opposite"]
|
37["SweepEdge Opposite"]
|
||||||
|
@ -200,73 +200,141 @@ flowchart LR
|
|||||||
95["Sweep Revolve<br>[7771, 7825, 0]"]
|
95["Sweep Revolve<br>[7771, 7825, 0]"]
|
||||||
%% [ProgramBodyItem { index: 45 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 45 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
96[Wall]
|
96[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
97[Wall]
|
97[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
98[Wall]
|
98[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
99[Wall]
|
99[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
100[Wall]
|
100[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
101[Wall]
|
101[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
102[Wall]
|
102[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
103[Wall]
|
103[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
104[Wall]
|
104[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
105[Wall]
|
105[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
106[Wall]
|
106[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
107[Wall]
|
107[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
108[Wall]
|
108[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
109[Wall]
|
109[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
110[Wall]
|
110[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
111[Wall]
|
111[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
112[Wall]
|
112[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
113[Wall]
|
113[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
114[Wall]
|
114[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
115[Wall]
|
115[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
116[Wall]
|
116[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
117[Wall]
|
117[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
118[Wall]
|
118[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
119[Wall]
|
119[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
120[Wall]
|
120[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
121[Wall]
|
121[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
122[Wall]
|
122[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
123[Wall]
|
123[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
124[Wall]
|
124[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
125[Wall]
|
125[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
126[Wall]
|
126[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
127[Wall]
|
127[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
128[Wall]
|
128[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
129[Wall]
|
129[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
130[Wall]
|
130[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
131[Wall]
|
131[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
132[Wall]
|
132[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
133[Wall]
|
133[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
134[Wall]
|
134[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
135[Wall]
|
135[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
136[Wall]
|
136[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
137[Wall]
|
137[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
138[Wall]
|
138[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
139[Wall]
|
139[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
140[Wall]
|
140[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
141[Wall]
|
141[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
142[Wall]
|
142[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
143[Wall]
|
143[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
144[Wall]
|
144[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
145[Wall]
|
145[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
146[Wall]
|
146[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
147["Cap Start"]
|
147["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
148["Cap Start"]
|
148["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
149["Cap Start"]
|
149["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
150["Cap Start"]
|
150["Cap Start"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 30 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
151["Cap Start"]
|
151["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
152["Cap Start"]
|
152["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
153["Cap Start"]
|
153["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
154["Cap Start"]
|
154["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
155["Cap Start"]
|
155["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
156["Cap End"]
|
156["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
157["Cap End"]
|
157["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
158["Cap End"]
|
158["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
159["Cap End"]
|
159["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
160["Cap End"]
|
160["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
161["Cap End"]
|
161["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
162["Cap End"]
|
162["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
163["Cap End"]
|
163["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
164["SweepEdge Opposite"]
|
164["SweepEdge Opposite"]
|
||||||
165["SweepEdge Opposite"]
|
165["SweepEdge Opposite"]
|
||||||
166["SweepEdge Opposite"]
|
166["SweepEdge Opposite"]
|
||||||
|
@ -100,33 +100,61 @@ flowchart LR
|
|||||||
47["Sweep Extrusion<br>[4654, 4698, 0]"]
|
47["Sweep Extrusion<br>[4654, 4698, 0]"]
|
||||||
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
48[Wall]
|
48[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
49[Wall]
|
49[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
50[Wall]
|
50[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
51[Wall]
|
51[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
52[Wall]
|
52[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
53[Wall]
|
53[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
54[Wall]
|
54[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
55[Wall]
|
55[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
56[Wall]
|
56[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
57[Wall]
|
57[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
58[Wall]
|
58[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
59[Wall]
|
59[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
60[Wall]
|
60[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
61[Wall]
|
61[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
62[Wall]
|
62[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
63[Wall]
|
63[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
64[Wall]
|
64[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
65[Wall]
|
65[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
66[Wall]
|
66[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
67["Cap Start"]
|
67["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
68["Cap Start"]
|
68["Cap Start"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
69["Cap Start"]
|
69["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
70["Cap Start"]
|
70["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
71["Cap Start"]
|
71["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
72["Cap End"]
|
72["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
73["Cap End"]
|
73["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
74["Cap End"]
|
74["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
75["Cap End"]
|
75["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
76["SweepEdge Opposite"]
|
76["SweepEdge Opposite"]
|
||||||
77["SweepEdge Opposite"]
|
77["SweepEdge Opposite"]
|
||||||
78["SweepEdge Opposite"]
|
78["SweepEdge Opposite"]
|
||||||
|
@ -188,68 +188,131 @@ flowchart LR
|
|||||||
90["CompositeSolid Union<br>[3633, 3668, 0]"]
|
90["CompositeSolid Union<br>[3633, 3668, 0]"]
|
||||||
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
91[Wall]
|
91[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
92[Wall]
|
92[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
93[Wall]
|
93[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
94[Wall]
|
94[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
95[Wall]
|
95[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
96[Wall]
|
96[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
97[Wall]
|
97[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
98[Wall]
|
98[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
99[Wall]
|
99[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
100[Wall]
|
100[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
101[Wall]
|
101[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
102[Wall]
|
102[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
103[Wall]
|
103[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
104[Wall]
|
104[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
105[Wall]
|
105[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
106[Wall]
|
106[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
107[Wall]
|
107[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
108[Wall]
|
108[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
109[Wall]
|
109[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
110[Wall]
|
110[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
111[Wall]
|
111[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
112[Wall]
|
112[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
113[Wall]
|
113[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
114[Wall]
|
114[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
115[Wall]
|
115[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
116[Wall]
|
116[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
117[Wall]
|
117[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
118[Wall]
|
118[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
119[Wall]
|
119[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
120[Wall]
|
120[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
121[Wall]
|
121[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
122[Wall]
|
122[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
123[Wall]
|
123[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
124[Wall]
|
124[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
125[Wall]
|
125[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
126[Wall]
|
126[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
127[Wall]
|
127[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
128[Wall]
|
128[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
129[Wall]
|
129[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
130[Wall]
|
130[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
131[Wall]
|
131[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
132[Wall]
|
132[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
133[Wall]
|
133[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
134[Wall]
|
134[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
135[Wall]
|
135[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
136[Wall]
|
136[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
137[Wall]
|
137[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
138[Wall]
|
138[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
139[Wall]
|
139[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
140[Wall]
|
140[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
141[Wall]
|
141[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
142["Cap Start"]
|
142["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
143["Cap Start"]
|
143["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
144["Cap Start"]
|
144["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
145["Cap Start"]
|
145["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
146["Cap Start"]
|
146["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
147["Cap Start"]
|
147["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
148["Cap End"]
|
148["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
149["Cap End"]
|
149["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
150["Cap End"]
|
150["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
151["Cap End"]
|
151["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
152["Cap End"]
|
152["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
153["Cap End"]
|
153["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
154["SweepEdge Opposite"]
|
154["SweepEdge Opposite"]
|
||||||
155["SweepEdge Opposite"]
|
155["SweepEdge Opposite"]
|
||||||
156["SweepEdge Opposite"]
|
156["SweepEdge Opposite"]
|
||||||
|
@ -71,11 +71,17 @@ flowchart LR
|
|||||||
33["Sweep Loft<br>[3337, 3404, 0]"]
|
33["Sweep Loft<br>[3337, 3404, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
34[Wall]
|
34[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
35[Wall]
|
35[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
36[Wall]
|
36[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
37[Wall]
|
37[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
38["Cap Start"]
|
38["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
39["Cap End"]
|
39["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
40["SweepEdge Opposite"]
|
40["SweepEdge Opposite"]
|
||||||
41["SweepEdge Opposite"]
|
41["SweepEdge Opposite"]
|
||||||
42["SweepEdge Opposite"]
|
42["SweepEdge Opposite"]
|
||||||
|
@ -231,20 +231,35 @@ flowchart LR
|
|||||||
108["Sweep Loft<br>[6125, 6192, 0]"]
|
108["Sweep Loft<br>[6125, 6192, 0]"]
|
||||||
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
109[Wall]
|
109[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
110[Wall]
|
110[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
111[Wall]
|
111[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
112[Wall]
|
112[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
113[Wall]
|
113[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
114[Wall]
|
114[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
115[Wall]
|
115[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
116[Wall]
|
116[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
117[Wall]
|
117[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
118["Cap Start"]
|
118["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
119["Cap Start"]
|
119["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
120["Cap Start"]
|
120["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
121["Cap End"]
|
121["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
122["Cap End"]
|
122["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
123["Cap End"]
|
123["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
124["SweepEdge Opposite"]
|
124["SweepEdge Opposite"]
|
||||||
125["SweepEdge Opposite"]
|
125["SweepEdge Opposite"]
|
||||||
126["SweepEdge Opposite"]
|
126["SweepEdge Opposite"]
|
||||||
|
@ -188,40 +188,75 @@ flowchart LR
|
|||||||
88["CompositeSolid Union<br>[2305, 2334, 0]"]
|
88["CompositeSolid Union<br>[2305, 2334, 0]"]
|
||||||
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
89[Wall]
|
89[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
90[Wall]
|
90[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
91[Wall]
|
91[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
92[Wall]
|
92[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
93[Wall]
|
93[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
94[Wall]
|
94[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
95[Wall]
|
95[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
96[Wall]
|
96[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
97[Wall]
|
97[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
98[Wall]
|
98[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
99[Wall]
|
99[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
100[Wall]
|
100[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
101[Wall]
|
101[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
102[Wall]
|
102[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
103[Wall]
|
103[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
104[Wall]
|
104[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
105[Wall]
|
105[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
106[Wall]
|
106[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
107[Wall]
|
107[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
108[Wall]
|
108[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
109[Wall]
|
109[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
110[Wall]
|
110[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
111[Wall]
|
111[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
112["Cap Start"]
|
112["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
113["Cap Start"]
|
113["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
114["Cap Start"]
|
114["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
115["Cap Start"]
|
115["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
116["Cap Start"]
|
116["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
117["Cap Start"]
|
117["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
118["Cap End"]
|
118["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
119["Cap End"]
|
119["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
120["Cap End"]
|
120["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
121["Cap End"]
|
121["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
122["Cap End"]
|
122["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
123["Cap End"]
|
123["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
124["SweepEdge Opposite"]
|
124["SweepEdge Opposite"]
|
||||||
125["SweepEdge Opposite"]
|
125["SweepEdge Opposite"]
|
||||||
126["SweepEdge Opposite"]
|
126["SweepEdge Opposite"]
|
||||||
|
@ -55,11 +55,17 @@ flowchart LR
|
|||||||
25["Sweep Loft<br>[2816, 2917, 0]"]
|
25["Sweep Loft<br>[2816, 2917, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
26[Wall]
|
26[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
27[Wall]
|
27[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
28[Wall]
|
28[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
29[Wall]
|
29[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
30["Cap Start"]
|
30["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
31["Cap End"]
|
31["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
32["SweepEdge Opposite"]
|
32["SweepEdge Opposite"]
|
||||||
33["SweepEdge Opposite"]
|
33["SweepEdge Opposite"]
|
||||||
34["SweepEdge Opposite"]
|
34["SweepEdge Opposite"]
|
||||||
|
@ -171,20 +171,35 @@ flowchart LR
|
|||||||
79["Sweep Loft<br>[5671, 5772, 0]"]
|
79["Sweep Loft<br>[5671, 5772, 0]"]
|
||||||
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
80[Wall]
|
80[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
81[Wall]
|
81[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
82[Wall]
|
82[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
83[Wall]
|
83[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
84[Wall]
|
84[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
85[Wall]
|
85[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
86[Wall]
|
86[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
87[Wall]
|
87[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
88[Wall]
|
88[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
89["Cap Start"]
|
89["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
90["Cap Start"]
|
90["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
91["Cap Start"]
|
91["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
92["Cap End"]
|
92["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
93["Cap End"]
|
93["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
94["Cap End"]
|
94["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
95["SweepEdge Opposite"]
|
95["SweepEdge Opposite"]
|
||||||
96["SweepEdge Opposite"]
|
96["SweepEdge Opposite"]
|
||||||
97["SweepEdge Opposite"]
|
97["SweepEdge Opposite"]
|
||||||
|
@ -29,13 +29,21 @@ flowchart LR
|
|||||||
13["Sweep Extrusion<br>[1003, 1024, 0]"]
|
13["Sweep Extrusion<br>[1003, 1024, 0]"]
|
||||||
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
14[Wall]
|
14[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15[Wall]
|
15[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
16[Wall]
|
16[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
17[Wall]
|
17[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
18[Wall]
|
18[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
19[Wall]
|
19[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
20["Cap Start"]
|
20["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
21["Cap End"]
|
21["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
22["SweepEdge Opposite"]
|
22["SweepEdge Opposite"]
|
||||||
23["SweepEdge Opposite"]
|
23["SweepEdge Opposite"]
|
||||||
24["SweepEdge Opposite"]
|
24["SweepEdge Opposite"]
|
||||||
|
@ -734,271 +734,537 @@ flowchart LR
|
|||||||
351["Sweep Extrusion<br>[8182, 8206, 0]"]
|
351["Sweep Extrusion<br>[8182, 8206, 0]"]
|
||||||
%% [ProgramBodyItem { index: 44 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 44 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
352[Wall]
|
352[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
353[Wall]
|
353[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
354[Wall]
|
354[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
355[Wall]
|
355[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
356[Wall]
|
356[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
357[Wall]
|
357[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
358[Wall]
|
358[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
359[Wall]
|
359[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
360[Wall]
|
360[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
361[Wall]
|
361[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
362[Wall]
|
362[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
363[Wall]
|
363[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
364[Wall]
|
364[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
365[Wall]
|
365[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
366[Wall]
|
366[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
367[Wall]
|
367[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
368[Wall]
|
368[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
369[Wall]
|
369[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
370[Wall]
|
370[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
371[Wall]
|
371[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
372[Wall]
|
372[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
373[Wall]
|
373[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
374[Wall]
|
374[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
375[Wall]
|
375[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
376[Wall]
|
376[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
377[Wall]
|
377[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
378[Wall]
|
378[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
379[Wall]
|
379[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
380[Wall]
|
380[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
381[Wall]
|
381[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
382[Wall]
|
382[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
383[Wall]
|
383[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
384[Wall]
|
384[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
385[Wall]
|
385[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
386[Wall]
|
386[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
387[Wall]
|
387[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
388[Wall]
|
388[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
389[Wall]
|
389[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
390[Wall]
|
390[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
391[Wall]
|
391[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
392[Wall]
|
392[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
393[Wall]
|
393[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
394[Wall]
|
394[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
395[Wall]
|
395[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
396[Wall]
|
396[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
397[Wall]
|
397[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
398[Wall]
|
398[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
399[Wall]
|
399[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
400[Wall]
|
400[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
401[Wall]
|
401[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
402[Wall]
|
402[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
403[Wall]
|
403[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
404[Wall]
|
404[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
405[Wall]
|
405[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
406[Wall]
|
406[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
407[Wall]
|
407[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
408[Wall]
|
408[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
409[Wall]
|
409[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
410[Wall]
|
410[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
411[Wall]
|
411[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
412[Wall]
|
412[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
413[Wall]
|
413[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
414[Wall]
|
414[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
415[Wall]
|
415[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
416[Wall]
|
416[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
417[Wall]
|
417[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
418[Wall]
|
418[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
419[Wall]
|
419[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
420[Wall]
|
420[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
421[Wall]
|
421[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
422[Wall]
|
422[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
423[Wall]
|
423[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
424[Wall]
|
424[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
425[Wall]
|
425[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
426[Wall]
|
426[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
427[Wall]
|
427[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
428[Wall]
|
428[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
429[Wall]
|
429[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
430[Wall]
|
430[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
431[Wall]
|
431[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
432[Wall]
|
432[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
433[Wall]
|
433[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
434[Wall]
|
434[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
435[Wall]
|
435[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
436[Wall]
|
436[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
437[Wall]
|
437[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
438[Wall]
|
438[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
439[Wall]
|
439[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
440[Wall]
|
440[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
441[Wall]
|
441[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
442[Wall]
|
442[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
443[Wall]
|
443[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
444[Wall]
|
444[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
445[Wall]
|
445[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
446[Wall]
|
446[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
447[Wall]
|
447[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
448[Wall]
|
448[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
449[Wall]
|
449[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
450[Wall]
|
450[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
451[Wall]
|
451[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
452[Wall]
|
452[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
453[Wall]
|
453[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
454[Wall]
|
454[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
455[Wall]
|
455[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
456[Wall]
|
456[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
457[Wall]
|
457[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
458[Wall]
|
458[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
459[Wall]
|
459[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
460[Wall]
|
460[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
461[Wall]
|
461[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
462[Wall]
|
462[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
463[Wall]
|
463[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
464[Wall]
|
464[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
465[Wall]
|
465[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
466[Wall]
|
466[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
467[Wall]
|
467[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
468[Wall]
|
468[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
469[Wall]
|
469[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
470[Wall]
|
470[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
471[Wall]
|
471[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
472[Wall]
|
472[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
473[Wall]
|
473[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
474[Wall]
|
474[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
475[Wall]
|
475[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
476[Wall]
|
476[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
477[Wall]
|
477[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
478[Wall]
|
478[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
479[Wall]
|
479[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
480[Wall]
|
480[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
481[Wall]
|
481[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
482[Wall]
|
482[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
483[Wall]
|
483[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
484[Wall]
|
484[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
485[Wall]
|
485[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
486[Wall]
|
486[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
487[Wall]
|
487[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
488[Wall]
|
488[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
489[Wall]
|
489[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
490[Wall]
|
490[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
491[Wall]
|
491[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
492[Wall]
|
492[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
493[Wall]
|
493[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
494[Wall]
|
494[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
495[Wall]
|
495[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
496[Wall]
|
496[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
497[Wall]
|
497[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
498[Wall]
|
498[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
499[Wall]
|
499[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
500[Wall]
|
500[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
501[Wall]
|
501[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
502[Wall]
|
502[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
503[Wall]
|
503[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
504[Wall]
|
504[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
505[Wall]
|
505[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
506[Wall]
|
506[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
507[Wall]
|
507[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
508[Wall]
|
508[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
509[Wall]
|
509[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
510[Wall]
|
510[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
511[Wall]
|
511[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
512[Wall]
|
512[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
513[Wall]
|
513[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
514[Wall]
|
514[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
515[Wall]
|
515[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
516[Wall]
|
516[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
517[Wall]
|
517[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
518[Wall]
|
518[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
519[Wall]
|
519[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
520[Wall]
|
520[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
521[Wall]
|
521[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
522[Wall]
|
522[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
523[Wall]
|
523[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
524[Wall]
|
524[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
525[Wall]
|
525[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
526[Wall]
|
526[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
527[Wall]
|
527[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
528[Wall]
|
528[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
529[Wall]
|
529[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
530[Wall]
|
530[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
531[Wall]
|
531[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
532[Wall]
|
532[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
533[Wall]
|
533[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
534[Wall]
|
534[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
535[Wall]
|
535[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
536[Wall]
|
536[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
537[Wall]
|
537[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
538[Wall]
|
538[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
539[Wall]
|
539[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
540[Wall]
|
540[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
541[Wall]
|
541[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
542[Wall]
|
542[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
543[Wall]
|
543[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
544[Wall]
|
544[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
545[Wall]
|
545[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
546[Wall]
|
546[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
547[Wall]
|
547[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
548[Wall]
|
548[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
549[Wall]
|
549[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
550[Wall]
|
550[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
551[Wall]
|
551[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
552[Wall]
|
552[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
553[Wall]
|
553[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
554[Wall]
|
554[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
555[Wall]
|
555[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
556[Wall]
|
556[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
557[Wall]
|
557[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
558[Wall]
|
558[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
559[Wall]
|
559[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
560["Cap Start"]
|
560["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
561["Cap Start"]
|
561["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
562["Cap Start"]
|
562["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
563["Cap Start"]
|
563["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
564["Cap Start"]
|
564["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
565["Cap Start"]
|
565["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
566["Cap Start"]
|
566["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
567["Cap Start"]
|
567["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
568["Cap Start"]
|
568["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
569["Cap Start"]
|
569["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
570["Cap Start"]
|
570["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
571["Cap Start"]
|
571["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
572["Cap Start"]
|
572["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
573["Cap Start"]
|
573["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
574["Cap Start"]
|
574["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
575["Cap Start"]
|
575["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
576["Cap Start"]
|
576["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
577["Cap Start"]
|
577["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
578["Cap Start"]
|
578["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
579["Cap Start"]
|
579["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
580["Cap Start"]
|
580["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
581["Cap Start"]
|
581["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
582["Cap Start"]
|
582["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
583["Cap Start"]
|
583["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
584["Cap Start"]
|
584["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
585["Cap Start"]
|
585["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
586["Cap Start"]
|
586["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
587["Cap End"]
|
587["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
588["Cap End"]
|
588["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
589["Cap End"]
|
589["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
590["Cap End"]
|
590["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
591["Cap End"]
|
591["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
592["Cap End"]
|
592["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
593["Cap End"]
|
593["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
594["Cap End"]
|
594["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
595["Cap End"]
|
595["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
596["Cap End"]
|
596["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
597["Cap End"]
|
597["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
598["Cap End"]
|
598["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
599["Cap End"]
|
599["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
600["Cap End"]
|
600["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
601["Cap End"]
|
601["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
602["Cap End"]
|
602["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
603["Cap End"]
|
603["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
604["Cap End"]
|
604["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
605["Cap End"]
|
605["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
606["Cap End"]
|
606["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
607["Cap End"]
|
607["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
608["Cap End"]
|
608["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
609["Cap End"]
|
609["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
610["Cap End"]
|
610["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
611["Cap End"]
|
611["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
612["Cap End"]
|
612["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
613["Cap End"]
|
613["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
614["Cap End"]
|
614["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
615["Cap End"]
|
615["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
616["Cap End"]
|
616["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
617["Cap End"]
|
617["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
618["SweepEdge Opposite"]
|
618["SweepEdge Opposite"]
|
||||||
619["SweepEdge Opposite"]
|
619["SweepEdge Opposite"]
|
||||||
620["SweepEdge Opposite"]
|
620["SweepEdge Opposite"]
|
||||||
|
@ -850,239 +850,473 @@ flowchart LR
|
|||||||
403["Sweep Extrusion<br>[8122, 8167, 0]"]
|
403["Sweep Extrusion<br>[8122, 8167, 0]"]
|
||||||
%% [ProgramBodyItem { index: 66 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 66 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
404[Wall]
|
404[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
405[Wall]
|
405[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
406[Wall]
|
406[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
407[Wall]
|
407[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
408[Wall]
|
408[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
409[Wall]
|
409[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
410[Wall]
|
410[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
411[Wall]
|
411[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
412[Wall]
|
412[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
413[Wall]
|
413[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
414[Wall]
|
414[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
415[Wall]
|
415[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
416[Wall]
|
416[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
417[Wall]
|
417[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
418[Wall]
|
418[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
419[Wall]
|
419[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
420[Wall]
|
420[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
421[Wall]
|
421[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
422[Wall]
|
422[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
423[Wall]
|
423[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
424[Wall]
|
424[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
425[Wall]
|
425[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
426[Wall]
|
426[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
427[Wall]
|
427[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
428[Wall]
|
428[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
429[Wall]
|
429[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
430[Wall]
|
430[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
431[Wall]
|
431[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
432[Wall]
|
432[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
433[Wall]
|
433[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
434[Wall]
|
434[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
435[Wall]
|
435[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
436[Wall]
|
436[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
437[Wall]
|
437[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
438[Wall]
|
438[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
439[Wall]
|
439[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
440[Wall]
|
440[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
441[Wall]
|
441[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
442[Wall]
|
442[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
443[Wall]
|
443[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
444[Wall]
|
444[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
445[Wall]
|
445[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
446[Wall]
|
446[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
447[Wall]
|
447[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
448[Wall]
|
448[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
449[Wall]
|
449[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
450[Wall]
|
450[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
451[Wall]
|
451[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
452[Wall]
|
452[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
453[Wall]
|
453[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
454[Wall]
|
454[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
455[Wall]
|
455[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
456[Wall]
|
456[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
457[Wall]
|
457[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
458[Wall]
|
458[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
459[Wall]
|
459[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
460[Wall]
|
460[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
461[Wall]
|
461[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
462[Wall]
|
462[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
463[Wall]
|
463[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
464[Wall]
|
464[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
465[Wall]
|
465[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
466[Wall]
|
466[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
467[Wall]
|
467[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
468[Wall]
|
468[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
469[Wall]
|
469[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
470[Wall]
|
470[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
471[Wall]
|
471[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
472[Wall]
|
472[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
473[Wall]
|
473[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
474[Wall]
|
474[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
475[Wall]
|
475[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
476[Wall]
|
476[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
477[Wall]
|
477[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
478[Wall]
|
478[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
479[Wall]
|
479[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
480[Wall]
|
480[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
481[Wall]
|
481[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
482[Wall]
|
482[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
483[Wall]
|
483[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
484[Wall]
|
484[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
485[Wall]
|
485[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
486[Wall]
|
486[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
487[Wall]
|
487[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
488[Wall]
|
488[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
489[Wall]
|
489[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
490[Wall]
|
490[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
491[Wall]
|
491[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
492[Wall]
|
492[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
493[Wall]
|
493[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
494[Wall]
|
494[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
495[Wall]
|
495[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
496[Wall]
|
496[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
497[Wall]
|
497[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
498[Wall]
|
498[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
499[Wall]
|
499[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
500[Wall]
|
500[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
501[Wall]
|
501[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
502[Wall]
|
502[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
503[Wall]
|
503[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
504[Wall]
|
504[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
505[Wall]
|
505[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
506[Wall]
|
506[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
507[Wall]
|
507[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
508[Wall]
|
508[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
509[Wall]
|
509[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
510[Wall]
|
510[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
511[Wall]
|
511[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
512[Wall]
|
512[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
513[Wall]
|
513[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
514[Wall]
|
514[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
515[Wall]
|
515[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
516[Wall]
|
516[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
517[Wall]
|
517[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
518[Wall]
|
518[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
519[Wall]
|
519[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
520[Wall]
|
520[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
521[Wall]
|
521[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
522[Wall]
|
522[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
523[Wall]
|
523[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
524[Wall]
|
524[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
525[Wall]
|
525[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
526[Wall]
|
526[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
527[Wall]
|
527[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
528[Wall]
|
528[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
529[Wall]
|
529[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
530[Wall]
|
530[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
531[Wall]
|
531[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
532[Wall]
|
532[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
533[Wall]
|
533[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
534[Wall]
|
534[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
535[Wall]
|
535[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
536[Wall]
|
536[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
537[Wall]
|
537[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
538[Wall]
|
538[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
539[Wall]
|
539[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
540[Wall]
|
540[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
541[Wall]
|
541[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
542[Wall]
|
542[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
543[Wall]
|
543[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
544[Wall]
|
544[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
545[Wall]
|
545[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
546[Wall]
|
546[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
547[Wall]
|
547[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
548[Wall]
|
548[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
549[Wall]
|
549[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
550[Wall]
|
550[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
551[Wall]
|
551[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
552[Wall]
|
552[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
553[Wall]
|
553[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
554[Wall]
|
554[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
555[Wall]
|
555[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
556[Wall]
|
556[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
557[Wall]
|
557[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
558[Wall]
|
558[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
559[Wall]
|
559[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
560[Wall]
|
560[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
561[Wall]
|
561[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
562[Wall]
|
562[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
563[Wall]
|
563[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
564[Wall]
|
564[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
565[Wall]
|
565[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
566[Wall]
|
566[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
567[Wall]
|
567[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
568[Wall]
|
568[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
569[Wall]
|
569[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
570[Wall]
|
570[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
571[Wall]
|
571[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
572[Wall]
|
572[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
573[Wall]
|
573[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
574[Wall]
|
574[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
575[Wall]
|
575[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
576[Wall]
|
576[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
577[Wall]
|
577[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
578[Wall]
|
578[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
579[Wall]
|
579[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
580[Wall]
|
580[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
581[Wall]
|
581[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
582[Wall]
|
582[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
583[Wall]
|
583[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
584[Wall]
|
584[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
585[Wall]
|
585[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
586[Wall]
|
586[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
587[Wall]
|
587[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
588[Wall]
|
588[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
589[Wall]
|
589[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
590[Wall]
|
590[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
591[Wall]
|
591[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
592["Cap Start"]
|
592["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
593["Cap Start"]
|
593["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
594["Cap Start"]
|
594["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
595["Cap Start"]
|
595["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
596["Cap Start"]
|
596["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
597["Cap Start"]
|
597["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
598["Cap Start"]
|
598["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
599["Cap Start"]
|
599["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
600["Cap Start"]
|
600["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
601["Cap Start"]
|
601["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
602["Cap Start"]
|
602["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
603["Cap Start"]
|
603["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
604["Cap Start"]
|
604["Cap Start"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
605["Cap Start"]
|
605["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
606["Cap Start"]
|
606["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
607["Cap Start"]
|
607["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
608["Cap Start"]
|
608["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
609["Cap Start"]
|
609["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
610["Cap Start"]
|
610["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
611["Cap Start"]
|
611["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
612["Cap End"]
|
612["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
613["Cap End"]
|
613["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
614["Cap End"]
|
614["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
615["Cap End"]
|
615["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
616["Cap End"]
|
616["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
617["Cap End"]
|
617["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
618["Cap End"]
|
618["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
619["Cap End"]
|
619["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
620["Cap End"]
|
620["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
621["Cap End"]
|
621["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
622["Cap End"]
|
622["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
623["Cap End"]
|
623["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
624["Cap End"]
|
624["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
625["Cap End"]
|
625["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
626["Cap End"]
|
626["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
627["Cap End"]
|
627["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
628["Cap End"]
|
628["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
629["Cap End"]
|
629["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
630["Cap End"]
|
630["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
631["Cap End"]
|
631["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
632["Cap End"]
|
632["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
633["Cap End"]
|
633["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
634["Cap End"]
|
634["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
635["Cap End"]
|
635["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
636["Cap End"]
|
636["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
637["Cap End"]
|
637["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
638["SweepEdge Opposite"]
|
638["SweepEdge Opposite"]
|
||||||
639["SweepEdge Opposite"]
|
639["SweepEdge Opposite"]
|
||||||
640["SweepEdge Opposite"]
|
640["SweepEdge Opposite"]
|
||||||
|
@ -69,20 +69,35 @@ flowchart LR
|
|||||||
32["Sweep Extrusion<br>[2583, 2611, 0]"]
|
32["Sweep Extrusion<br>[2583, 2611, 0]"]
|
||||||
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
33[Wall]
|
33[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
34[Wall]
|
34[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
35[Wall]
|
35[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
36[Wall]
|
36[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
37[Wall]
|
37[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
38[Wall]
|
38[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
39[Wall]
|
39[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
40[Wall]
|
40[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
41[Wall]
|
41[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
42[Wall]
|
42[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
43["Cap Start"]
|
43["Cap Start"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
44["Cap Start"]
|
44["Cap Start"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
45["Cap End"]
|
45["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
46["Cap End"]
|
46["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
47["Cap End"]
|
47["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
48["SweepEdge Opposite"]
|
48["SweepEdge Opposite"]
|
||||||
49["SweepEdge Opposite"]
|
49["SweepEdge Opposite"]
|
||||||
50["SweepEdge Opposite"]
|
50["SweepEdge Opposite"]
|
||||||
|
@ -144,41 +144,77 @@ flowchart LR
|
|||||||
66["Sweep Extrusion<br>[2381, 2404, 0]"]
|
66["Sweep Extrusion<br>[2381, 2404, 0]"]
|
||||||
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
67[Wall]
|
67[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
68[Wall]
|
68[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
69[Wall]
|
69[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
70[Wall]
|
70[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
71[Wall]
|
71[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
72[Wall]
|
72[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
73[Wall]
|
73[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
74[Wall]
|
74[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
75[Wall]
|
75[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
76[Wall]
|
76[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
77[Wall]
|
77[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
78[Wall]
|
78[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
79[Wall]
|
79[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
80[Wall]
|
80[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
81["Cap Start"]
|
81["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
82["Cap Start"]
|
82["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
83["Cap Start"]
|
83["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
84["Cap Start"]
|
84["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
85["Cap Start"]
|
85["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
86["Cap Start"]
|
86["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
87["Cap Start"]
|
87["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
88["Cap Start"]
|
88["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
89["Cap Start"]
|
89["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
90["Cap Start"]
|
90["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
91["Cap Start"]
|
91["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
92["Cap End"]
|
92["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
93["Cap End"]
|
93["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
94["Cap End"]
|
94["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
95["Cap End"]
|
95["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
96["Cap End"]
|
96["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
97["Cap End"]
|
97["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
98["Cap End"]
|
98["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
99["Cap End"]
|
99["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
100["Cap End"]
|
100["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
101["Cap End"]
|
101["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
102["Cap End"]
|
102["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
103["SweepEdge Opposite"]
|
103["SweepEdge Opposite"]
|
||||||
104["SweepEdge Opposite"]
|
104["SweepEdge Opposite"]
|
||||||
105["SweepEdge Opposite"]
|
105["SweepEdge Opposite"]
|
||||||
|
@ -53,11 +53,17 @@ flowchart LR
|
|||||||
23["Sweep Extrusion<br>[1889, 1921, 0]"]
|
23["Sweep Extrusion<br>[1889, 1921, 0]"]
|
||||||
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
24[Wall]
|
24[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
25[Wall]
|
25[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
26[Wall]
|
26[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
27[Wall]
|
27[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
28["Cap Start"]
|
28["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
29["Cap End"]
|
29["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
30["SweepEdge Opposite"]
|
30["SweepEdge Opposite"]
|
||||||
31["SweepEdge Opposite"]
|
31["SweepEdge Opposite"]
|
||||||
32["SweepEdge Opposite"]
|
32["SweepEdge Opposite"]
|
||||||
|
@ -350,88 +350,171 @@ flowchart LR
|
|||||||
162["Sweep Extrusion<br>[4495, 4528, 5]"]
|
162["Sweep Extrusion<br>[4495, 4528, 5]"]
|
||||||
%% Missing NodePath
|
%% Missing NodePath
|
||||||
163[Wall]
|
163[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
164[Wall]
|
164[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
165[Wall]
|
165[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
166[Wall]
|
166[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
167[Wall]
|
167[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
168[Wall]
|
168[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
169[Wall]
|
169[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
170[Wall]
|
170[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
171[Wall]
|
171[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
172[Wall]
|
172[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
173[Wall]
|
173[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
174[Wall]
|
174[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
175[Wall]
|
175[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
176[Wall]
|
176[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
177[Wall]
|
177[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
178[Wall]
|
178[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
179[Wall]
|
179[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
180[Wall]
|
180[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
181[Wall]
|
181[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
182[Wall]
|
182[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
183[Wall]
|
183[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
184[Wall]
|
184[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
185[Wall]
|
185[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
186[Wall]
|
186[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
187[Wall]
|
187[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
188[Wall]
|
188[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
189[Wall]
|
189[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
190[Wall]
|
190[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
191[Wall]
|
191[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
192[Wall]
|
192[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
193[Wall]
|
193[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
194[Wall]
|
194[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
195[Wall]
|
195[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
196[Wall]
|
196[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
197[Wall]
|
197[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
198[Wall]
|
198[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
199[Wall]
|
199[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
200[Wall]
|
200[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
201[Wall]
|
201[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
202[Wall]
|
202[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
203[Wall]
|
203[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
204[Wall]
|
204[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
205[Wall]
|
205[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
206[Wall]
|
206[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
207[Wall]
|
207[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
208[Wall]
|
208[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
209[Wall]
|
209[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
210[Wall]
|
210[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
211[Wall]
|
211[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
212["Cap Start"]
|
212["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
213["Cap Start"]
|
213["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
214["Cap Start"]
|
214["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
215["Cap Start"]
|
215["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
216["Cap Start"]
|
216["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
217["Cap Start"]
|
217["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
218["Cap Start"]
|
218["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
219["Cap Start"]
|
219["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
220["Cap Start"]
|
220["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
221["Cap Start"]
|
221["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
222["Cap Start"]
|
222["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
223["Cap End"]
|
223["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
224["Cap End"]
|
224["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
225["Cap End"]
|
225["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
226["Cap End"]
|
226["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
227["Cap End"]
|
227["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
228["Cap End"]
|
228["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
229["Cap End"]
|
229["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
230["Cap End"]
|
230["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
231["Cap End"]
|
231["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
232["Cap End"]
|
232["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
233["Cap End"]
|
233["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
234["Cap End"]
|
234["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
235["Cap End"]
|
235["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
236["Cap End"]
|
236["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
237["Cap End"]
|
237["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
238["Cap End"]
|
238["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
239["Cap End"]
|
239["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
240["Cap End"]
|
240["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
241["Cap End"]
|
241["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
242["Cap End"]
|
242["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
243["Cap End"]
|
243["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
244["Cap End"]
|
244["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
245["Cap End"]
|
245["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
246["SweepEdge Opposite"]
|
246["SweepEdge Opposite"]
|
||||||
247["SweepEdge Opposite"]
|
247["SweepEdge Opposite"]
|
||||||
248["SweepEdge Opposite"]
|
248["SweepEdge Opposite"]
|
||||||
|
@ -196,50 +196,95 @@ flowchart LR
|
|||||||
90["Sweep Extrusion<br>[2173, 2225, 3]"]
|
90["Sweep Extrusion<br>[2173, 2225, 3]"]
|
||||||
%% Missing NodePath
|
%% Missing NodePath
|
||||||
91[Wall]
|
91[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
92[Wall]
|
92[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
93[Wall]
|
93[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
94[Wall]
|
94[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
95[Wall]
|
95[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
96[Wall]
|
96[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
97[Wall]
|
97[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
98[Wall]
|
98[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
99[Wall]
|
99[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
100[Wall]
|
100[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
101[Wall]
|
101[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
102[Wall]
|
102[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
103[Wall]
|
103[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
104[Wall]
|
104[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
105[Wall]
|
105[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
106[Wall]
|
106[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
107[Wall]
|
107[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
108[Wall]
|
108[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
109[Wall]
|
109[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
110[Wall]
|
110[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
111[Wall]
|
111[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
112[Wall]
|
112[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
113[Wall]
|
113[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
114[Wall]
|
114[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
115[Wall]
|
115[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
116[Wall]
|
116[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
117[Wall]
|
117[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
118[Wall]
|
118[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
119[Wall]
|
119[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
120[Wall]
|
120[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
121[Wall]
|
121[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
122[Wall]
|
122[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
123[Wall]
|
123[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
124[Wall]
|
124[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
125[Wall]
|
125[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
126[Wall]
|
126[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
127[Wall]
|
127[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
128["Cap Start"]
|
128["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
129["Cap Start"]
|
129["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
130["Cap Start"]
|
130["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
131["Cap Start"]
|
131["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
132["Cap Start"]
|
132["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
133["Cap Start"]
|
133["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
134["Cap End"]
|
134["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
135["Cap End"]
|
135["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
136["SweepEdge Opposite"]
|
136["SweepEdge Opposite"]
|
||||||
137["SweepEdge Opposite"]
|
137["SweepEdge Opposite"]
|
||||||
138["SweepEdge Opposite"]
|
138["SweepEdge Opposite"]
|
||||||
|
@ -268,58 +268,111 @@ flowchart LR
|
|||||||
122["Sweep Extrusion<br>[608, 640, 7]"]
|
122["Sweep Extrusion<br>[608, 640, 7]"]
|
||||||
%% Missing NodePath
|
%% Missing NodePath
|
||||||
123[Wall]
|
123[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
124[Wall]
|
124[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
125[Wall]
|
125[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
126[Wall]
|
126[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
127[Wall]
|
127[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
128[Wall]
|
128[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
129[Wall]
|
129[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
130[Wall]
|
130[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
131[Wall]
|
131[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
132[Wall]
|
132[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
133[Wall]
|
133[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
134[Wall]
|
134[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
135[Wall]
|
135[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
136[Wall]
|
136[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
137[Wall]
|
137[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
138[Wall]
|
138[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
139[Wall]
|
139[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
140[Wall]
|
140[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
141[Wall]
|
141[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
142[Wall]
|
142[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
143[Wall]
|
143[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
144[Wall]
|
144[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
145[Wall]
|
145[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
146[Wall]
|
146[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
147[Wall]
|
147[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
148[Wall]
|
148[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
149[Wall]
|
149[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
150[Wall]
|
150[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
151[Wall]
|
151[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
152[Wall]
|
152[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
153[Wall]
|
153[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
154["Cap Start"]
|
154["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
155["Cap Start"]
|
155["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
156["Cap Start"]
|
156["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
157["Cap Start"]
|
157["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
158["Cap Start"]
|
158["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
159["Cap Start"]
|
159["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
160["Cap Start"]
|
160["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
161["Cap Start"]
|
161["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
162["Cap Start"]
|
162["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
163["Cap End"]
|
163["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
164["Cap End"]
|
164["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
165["Cap End"]
|
165["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
166["Cap End"]
|
166["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
167["Cap End"]
|
167["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
168["Cap End"]
|
168["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
169["Cap End"]
|
169["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
170["Cap End"]
|
170["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
171["Cap End"]
|
171["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
172["Cap End"]
|
172["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
173["Cap End"]
|
173["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
174["Cap End"]
|
174["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
175["Cap End"]
|
175["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
176["SweepEdge Opposite"]
|
176["SweepEdge Opposite"]
|
||||||
177["SweepEdge Opposite"]
|
177["SweepEdge Opposite"]
|
||||||
178["SweepEdge Opposite"]
|
178["SweepEdge Opposite"]
|
||||||
|
@ -19,8 +19,11 @@ flowchart LR
|
|||||||
8["Sweep Revolve<br>[803, 852, 0]"]
|
8["Sweep Revolve<br>[803, 852, 0]"]
|
||||||
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
9[Wall]
|
9[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
10["Cap Start"]
|
10["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11["Cap End"]
|
11["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12["SweepEdge Opposite"]
|
12["SweepEdge Opposite"]
|
||||||
13["SweepEdge Adjacent"]
|
13["SweepEdge Adjacent"]
|
||||||
1 --- 2
|
1 --- 2
|
||||||
|
@ -23,9 +23,13 @@ flowchart LR
|
|||||||
10["Sweep Extrusion<br>[514, 546, 0]"]
|
10["Sweep Extrusion<br>[514, 546, 0]"]
|
||||||
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13["Cap Start"]
|
13["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14["Cap End"]
|
14["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
15["SweepEdge Opposite"]
|
15["SweepEdge Opposite"]
|
||||||
16["SweepEdge Opposite"]
|
16["SweepEdge Opposite"]
|
||||||
17["SweepEdge Adjacent"]
|
17["SweepEdge Adjacent"]
|
||||||
|
@ -191,79 +191,153 @@ flowchart LR
|
|||||||
91["Sweep Extrusion<br>[4519, 4551, 0]"]
|
91["Sweep Extrusion<br>[4519, 4551, 0]"]
|
||||||
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
92[Wall]
|
92[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
93[Wall]
|
93[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
94[Wall]
|
94[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
95[Wall]
|
95[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
96[Wall]
|
96[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
97[Wall]
|
97[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
98[Wall]
|
98[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
99[Wall]
|
99[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
100[Wall]
|
100[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
101[Wall]
|
101[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
102[Wall]
|
102[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
103[Wall]
|
103[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
104[Wall]
|
104[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
105[Wall]
|
105[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
106[Wall]
|
106[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
107[Wall]
|
107[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
108[Wall]
|
108[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
109[Wall]
|
109[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
110[Wall]
|
110[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
111[Wall]
|
111[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
112[Wall]
|
112[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
113[Wall]
|
113[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
114[Wall]
|
114[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
115[Wall]
|
115[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
116[Wall]
|
116[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
117[Wall]
|
117[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
118[Wall]
|
118[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
119[Wall]
|
119[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
120[Wall]
|
120[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
121[Wall]
|
121[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
122[Wall]
|
122[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
123[Wall]
|
123[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
124[Wall]
|
124[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
125[Wall]
|
125[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
126[Wall]
|
126[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
127[Wall]
|
127[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
128[Wall]
|
128[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
129[Wall]
|
129[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
130[Wall]
|
130[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
131[Wall]
|
131[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
132[Wall]
|
132[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
133[Wall]
|
133[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
134[Wall]
|
134[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
135[Wall]
|
135[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
136[Wall]
|
136[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
137[Wall]
|
137[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
138[Wall]
|
138[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
139[Wall]
|
139[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
140[Wall]
|
140[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
141[Wall]
|
141[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
142[Wall]
|
142[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
143[Wall]
|
143[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
144[Wall]
|
144[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
145[Wall]
|
145[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
146[Wall]
|
146[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
147[Wall]
|
147[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
148[Wall]
|
148[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
149[Wall]
|
149[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
150[Wall]
|
150[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
151["Cap Start"]
|
151["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
152["Cap Start"]
|
152["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
153["Cap Start"]
|
153["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
154["Cap Start"]
|
154["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
155["Cap Start"]
|
155["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
156["Cap Start"]
|
156["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
157["Cap Start"]
|
157["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
158["Cap Start"]
|
158["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
159["Cap End"]
|
159["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
160["Cap End"]
|
160["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
161["Cap End"]
|
161["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
162["Cap End"]
|
162["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
163["Cap End"]
|
163["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
164["Cap End"]
|
164["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
165["Cap End"]
|
165["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
166["SweepEdge Opposite"]
|
166["SweepEdge Opposite"]
|
||||||
167["SweepEdge Opposite"]
|
167["SweepEdge Opposite"]
|
||||||
168["SweepEdge Opposite"]
|
168["SweepEdge Opposite"]
|
||||||
|
@ -192,31 +192,57 @@ flowchart LR
|
|||||||
91["Sweep Revolve<br>[5267, 5297, 0]"]
|
91["Sweep Revolve<br>[5267, 5297, 0]"]
|
||||||
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
92[Wall]
|
92[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
93[Wall]
|
93[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
94[Wall]
|
94[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
95[Wall]
|
95[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
96[Wall]
|
96[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
97[Wall]
|
97[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
98[Wall]
|
98[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
99[Wall]
|
99[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
100[Wall]
|
100[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
101[Wall]
|
101[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
102[Wall]
|
102[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
103[Wall]
|
103[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
104[Wall]
|
104[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
105[Wall]
|
105[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
106[Wall]
|
106[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
107[Wall]
|
107[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
108[Wall]
|
108[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
109[Wall]
|
109[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
110[Wall]
|
110[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
111[Wall]
|
111[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
112[Wall]
|
112[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
113[Wall]
|
113[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
114[Wall]
|
114[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
115[Wall]
|
115[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
116["Cap Start"]
|
116["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
117["Cap End"]
|
117["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
118["SweepEdge Opposite"]
|
118["SweepEdge Opposite"]
|
||||||
119["SweepEdge Opposite"]
|
119["SweepEdge Opposite"]
|
||||||
120["SweepEdge Opposite"]
|
120["SweepEdge Opposite"]
|
||||||
|
@ -109,44 +109,83 @@ flowchart LR
|
|||||||
52["Sweep Extrusion<br>[3591, 3621, 0]"]
|
52["Sweep Extrusion<br>[3591, 3621, 0]"]
|
||||||
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
53[Wall]
|
53[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
54[Wall]
|
54[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
55[Wall]
|
55[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
56[Wall]
|
56[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
57[Wall]
|
57[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
58[Wall]
|
58[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
59[Wall]
|
59[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
60[Wall]
|
60[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
61[Wall]
|
61[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
62[Wall]
|
62[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
63[Wall]
|
63[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
64[Wall]
|
64[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
65[Wall]
|
65[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
66[Wall]
|
66[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
67[Wall]
|
67[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
68[Wall]
|
68[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
69[Wall]
|
69[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
70[Wall]
|
70[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
71[Wall]
|
71[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
72[Wall]
|
72[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
73[Wall]
|
73[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
74[Wall]
|
74[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
75[Wall]
|
75[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
76[Wall]
|
76[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
77[Wall]
|
77[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
78[Wall]
|
78[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
79[Wall]
|
79[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
80[Wall]
|
80[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
81[Wall]
|
81[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
82[Wall]
|
82[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
83[Wall]
|
83[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
84["Cap Start"]
|
84["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
85["Cap Start"]
|
85["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
86["Cap Start"]
|
86["Cap Start"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
87["Cap Start"]
|
87["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
88["Cap End"]
|
88["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
89["Cap End"]
|
89["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
90["Cap End"]
|
90["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
91["Cap End"]
|
91["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
92["SweepEdge Opposite"]
|
92["SweepEdge Opposite"]
|
||||||
93["SweepEdge Opposite"]
|
93["SweepEdge Opposite"]
|
||||||
94["SweepEdge Opposite"]
|
94["SweepEdge Opposite"]
|
||||||
|
@ -74,30 +74,55 @@ flowchart LR
|
|||||||
35["Sweep Extrusion<br>[2527, 2559, 0]"]
|
35["Sweep Extrusion<br>[2527, 2559, 0]"]
|
||||||
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
36[Wall]
|
36[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
37[Wall]
|
37[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
38[Wall]
|
38[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
39[Wall]
|
39[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
40[Wall]
|
40[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
41[Wall]
|
41[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
42[Wall]
|
42[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
43[Wall]
|
43[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
44[Wall]
|
44[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
45[Wall]
|
45[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
46[Wall]
|
46[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
47[Wall]
|
47[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
48[Wall]
|
48[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
49[Wall]
|
49[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
50[Wall]
|
50[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
51[Wall]
|
51[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
52[Wall]
|
52[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
53[Wall]
|
53[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
54[Wall]
|
54[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
55["Cap Start"]
|
55["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
56["Cap Start"]
|
56["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
57["Cap Start"]
|
57["Cap Start"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
58["Cap End"]
|
58["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
59["Cap End"]
|
59["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
60["Cap End"]
|
60["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
61["SweepEdge Opposite"]
|
61["SweepEdge Opposite"]
|
||||||
62["SweepEdge Opposite"]
|
62["SweepEdge Opposite"]
|
||||||
63["SweepEdge Opposite"]
|
63["SweepEdge Opposite"]
|
||||||
|
@ -110,31 +110,57 @@ flowchart LR
|
|||||||
52["Sweep Extrusion<br>[4351, 4379, 0]"]
|
52["Sweep Extrusion<br>[4351, 4379, 0]"]
|
||||||
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
53[Wall]
|
53[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
54[Wall]
|
54[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
55[Wall]
|
55[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
56[Wall]
|
56[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
57[Wall]
|
57[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
58[Wall]
|
58[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
59[Wall]
|
59[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
60[Wall]
|
60[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
61[Wall]
|
61[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
62[Wall]
|
62[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
63[Wall]
|
63[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
64[Wall]
|
64[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
65[Wall]
|
65[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
66[Wall]
|
66[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
67[Wall]
|
67[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
68[Wall]
|
68[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
69[Wall]
|
69[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
70[Wall]
|
70[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
71[Wall]
|
71[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
72[Wall]
|
72[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
73[Wall]
|
73[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
74[Wall]
|
74[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
75[Wall]
|
75[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
76[Wall]
|
76[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
77["Cap Start"]
|
77["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
78["Cap End"]
|
78["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
79["SweepEdge Opposite"]
|
79["SweepEdge Opposite"]
|
||||||
80["SweepEdge Opposite"]
|
80["SweepEdge Opposite"]
|
||||||
81["SweepEdge Opposite"]
|
81["SweepEdge Opposite"]
|
||||||
|
@ -44,17 +44,29 @@ flowchart LR
|
|||||||
20["Sweep Extrusion<br>[1537, 1565, 0]"]
|
20["Sweep Extrusion<br>[1537, 1565, 0]"]
|
||||||
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
21[Wall]
|
21[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
22[Wall]
|
22[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
23[Wall]
|
23[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
24[Wall]
|
24[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
25[Wall]
|
25[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
26[Wall]
|
26[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
27[Wall]
|
27[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
28[Wall]
|
28[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
29["Cap Start"]
|
29["Cap Start"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
30["Cap Start"]
|
30["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
31["Cap End"]
|
31["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
32["Cap End"]
|
32["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
33["SweepEdge Opposite"]
|
33["SweepEdge Opposite"]
|
||||||
34["SweepEdge Opposite"]
|
34["SweepEdge Opposite"]
|
||||||
35["SweepEdge Opposite"]
|
35["SweepEdge Opposite"]
|
||||||
|
@ -39,11 +39,17 @@ flowchart LR
|
|||||||
18["Sweep Extrusion<br>[2697, 2725, 0]"]
|
18["Sweep Extrusion<br>[2697, 2725, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
19[Wall]
|
19[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
20[Wall]
|
20[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
21[Wall]
|
21[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
22[Wall]
|
22[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
23["Cap Start"]
|
23["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
24["Cap End"]
|
24["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
25["SweepEdge Opposite"]
|
25["SweepEdge Opposite"]
|
||||||
26["SweepEdge Opposite"]
|
26["SweepEdge Opposite"]
|
||||||
27["SweepEdge Opposite"]
|
27["SweepEdge Opposite"]
|
||||||
|
@ -53,17 +53,29 @@ flowchart LR
|
|||||||
24["Sweep Extrusion<br>[1745, 1773, 0]"]
|
24["Sweep Extrusion<br>[1745, 1773, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
25[Wall]
|
25[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
26[Wall]
|
26[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
27[Wall]
|
27[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
28[Wall]
|
28[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
29[Wall]
|
29[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
30[Wall]
|
30[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
31[Wall]
|
31[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
32[Wall]
|
32[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
33["Cap Start"]
|
33["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
34["Cap Start"]
|
34["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
35["Cap End"]
|
35["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
36["Cap End"]
|
36["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
37["SweepEdge Opposite"]
|
37["SweepEdge Opposite"]
|
||||||
38["SweepEdge Opposite"]
|
38["SweepEdge Opposite"]
|
||||||
39["SweepEdge Opposite"]
|
39["SweepEdge Opposite"]
|
||||||
|
@ -166,39 +166,73 @@ flowchart LR
|
|||||||
76["CompositeSolid Union<br>[1688, 1715, 0]"]
|
76["CompositeSolid Union<br>[1688, 1715, 0]"]
|
||||||
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwArg { index: 0 }]
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwArg { index: 0 }]
|
||||||
77[Wall]
|
77[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
78[Wall]
|
78[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
79[Wall]
|
79[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
80[Wall]
|
80[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
81[Wall]
|
81[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
82[Wall]
|
82[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
83[Wall]
|
83[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
84[Wall]
|
84[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
85[Wall]
|
85[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
86[Wall]
|
86[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
87[Wall]
|
87[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
88[Wall]
|
88[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
89[Wall]
|
89[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
90[Wall]
|
90[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
91[Wall]
|
91[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
92[Wall]
|
92[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
93[Wall]
|
93[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
94[Wall]
|
94[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
95["Cap Start"]
|
95["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
96["Cap Start"]
|
96["Cap Start"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
97["Cap Start"]
|
97["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
98["Cap Start"]
|
98["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
99["Cap Start"]
|
99["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
100["Cap Start"]
|
100["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
101["Cap Start"]
|
101["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
102["Cap End"]
|
102["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
103["Cap End"]
|
103["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
104["Cap End"]
|
104["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
105["Cap End"]
|
105["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
106["Cap End"]
|
106["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
107["Cap End"]
|
107["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
108["Cap End"]
|
108["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
109["Cap End"]
|
109["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
110["Cap End"]
|
110["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
111["SweepEdge Opposite"]
|
111["SweepEdge Opposite"]
|
||||||
112["SweepEdge Opposite"]
|
112["SweepEdge Opposite"]
|
||||||
113["SweepEdge Opposite"]
|
113["SweepEdge Opposite"]
|
||||||
|
@ -218,47 +218,89 @@ flowchart LR
|
|||||||
99["Sweep Extrusion<br>[1364, 1416, 0]"]
|
99["Sweep Extrusion<br>[1364, 1416, 0]"]
|
||||||
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
100[Wall]
|
100[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
101[Wall]
|
101[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
102[Wall]
|
102[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
103[Wall]
|
103[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
104[Wall]
|
104[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
105[Wall]
|
105[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
106[Wall]
|
106[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
107[Wall]
|
107[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
108[Wall]
|
108[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
109[Wall]
|
109[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
110[Wall]
|
110[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
111[Wall]
|
111[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
112[Wall]
|
112[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
113[Wall]
|
113[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
114[Wall]
|
114[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
115[Wall]
|
115[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
116[Wall]
|
116[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
117[Wall]
|
117[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
118[Wall]
|
118[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
119[Wall]
|
119[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
120[Wall]
|
120[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
121[Wall]
|
121[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
122["Cap Start"]
|
122["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
123["Cap Start"]
|
123["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
124["Cap Start"]
|
124["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
125["Cap Start"]
|
125["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
126["Cap Start"]
|
126["Cap Start"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
127["Cap Start"]
|
127["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
128["Cap Start"]
|
128["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
129["Cap Start"]
|
129["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
130["Cap Start"]
|
130["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
131["Cap Start"]
|
131["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
132["Cap Start"]
|
132["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
133["Cap Start"]
|
133["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
134["Cap Start"]
|
134["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
135["Cap Start"]
|
135["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
136["Cap Start"]
|
136["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
137["Cap Start"]
|
137["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
138["Cap Start"]
|
138["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
139["Cap Start"]
|
139["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
140["Cap Start"]
|
140["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
141["Cap End"]
|
141["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
142["SweepEdge Opposite"]
|
142["SweepEdge Opposite"]
|
||||||
143["SweepEdge Opposite"]
|
143["SweepEdge Opposite"]
|
||||||
144["SweepEdge Opposite"]
|
144["SweepEdge Opposite"]
|
||||||
|
@ -315,84 +315,163 @@ flowchart LR
|
|||||||
148["Sweep Sweep<br>[8740, 8793, 0]"]
|
148["Sweep Sweep<br>[8740, 8793, 0]"]
|
||||||
%% [ProgramBodyItem { index: 69 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
%% [ProgramBodyItem { index: 69 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
149[Wall]
|
149[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
150[Wall]
|
150[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
151[Wall]
|
151[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
152[Wall]
|
152[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
153[Wall]
|
153[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
154[Wall]
|
154[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
155[Wall]
|
155[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
156[Wall]
|
156[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
157[Wall]
|
157[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
158[Wall]
|
158[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
159[Wall]
|
159[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
160[Wall]
|
160[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
161[Wall]
|
161[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
162[Wall]
|
162[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
163[Wall]
|
163[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
164[Wall]
|
164[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
165[Wall]
|
165[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
166[Wall]
|
166[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
167[Wall]
|
167[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
168[Wall]
|
168[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
169[Wall]
|
169[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
170[Wall]
|
170[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
171[Wall]
|
171[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
172[Wall]
|
172[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
173[Wall]
|
173[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
174[Wall]
|
174[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
175[Wall]
|
175[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
176[Wall]
|
176[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
177[Wall]
|
177[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
178[Wall]
|
178[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
179[Wall]
|
179[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
180[Wall]
|
180[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
181[Wall]
|
181[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
182[Wall]
|
182[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
183[Wall]
|
183[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
184[Wall]
|
184[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
185[Wall]
|
185[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
186[Wall]
|
186[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
187[Wall]
|
187[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
188[Wall]
|
188[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
189[Wall]
|
189[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
190[Wall]
|
190[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
191[Wall]
|
191[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
192[Wall]
|
192[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
193[Wall]
|
193[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
194[Wall]
|
194[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
195[Wall]
|
195[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
196[Wall]
|
196[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
197[Wall]
|
197[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
198["Cap Start"]
|
198["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
199["Cap Start"]
|
199["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
200["Cap Start"]
|
200["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
201["Cap Start"]
|
201["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
202["Cap Start"]
|
202["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
203["Cap Start"]
|
203["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
204["Cap Start"]
|
204["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
205["Cap Start"]
|
205["Cap Start"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 38 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
206["Cap Start"]
|
206["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
207["Cap Start"]
|
207["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
208["Cap Start"]
|
208["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
209["Cap Start"]
|
209["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
210["Cap Start"]
|
210["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
211["Cap Start"]
|
211["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
212["Cap Start"]
|
212["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
213["Cap Start"]
|
213["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
214["Cap End"]
|
214["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
215["Cap End"]
|
215["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
216["Cap End"]
|
216["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
217["Cap End"]
|
217["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
218["Cap End"]
|
218["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
219["Cap End"]
|
219["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
220["Cap End"]
|
220["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
221["Cap End"]
|
221["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
222["Cap End"]
|
222["Cap End"]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 40 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
223["Cap End"]
|
223["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
224["Cap End"]
|
224["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
225["Cap End"]
|
225["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
226["Cap End"]
|
226["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
227["Cap End"]
|
227["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
228["SweepEdge Opposite"]
|
228["SweepEdge Opposite"]
|
||||||
229["SweepEdge Opposite"]
|
229["SweepEdge Opposite"]
|
||||||
230["SweepEdge Opposite"]
|
230["SweepEdge Opposite"]
|
||||||
|
@ -349,79 +349,153 @@ flowchart LR
|
|||||||
164["Sweep Extrusion<br>[652, 699, 8]"]
|
164["Sweep Extrusion<br>[652, 699, 8]"]
|
||||||
%% Missing NodePath
|
%% Missing NodePath
|
||||||
165[Wall]
|
165[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
166[Wall]
|
166[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
167[Wall]
|
167[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
168[Wall]
|
168[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
169[Wall]
|
169[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
170[Wall]
|
170[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
171[Wall]
|
171[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
172[Wall]
|
172[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
173[Wall]
|
173[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
174[Wall]
|
174[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
175[Wall]
|
175[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
176[Wall]
|
176[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
177[Wall]
|
177[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
178[Wall]
|
178[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
179[Wall]
|
179[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
180[Wall]
|
180[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
181[Wall]
|
181[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
182[Wall]
|
182[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
183[Wall]
|
183[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
184[Wall]
|
184[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
185[Wall]
|
185[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
186[Wall]
|
186[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
187[Wall]
|
187[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
188[Wall]
|
188[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
189[Wall]
|
189[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
190[Wall]
|
190[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
191[Wall]
|
191[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
192[Wall]
|
192[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
193[Wall]
|
193[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
194[Wall]
|
194[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
195[Wall]
|
195[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
196[Wall]
|
196[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
197[Wall]
|
197[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
198[Wall]
|
198[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
199[Wall]
|
199[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
200[Wall]
|
200[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
201[Wall]
|
201[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
202[Wall]
|
202[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
203[Wall]
|
203[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
204[Wall]
|
204[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
205[Wall]
|
205[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
206[Wall]
|
206[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
207[Wall]
|
207[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
208[Wall]
|
208[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
209[Wall]
|
209[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
210[Wall]
|
210[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
211[Wall]
|
211[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
212[Wall]
|
212[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
213[Wall]
|
213[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
214[Wall]
|
214[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
215[Wall]
|
215[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
216[Wall]
|
216[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
217[Wall]
|
217[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
218["Cap Start"]
|
218["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
219["Cap Start"]
|
219["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
220["Cap Start"]
|
220["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
221["Cap Start"]
|
221["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
222["Cap Start"]
|
222["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
223["Cap Start"]
|
223["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
224["Cap Start"]
|
224["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
225["Cap Start"]
|
225["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
226["Cap Start"]
|
226["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
227["Cap Start"]
|
227["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
228["Cap Start"]
|
228["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
229["Cap Start"]
|
229["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
230["Cap End"]
|
230["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
231["Cap End"]
|
231["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
232["Cap End"]
|
232["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
233["Cap End"]
|
233["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
234["Cap End"]
|
234["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
235["Cap End"]
|
235["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
236["Cap End"]
|
236["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
237["Cap End"]
|
237["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
238["Cap End"]
|
238["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
239["SweepEdge Opposite"]
|
239["SweepEdge Opposite"]
|
||||||
240["SweepEdge Opposite"]
|
240["SweepEdge Opposite"]
|
||||||
241["SweepEdge Opposite"]
|
241["SweepEdge Opposite"]
|
||||||
|
@ -19,8 +19,11 @@ flowchart LR
|
|||||||
8["Sweep Extrusion<br>[878, 922, 0]"]
|
8["Sweep Extrusion<br>[878, 922, 0]"]
|
||||||
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
9[Wall]
|
9[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
10["Cap Start"]
|
10["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11["Cap End"]
|
11["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12["SweepEdge Opposite"]
|
12["SweepEdge Opposite"]
|
||||||
13["SweepEdge Adjacent"]
|
13["SweepEdge Adjacent"]
|
||||||
1 --- 2
|
1 --- 2
|
||||||
|
@ -211,65 +211,125 @@ flowchart LR
|
|||||||
100["Sweep Extrusion<br>[5452, 5473, 0]"]
|
100["Sweep Extrusion<br>[5452, 5473, 0]"]
|
||||||
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 12 }]
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 12 }]
|
||||||
101[Wall]
|
101[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
102[Wall]
|
102[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
103[Wall]
|
103[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
104[Wall]
|
104[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
105[Wall]
|
105[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
106[Wall]
|
106[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
107[Wall]
|
107[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
108[Wall]
|
108[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
109[Wall]
|
109[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
110[Wall]
|
110[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
111[Wall]
|
111[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
112[Wall]
|
112[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
113[Wall]
|
113[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
114[Wall]
|
114[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
115[Wall]
|
115[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
116[Wall]
|
116[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
117[Wall]
|
117[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
118[Wall]
|
118[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
119[Wall]
|
119[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
120[Wall]
|
120[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
121[Wall]
|
121[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
122[Wall]
|
122[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
123[Wall]
|
123[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
124[Wall]
|
124[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
125[Wall]
|
125[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
126[Wall]
|
126[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
127[Wall]
|
127[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
128[Wall]
|
128[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
129[Wall]
|
129[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
130[Wall]
|
130[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
131[Wall]
|
131[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
132[Wall]
|
132[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
133[Wall]
|
133[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
134[Wall]
|
134[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
135[Wall]
|
135[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
136[Wall]
|
136[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
137[Wall]
|
137[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
138[Wall]
|
138[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
139[Wall]
|
139[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
140[Wall]
|
140[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
141[Wall]
|
141[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
142[Wall]
|
142[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
143[Wall]
|
143[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
144[Wall]
|
144[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
145[Wall]
|
145[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
146[Wall]
|
146[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
147[Wall]
|
147[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
148[Wall]
|
148[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
149[Wall]
|
149[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
150[Wall]
|
150[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
151[Wall]
|
151[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
152[Wall]
|
152[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
153[Wall]
|
153[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
154[Wall]
|
154[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
155["Cap Start"]
|
155["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
156["Cap Start"]
|
156["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
157["Cap Start"]
|
157["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
158["Cap End"]
|
158["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
159["Cap End"]
|
159["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
160["Cap End"]
|
160["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
161["SweepEdge Opposite"]
|
161["SweepEdge Opposite"]
|
||||||
162["SweepEdge Opposite"]
|
162["SweepEdge Opposite"]
|
||||||
163["SweepEdge Opposite"]
|
163["SweepEdge Opposite"]
|
||||||
|
@ -574,288 +574,571 @@ flowchart LR
|
|||||||
286["Sweep Extrusion<br>[18401, 18420, 0]"]
|
286["Sweep Extrusion<br>[18401, 18420, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 284 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 284 }]
|
||||||
287[Wall]
|
287[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
288[Wall]
|
288[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
289[Wall]
|
289[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
290[Wall]
|
290[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
291[Wall]
|
291[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
292[Wall]
|
292[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
293[Wall]
|
293[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
294[Wall]
|
294[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
295[Wall]
|
295[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
296[Wall]
|
296[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
297[Wall]
|
297[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
298[Wall]
|
298[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
299[Wall]
|
299[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
300[Wall]
|
300[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
301[Wall]
|
301[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
302[Wall]
|
302[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
303[Wall]
|
303[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
304[Wall]
|
304[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
305[Wall]
|
305[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
306[Wall]
|
306[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
307[Wall]
|
307[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
308[Wall]
|
308[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
309[Wall]
|
309[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
310[Wall]
|
310[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
311[Wall]
|
311[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
312[Wall]
|
312[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
313[Wall]
|
313[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
314[Wall]
|
314[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
315[Wall]
|
315[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
316[Wall]
|
316[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
317[Wall]
|
317[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
318[Wall]
|
318[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
319[Wall]
|
319[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
320[Wall]
|
320[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
321[Wall]
|
321[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
322[Wall]
|
322[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
323[Wall]
|
323[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
324[Wall]
|
324[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
325[Wall]
|
325[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
326[Wall]
|
326[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
327[Wall]
|
327[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
328[Wall]
|
328[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
329[Wall]
|
329[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
330[Wall]
|
330[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
331[Wall]
|
331[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
332[Wall]
|
332[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
333[Wall]
|
333[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
334[Wall]
|
334[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
335[Wall]
|
335[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
336[Wall]
|
336[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
337[Wall]
|
337[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
338[Wall]
|
338[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
339[Wall]
|
339[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
340[Wall]
|
340[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
341[Wall]
|
341[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
342[Wall]
|
342[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
343[Wall]
|
343[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
344[Wall]
|
344[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
345[Wall]
|
345[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
346[Wall]
|
346[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
347[Wall]
|
347[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
348[Wall]
|
348[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
349[Wall]
|
349[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
350[Wall]
|
350[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
351[Wall]
|
351[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
352[Wall]
|
352[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
353[Wall]
|
353[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
354[Wall]
|
354[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
355[Wall]
|
355[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
356[Wall]
|
356[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
357[Wall]
|
357[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
358[Wall]
|
358[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
359[Wall]
|
359[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
360[Wall]
|
360[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
361[Wall]
|
361[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
362[Wall]
|
362[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
363[Wall]
|
363[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
364[Wall]
|
364[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
365[Wall]
|
365[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
366[Wall]
|
366[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
367[Wall]
|
367[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
368[Wall]
|
368[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
369[Wall]
|
369[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
370[Wall]
|
370[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
371[Wall]
|
371[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
372[Wall]
|
372[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
373[Wall]
|
373[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
374[Wall]
|
374[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
375[Wall]
|
375[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
376[Wall]
|
376[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
377[Wall]
|
377[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
378[Wall]
|
378[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
379[Wall]
|
379[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
380[Wall]
|
380[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
381[Wall]
|
381[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
382[Wall]
|
382[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
383[Wall]
|
383[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
384[Wall]
|
384[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
385[Wall]
|
385[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
386[Wall]
|
386[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
387[Wall]
|
387[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
388[Wall]
|
388[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
389[Wall]
|
389[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
390[Wall]
|
390[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
391[Wall]
|
391[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
392[Wall]
|
392[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
393[Wall]
|
393[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
394[Wall]
|
394[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
395[Wall]
|
395[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
396[Wall]
|
396[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
397[Wall]
|
397[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
398[Wall]
|
398[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
399[Wall]
|
399[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
400[Wall]
|
400[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
401[Wall]
|
401[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
402[Wall]
|
402[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
403[Wall]
|
403[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
404[Wall]
|
404[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
405[Wall]
|
405[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
406[Wall]
|
406[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
407[Wall]
|
407[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
408[Wall]
|
408[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
409[Wall]
|
409[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
410[Wall]
|
410[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
411[Wall]
|
411[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
412[Wall]
|
412[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
413[Wall]
|
413[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
414[Wall]
|
414[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
415[Wall]
|
415[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
416[Wall]
|
416[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
417[Wall]
|
417[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
418[Wall]
|
418[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
419[Wall]
|
419[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
420[Wall]
|
420[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
421[Wall]
|
421[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
422[Wall]
|
422[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
423[Wall]
|
423[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
424[Wall]
|
424[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
425[Wall]
|
425[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
426[Wall]
|
426[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
427[Wall]
|
427[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
428[Wall]
|
428[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
429[Wall]
|
429[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
430[Wall]
|
430[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
431[Wall]
|
431[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
432[Wall]
|
432[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
433[Wall]
|
433[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
434[Wall]
|
434[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
435[Wall]
|
435[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
436[Wall]
|
436[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
437[Wall]
|
437[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
438[Wall]
|
438[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
439[Wall]
|
439[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
440[Wall]
|
440[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
441[Wall]
|
441[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
442[Wall]
|
442[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
443[Wall]
|
443[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
444[Wall]
|
444[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
445[Wall]
|
445[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
446[Wall]
|
446[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
447[Wall]
|
447[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
448[Wall]
|
448[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
449[Wall]
|
449[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
450[Wall]
|
450[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
451[Wall]
|
451[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
452[Wall]
|
452[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
453[Wall]
|
453[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
454[Wall]
|
454[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
455[Wall]
|
455[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
456[Wall]
|
456[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
457[Wall]
|
457[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
458[Wall]
|
458[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
459[Wall]
|
459[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
460[Wall]
|
460[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
461[Wall]
|
461[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
462[Wall]
|
462[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
463[Wall]
|
463[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
464[Wall]
|
464[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
465[Wall]
|
465[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
466[Wall]
|
466[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
467[Wall]
|
467[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
468[Wall]
|
468[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
469[Wall]
|
469[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
470[Wall]
|
470[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
471[Wall]
|
471[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
472[Wall]
|
472[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
473[Wall]
|
473[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
474[Wall]
|
474[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
475[Wall]
|
475[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
476[Wall]
|
476[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
477[Wall]
|
477[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
478[Wall]
|
478[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
479[Wall]
|
479[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
480[Wall]
|
480[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
481[Wall]
|
481[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
482[Wall]
|
482[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
483[Wall]
|
483[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
484[Wall]
|
484[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
485[Wall]
|
485[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
486[Wall]
|
486[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
487[Wall]
|
487[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
488[Wall]
|
488[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
489[Wall]
|
489[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
490[Wall]
|
490[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
491[Wall]
|
491[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
492[Wall]
|
492[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
493[Wall]
|
493[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
494[Wall]
|
494[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
495[Wall]
|
495[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
496[Wall]
|
496[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
497[Wall]
|
497[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
498[Wall]
|
498[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
499[Wall]
|
499[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
500[Wall]
|
500[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
501[Wall]
|
501[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
502[Wall]
|
502[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
503[Wall]
|
503[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
504[Wall]
|
504[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
505[Wall]
|
505[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
506[Wall]
|
506[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
507[Wall]
|
507[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
508[Wall]
|
508[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
509[Wall]
|
509[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
510[Wall]
|
510[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
511[Wall]
|
511[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
512[Wall]
|
512[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
513[Wall]
|
513[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
514[Wall]
|
514[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
515[Wall]
|
515[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
516[Wall]
|
516[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
517[Wall]
|
517[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
518[Wall]
|
518[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
519[Wall]
|
519[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
520[Wall]
|
520[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
521[Wall]
|
521[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
522[Wall]
|
522[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
523[Wall]
|
523[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
524[Wall]
|
524[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
525[Wall]
|
525[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
526[Wall]
|
526[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
527[Wall]
|
527[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
528[Wall]
|
528[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
529[Wall]
|
529[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
530[Wall]
|
530[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
531[Wall]
|
531[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
532[Wall]
|
532[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
533[Wall]
|
533[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
534[Wall]
|
534[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
535[Wall]
|
535[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
536[Wall]
|
536[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
537[Wall]
|
537[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
538[Wall]
|
538[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
539[Wall]
|
539[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
540[Wall]
|
540[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
541[Wall]
|
541[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
542[Wall]
|
542[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
543[Wall]
|
543[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
544[Wall]
|
544[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
545[Wall]
|
545[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
546[Wall]
|
546[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
547[Wall]
|
547[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
548[Wall]
|
548[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
549[Wall]
|
549[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
550[Wall]
|
550[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
551[Wall]
|
551[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
552[Wall]
|
552[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
553[Wall]
|
553[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
554[Wall]
|
554[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
555[Wall]
|
555[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
556[Wall]
|
556[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
557[Wall]
|
557[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
558[Wall]
|
558[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
559[Wall]
|
559[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
560[Wall]
|
560[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
561[Wall]
|
561[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
562[Wall]
|
562[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
563[Wall]
|
563[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
564[Wall]
|
564[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
565[Wall]
|
565[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
566[Wall]
|
566[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
567[Wall]
|
567[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
568["Cap Start"]
|
568["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
569["Cap End"]
|
569["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
570["SweepEdge Opposite"]
|
570["SweepEdge Opposite"]
|
||||||
571["SweepEdge Opposite"]
|
571["SweepEdge Opposite"]
|
||||||
572["SweepEdge Opposite"]
|
572["SweepEdge Opposite"]
|
||||||
|
@ -18,11 +18,17 @@ flowchart LR
|
|||||||
8["Sweep Extrusion<br>[157, 176, 0]"]
|
8["Sweep Extrusion<br>[157, 176, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
9[Wall]
|
9[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
10[Wall]
|
10[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13["Cap Start"]
|
13["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14["Cap End"]
|
14["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15["SweepEdge Opposite"]
|
15["SweepEdge Opposite"]
|
||||||
16["SweepEdge Opposite"]
|
16["SweepEdge Opposite"]
|
||||||
17["SweepEdge Opposite"]
|
17["SweepEdge Opposite"]
|
||||||
|
@ -110,57 +110,109 @@ flowchart LR
|
|||||||
54["Sweep Extrusion<br>[1122, 1160, 0]"]
|
54["Sweep Extrusion<br>[1122, 1160, 0]"]
|
||||||
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
55[Wall]
|
55[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
56[Wall]
|
56[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
57[Wall]
|
57[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
58[Wall]
|
58[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
59[Wall]
|
59[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
60[Wall]
|
60[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
61[Wall]
|
61[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
62[Wall]
|
62[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
63[Wall]
|
63[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
64[Wall]
|
64[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
65[Wall]
|
65[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
66[Wall]
|
66[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
67[Wall]
|
67[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
68[Wall]
|
68[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
69[Wall]
|
69[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
70[Wall]
|
70[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
71[Wall]
|
71[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
72[Wall]
|
72[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
73[Wall]
|
73[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
74[Wall]
|
74[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
75[Wall]
|
75[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
76[Wall]
|
76[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
77[Wall]
|
77[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
78[Wall]
|
78[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
79[Wall]
|
79[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
80[Wall]
|
80[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
81[Wall]
|
81[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
82[Wall]
|
82[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
83[Wall]
|
83[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
84[Wall]
|
84[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
85[Wall]
|
85[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
86[Wall]
|
86[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
87[Wall]
|
87[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
88[Wall]
|
88[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
89[Wall]
|
89[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
90[Wall]
|
90[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
91[Wall]
|
91[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
92[Wall]
|
92[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
93[Wall]
|
93[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
94[Wall]
|
94[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
95[Wall]
|
95[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
96[Wall]
|
96[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
97[Wall]
|
97[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
98[Wall]
|
98[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
99[Wall]
|
99[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
100[Wall]
|
100[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
101[Wall]
|
101[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
102[Wall]
|
102[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
103[Wall]
|
103[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
104[Wall]
|
104[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
105["Cap Start"]
|
105["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
106["Cap End"]
|
106["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
107["SweepEdge Opposite"]
|
107["SweepEdge Opposite"]
|
||||||
108["SweepEdge Opposite"]
|
108["SweepEdge Opposite"]
|
||||||
109["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]"]
|
9["Sweep Extrusion<br>[219, 238, 1]"]
|
||||||
%% Missing NodePath
|
%% Missing NodePath
|
||||||
10[Wall]
|
10[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13[Wall]
|
13[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14["Cap Start"]
|
14["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15["Cap End"]
|
15["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
16["SweepEdge Opposite"]
|
16["SweepEdge Opposite"]
|
||||||
17["SweepEdge Opposite"]
|
17["SweepEdge Opposite"]
|
||||||
18["SweepEdge Opposite"]
|
18["SweepEdge Opposite"]
|
||||||
|
@ -24,11 +24,17 @@ flowchart LR
|
|||||||
10["Sweep Extrusion<br>[276, 295, 0]"]
|
10["Sweep Extrusion<br>[276, 295, 0]"]
|
||||||
%% [ProgramBodyItem { index: 1 }, ExpressionStatementExpr, PipeBodyItem { index: 3 }]
|
%% [ProgramBodyItem { index: 1 }, ExpressionStatementExpr, PipeBodyItem { index: 3 }]
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13[Wall]
|
13[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14[Wall]
|
14[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15["Cap Start"]
|
15["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
16["Cap End"]
|
16["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
17["SweepEdge Opposite"]
|
17["SweepEdge Opposite"]
|
||||||
18["SweepEdge Opposite"]
|
18["SweepEdge Opposite"]
|
||||||
19["SweepEdge Opposite"]
|
19["SweepEdge Opposite"]
|
||||||
|
@ -16,10 +16,15 @@ flowchart LR
|
|||||||
7["Sweep Extrusion<br>[149, 172, 0]"]
|
7["Sweep Extrusion<br>[149, 172, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
8[Wall]
|
8[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
9[Wall]
|
9[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
10[Wall]
|
10[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11["Cap Start"]
|
11["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12["Cap End"]
|
12["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13["SweepEdge Opposite"]
|
13["SweepEdge Opposite"]
|
||||||
14["SweepEdge Opposite"]
|
14["SweepEdge Opposite"]
|
||||||
15["SweepEdge Opposite"]
|
15["SweepEdge Opposite"]
|
||||||
|
@ -35,17 +35,29 @@ flowchart LR
|
|||||||
16["Sweep Extrusion<br>[712, 777, 0]"]
|
16["Sweep Extrusion<br>[712, 777, 0]"]
|
||||||
%% [ProgramBodyItem { index: 6 }, ExpressionStatementExpr]
|
%% [ProgramBodyItem { index: 6 }, ExpressionStatementExpr]
|
||||||
17[Wall]
|
17[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
18[Wall]
|
18[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
19[Wall]
|
19[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
20[Wall]
|
20[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
21[Wall]
|
21[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
22[Wall]
|
22[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
23[Wall]
|
23[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
24[Wall]
|
24[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
25["Cap Start"]
|
25["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
26["Cap Start"]
|
26["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
27["Cap End"]
|
27["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
28["Cap End"]
|
28["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
29["SweepEdge Opposite"]
|
29["SweepEdge Opposite"]
|
||||||
30["SweepEdge Opposite"]
|
30["SweepEdge Opposite"]
|
||||||
31["SweepEdge Opposite"]
|
31["SweepEdge Opposite"]
|
||||||
|
@ -20,11 +20,17 @@ flowchart LR
|
|||||||
9["Sweep Extrusion<br>[806, 924, 0]"]
|
9["Sweep Extrusion<br>[806, 924, 0]"]
|
||||||
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
10[Wall]
|
10[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13[Wall]
|
13[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14["Cap Start"]
|
14["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15["Cap End"]
|
15["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
16["SweepEdge Opposite"]
|
16["SweepEdge Opposite"]
|
||||||
17["SweepEdge Opposite"]
|
17["SweepEdge Opposite"]
|
||||||
18["SweepEdge Opposite"]
|
18["SweepEdge Opposite"]
|
||||||
|
@ -22,13 +22,21 @@ flowchart LR
|
|||||||
10["Sweep Extrusion<br>[463, 486, 0]"]
|
10["Sweep Extrusion<br>[463, 486, 0]"]
|
||||||
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
11[Wall]
|
11[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
12[Wall]
|
12[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
13[Wall]
|
13[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14[Wall]
|
14[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15[Wall]
|
15[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
16[Wall]
|
16[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
17["Cap Start"]
|
17["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
18["Cap End"]
|
18["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
19["SweepEdge Opposite"]
|
19["SweepEdge Opposite"]
|
||||||
20["SweepEdge Opposite"]
|
20["SweepEdge Opposite"]
|
||||||
21["SweepEdge Opposite"]
|
21["SweepEdge Opposite"]
|
||||||
|
@ -26,15 +26,25 @@ flowchart LR
|
|||||||
12["Sweep Extrusion<br>[587, 610, 0]"]
|
12["Sweep Extrusion<br>[587, 610, 0]"]
|
||||||
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }]
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }]
|
||||||
13[Wall]
|
13[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
14[Wall]
|
14[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
15[Wall]
|
15[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
16[Wall]
|
16[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
17[Wall]
|
17[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
18[Wall]
|
18[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
19[Wall]
|
19[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
20[Wall]
|
20[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
21["Cap Start"]
|
21["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
22["Cap End"]
|
22["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
23["SweepEdge Opposite"]
|
23["SweepEdge Opposite"]
|
||||||
24["SweepEdge Opposite"]
|
24["SweepEdge Opposite"]
|
||||||
25["SweepEdge Opposite"]
|
25["SweepEdge Opposite"]
|
||||||
|
@ -47,17 +47,29 @@ flowchart LR
|
|||||||
22["Sweep Extrusion<br>[342, 376, 1]"]
|
22["Sweep Extrusion<br>[342, 376, 1]"]
|
||||||
%% Missing NodePath
|
%% Missing NodePath
|
||||||
23[Wall]
|
23[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
24[Wall]
|
24[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
25[Wall]
|
25[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
26[Wall]
|
26[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
27[Wall]
|
27[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
28[Wall]
|
28[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
29[Wall]
|
29[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
30[Wall]
|
30[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
31["Cap Start"]
|
31["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
32["Cap Start"]
|
32["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
33["Cap End"]
|
33["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
34["Cap End"]
|
34["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
35["SweepEdge Opposite"]
|
35["SweepEdge Opposite"]
|
||||||
36["SweepEdge Opposite"]
|
36["SweepEdge Opposite"]
|
||||||
37["SweepEdge Opposite"]
|
37["SweepEdge Opposite"]
|
||||||
|
@ -60,27 +60,49 @@ flowchart LR
|
|||||||
28["Sweep Extrusion<br>[1647, 1685, 0]"]
|
28["Sweep Extrusion<br>[1647, 1685, 0]"]
|
||||||
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
29[Wall]
|
29[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
30[Wall]
|
30[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
31[Wall]
|
31[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
32[Wall]
|
32[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
33[Wall]
|
33[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
34[Wall]
|
34[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
35[Wall]
|
35[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
36[Wall]
|
36[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
37[Wall]
|
37[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
38[Wall]
|
38[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
39[Wall]
|
39[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
40[Wall]
|
40[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
41[Wall]
|
41[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
42[Wall]
|
42[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
43[Wall]
|
43[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
44[Wall]
|
44[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
45["Cap Start"]
|
45["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
46["Cap Start"]
|
46["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
47["Cap Start"]
|
47["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
48["Cap End"]
|
48["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
49["Cap End"]
|
49["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
50["Cap End"]
|
50["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
51["SweepEdge Opposite"]
|
51["SweepEdge Opposite"]
|
||||||
52["SweepEdge Opposite"]
|
52["SweepEdge Opposite"]
|
||||||
53["SweepEdge Opposite"]
|
53["SweepEdge Opposite"]
|
||||||
|
@ -47,11 +47,17 @@ flowchart LR
|
|||||||
22["Sweep Extrusion<br>[200, 219, 1]"]
|
22["Sweep Extrusion<br>[200, 219, 1]"]
|
||||||
%% Missing NodePath
|
%% Missing NodePath
|
||||||
23[Wall]
|
23[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
24[Wall]
|
24[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
25["Cap Start"]
|
25["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
26["Cap Start"]
|
26["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
27["Cap End"]
|
27["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
28["Cap End"]
|
28["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
29["SweepEdge Opposite"]
|
29["SweepEdge Opposite"]
|
||||||
30["SweepEdge Opposite"]
|
30["SweepEdge Opposite"]
|
||||||
31["SweepEdge Adjacent"]
|
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