Compare commits
17 Commits
kcl-72
...
jtran/pars
Author | SHA1 | Date | |
---|---|---|---|
a5daa38ea7 | |||
744da59a4b | |||
1506de92f5 | |||
8a03413643 | |||
f59b806a88 | |||
23a0085c78 | |||
a280a8c3f0 | |||
11620dfa6b | |||
f6e26e0bab | |||
f6b3a55cbf | |||
74939e5cd6 | |||
9906c9947a | |||
48d6a21f0a | |||
dd6a980915 | |||
2516df3a39 | |||
52125f0566 | |||
e489222b6a |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -256720,7 +256720,7 @@
|
|||||||
false
|
false
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"// Create a spring by sweeping around a helix path.\n\n// Create a helix around the Z axis.\nhelixPath = helix(\n angleStart = 0,\n ccw = true,\n revolutions = 4,\n length = 10,\n radius = 5,\n axis = Z,\n)\n\n// Create a spring by sweeping around the helix path.\nspringSketch = startSketchOn(YZ)\n |> circle(center = [0, 0], radius = 1)\n |> sweep(path = helixPath, relativeTo = \"sketchPlane\")",
|
"// Create a spring by sweeping around a helix path.\n\n// Create a helix around the Z axis.\nhelixPath = helix(\n angleStart = 0,\n ccw = true,\n revolutions = 4,\n length = 10,\n radius = 5,\n axis = Z,\n)\n\n// Create a spring by sweeping around the helix path.\nspringSketch = startSketchOn(XZ)\n |> circle(center = [5, 0], radius = 1)\n |> sweep(path = helixPath)",
|
||||||
false
|
false
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
|
File diff suppressed because one or more lines are too long
@ -65,7 +65,9 @@ test(
|
|||||||
await expect(engineErrorToastMessage).not.toBeVisible()
|
await expect(engineErrorToastMessage).not.toBeVisible()
|
||||||
|
|
||||||
const successToastMessage = page.getByText(`Exported successfully`)
|
const successToastMessage = page.getByText(`Exported successfully`)
|
||||||
await expect(successToastMessage).toBeVisible()
|
await page.waitForTimeout(1_000)
|
||||||
|
const count = await successToastMessage.count()
|
||||||
|
await expect(count).toBeGreaterThanOrEqual(1)
|
||||||
|
|
||||||
// Check for the exported file
|
// Check for the exported file
|
||||||
const firstFileFullPath = path.resolve(
|
const firstFileFullPath = path.resolve(
|
||||||
@ -134,7 +136,9 @@ test(
|
|||||||
await expect(engineErrorToastMessage).not.toBeVisible()
|
await expect(engineErrorToastMessage).not.toBeVisible()
|
||||||
|
|
||||||
const successToastMessage = page.getByText(`Exported successfully`)
|
const successToastMessage = page.getByText(`Exported successfully`)
|
||||||
await expect(successToastMessage).toBeVisible()
|
await page.waitForTimeout(1_000)
|
||||||
|
const count = await successToastMessage.count()
|
||||||
|
await expect(count).toBeGreaterThanOrEqual(1)
|
||||||
await expect(exportingToastMessage).not.toBeVisible()
|
await expect(exportingToastMessage).not.toBeVisible()
|
||||||
|
|
||||||
// Check for the exported file=
|
// Check for the exported file=
|
||||||
|
@ -6,7 +6,6 @@ test.describe('Onboarding tests', () => {
|
|||||||
homePage,
|
homePage,
|
||||||
toolbar,
|
toolbar,
|
||||||
editor,
|
editor,
|
||||||
scene,
|
|
||||||
tronApp,
|
tronApp,
|
||||||
}) => {
|
}) => {
|
||||||
if (!tronApp) {
|
if (!tronApp) {
|
||||||
@ -62,7 +61,6 @@ test.describe('Onboarding tests', () => {
|
|||||||
await editor.expectEditor.toContain('@settings(defaultLengthUnit = in)', {
|
await editor.expectEditor.toContain('@settings(defaultLengthUnit = in)', {
|
||||||
shouldNormalise: true,
|
shouldNormalise: true,
|
||||||
})
|
})
|
||||||
await scene.connectionEstablished()
|
|
||||||
})
|
})
|
||||||
|
|
||||||
await test.step('Go home and verify we still see the tutorial button, then begin it.', async () => {
|
await test.step('Go home and verify we still see the tutorial button, then begin it.', async () => {
|
||||||
@ -132,9 +130,7 @@ test.describe('Onboarding tests', () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
await test.step('Dismiss the onboarding', async () => {
|
await test.step('Dismiss the onboarding', async () => {
|
||||||
await postDismissToast.waitFor({ state: 'hidden' })
|
|
||||||
await page.keyboard.press('Escape')
|
await page.keyboard.press('Escape')
|
||||||
await expect(postDismissToast).toBeVisible()
|
|
||||||
await expect(page.getByTestId('onboarding-content')).not.toBeVisible()
|
await expect(page.getByTestId('onboarding-content')).not.toBeVisible()
|
||||||
await expect.poll(() => page.url()).not.toContain('/onboarding')
|
await expect.poll(() => page.url()).not.toContain('/onboarding')
|
||||||
})
|
})
|
||||||
@ -162,13 +158,10 @@ test.describe('Onboarding tests', () => {
|
|||||||
await test.step('Gets to the onboarding start', async () => {
|
await test.step('Gets to the onboarding start', async () => {
|
||||||
await expect(toolbar.projectName).toContainText('tutorial-project')
|
await expect(toolbar.projectName).toContainText('tutorial-project')
|
||||||
await expect(tutorialWelcomeHeading).toBeVisible()
|
await expect(tutorialWelcomeHeading).toBeVisible()
|
||||||
await scene.connectionEstablished()
|
|
||||||
})
|
})
|
||||||
|
|
||||||
await test.step('Dismiss the onboarding', async () => {
|
await test.step('Dismiss the onboarding', async () => {
|
||||||
await postDismissToast.waitFor({ state: 'hidden' })
|
|
||||||
await page.keyboard.press('Escape')
|
await page.keyboard.press('Escape')
|
||||||
await expect(postDismissToast).toBeVisible()
|
|
||||||
await expect(page.getByTestId('onboarding-content')).not.toBeVisible()
|
await expect(page.getByTestId('onboarding-content')).not.toBeVisible()
|
||||||
await expect.poll(() => page.url()).not.toContain('/onboarding')
|
await expect.poll(() => page.url()).not.toContain('/onboarding')
|
||||||
})
|
})
|
||||||
|
@ -1931,6 +1931,100 @@ sketch002 = startSketchOn(XZ)
|
|||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
test(`Sweep point-and-click helix`, async ({
|
||||||
|
context,
|
||||||
|
page,
|
||||||
|
homePage,
|
||||||
|
scene,
|
||||||
|
editor,
|
||||||
|
toolbar,
|
||||||
|
cmdBar,
|
||||||
|
}) => {
|
||||||
|
const circleCode = `circle(sketch001, center = [0, -1], radius = .1)`
|
||||||
|
const initialCode = `helix001 = helix(
|
||||||
|
axis = X,
|
||||||
|
radius = 1,
|
||||||
|
length = 10,
|
||||||
|
revolutions = 10,
|
||||||
|
angleStart = 0,
|
||||||
|
ccw = false,
|
||||||
|
)
|
||||||
|
sketch001 = startSketchOn(XZ)
|
||||||
|
profile001 = ${circleCode}`
|
||||||
|
const sweepDeclaration = 'sweep001 = sweep(profile001, path = helix001)'
|
||||||
|
|
||||||
|
await context.addInitScript((initialCode) => {
|
||||||
|
localStorage.setItem('persistCode', initialCode)
|
||||||
|
}, initialCode)
|
||||||
|
await homePage.goToModelingScene()
|
||||||
|
await scene.settled(cmdBar)
|
||||||
|
|
||||||
|
await test.step(`Add sweep through the command bar flow`, async () => {
|
||||||
|
await toolbar.openPane('feature-tree')
|
||||||
|
await toolbar.sweepButton.click()
|
||||||
|
await cmdBar.expectState({
|
||||||
|
commandName: 'Sweep',
|
||||||
|
currentArgKey: 'sketches',
|
||||||
|
currentArgValue: '',
|
||||||
|
headerArguments: {
|
||||||
|
Sectional: '',
|
||||||
|
Sketches: '',
|
||||||
|
Path: '',
|
||||||
|
},
|
||||||
|
highlightedHeaderArg: 'sketches',
|
||||||
|
stage: 'arguments',
|
||||||
|
})
|
||||||
|
await editor.scrollToText(circleCode)
|
||||||
|
await page.getByText(circleCode).click()
|
||||||
|
await cmdBar.progressCmdBar()
|
||||||
|
await cmdBar.expectState({
|
||||||
|
commandName: 'Sweep',
|
||||||
|
currentArgKey: 'path',
|
||||||
|
currentArgValue: '',
|
||||||
|
headerArguments: {
|
||||||
|
Sectional: '',
|
||||||
|
Sketches: '1 face',
|
||||||
|
Path: '',
|
||||||
|
},
|
||||||
|
highlightedHeaderArg: 'path',
|
||||||
|
stage: 'arguments',
|
||||||
|
})
|
||||||
|
const helix = await toolbar.getFeatureTreeOperation('Helix', 0)
|
||||||
|
await helix.click()
|
||||||
|
await cmdBar.expectState({
|
||||||
|
commandName: 'Sweep',
|
||||||
|
currentArgKey: 'path',
|
||||||
|
currentArgValue: '',
|
||||||
|
headerArguments: {
|
||||||
|
Sectional: '',
|
||||||
|
Sketches: '1 face',
|
||||||
|
Path: '',
|
||||||
|
},
|
||||||
|
highlightedHeaderArg: 'path',
|
||||||
|
stage: 'arguments',
|
||||||
|
})
|
||||||
|
await cmdBar.progressCmdBar()
|
||||||
|
await cmdBar.expectState({
|
||||||
|
commandName: 'Sweep',
|
||||||
|
headerArguments: {
|
||||||
|
Sketches: '1 face',
|
||||||
|
Path: '1 helix',
|
||||||
|
Sectional: '',
|
||||||
|
},
|
||||||
|
stage: 'review',
|
||||||
|
})
|
||||||
|
await cmdBar.progressCmdBar()
|
||||||
|
await editor.expectEditor.toContain(sweepDeclaration)
|
||||||
|
})
|
||||||
|
|
||||||
|
await test.step('Delete sweep via feature tree selection', async () => {
|
||||||
|
const sweep = await toolbar.getFeatureTreeOperation('Sweep', 0)
|
||||||
|
await sweep.click()
|
||||||
|
await page.keyboard.press('Delete')
|
||||||
|
await editor.expectEditor.not.toContain(sweepDeclaration)
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
test(`Fillet point-and-click`, async ({
|
test(`Fillet point-and-click`, async ({
|
||||||
context,
|
context,
|
||||||
page,
|
page,
|
||||||
|
@ -458,12 +458,10 @@ extrude002 = extrude(profile002, length = 150)
|
|||||||
|
|
||||||
// Click the stl.
|
// Click the stl.
|
||||||
await expect(stlOption).toBeVisible()
|
await expect(stlOption).toBeVisible()
|
||||||
|
|
||||||
await page.keyboard.press('Enter')
|
await page.keyboard.press('Enter')
|
||||||
|
|
||||||
// Click the checkbox
|
// Click the checkbox
|
||||||
await expect(submitButton).toBeVisible()
|
await expect(submitButton).toBeVisible()
|
||||||
|
|
||||||
await page.keyboard.press('Enter')
|
await page.keyboard.press('Enter')
|
||||||
|
|
||||||
// Find the toast.
|
// Find the toast.
|
||||||
@ -471,11 +469,13 @@ extrude002 = extrude(profile002, length = 150)
|
|||||||
await expect(exportingToastMessage).toBeVisible()
|
await expect(exportingToastMessage).toBeVisible()
|
||||||
|
|
||||||
// Expect it to succeed.
|
// Expect it to succeed.
|
||||||
await expect(exportingToastMessage).not.toBeVisible({ timeout: 15_000 })
|
await expect(exportingToastMessage).not.toBeVisible()
|
||||||
await expect(engineErrorToastMessage).not.toBeVisible()
|
await expect(engineErrorToastMessage).not.toBeVisible()
|
||||||
|
|
||||||
const successToastMessage = page.getByText(`Exported successfully`)
|
const successToastMessage = page.getByText(`Exported successfully`)
|
||||||
await expect(successToastMessage).toBeVisible()
|
await page.waitForTimeout(1_000)
|
||||||
|
const count = await successToastMessage.count()
|
||||||
|
await expect(count).toBeGreaterThanOrEqual(1)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
// We updated this test such that you can have multiple exports going at once.
|
// We updated this test such that you can have multiple exports going at once.
|
||||||
|
@ -1,19 +1,22 @@
|
|||||||
@precedence {
|
@precedence {
|
||||||
annotation
|
annotation
|
||||||
|
typeCall
|
||||||
member
|
member
|
||||||
call
|
call
|
||||||
exp @left
|
exp @left
|
||||||
mult @left
|
mult @left
|
||||||
add @left
|
add @left
|
||||||
|
ascription @left
|
||||||
comp @left
|
comp @left
|
||||||
logic @left
|
logic @left
|
||||||
pipe @left
|
pipe @left
|
||||||
range
|
range
|
||||||
|
statement
|
||||||
}
|
}
|
||||||
|
|
||||||
@top Program {
|
@top Program {
|
||||||
Shebang?
|
Shebang?
|
||||||
statement*
|
(statement !statement statement*)?
|
||||||
}
|
}
|
||||||
|
|
||||||
statement[@isGroup=Statement] {
|
statement[@isGroup=Statement] {
|
||||||
@ -52,12 +55,15 @@ expression[@isGroup=Expression] {
|
|||||||
UnaryExpression { UnaryOp expression } |
|
UnaryExpression { UnaryOp expression } |
|
||||||
ParenthesizedExpression { "(" expression ")" } |
|
ParenthesizedExpression { "(" expression ")" } |
|
||||||
IfExpression { kw<"if"> expression Body kw<"else"> Body } |
|
IfExpression { kw<"if"> expression Body kw<"else"> Body } |
|
||||||
CallExpression { expression !call ArgumentList } |
|
// We don't currently support arbitrary expressions as the callee part of a
|
||||||
|
// function call.
|
||||||
|
CallExpression { identifier !call ArgumentList } |
|
||||||
ArrayExpression { "[" commaSep<expression | IntegerRange { expression !range ".." expression }> "]" } |
|
ArrayExpression { "[" commaSep<expression | IntegerRange { expression !range ".." expression }> "]" } |
|
||||||
ObjectExpression { "{" commaSep<ObjectProperty> "}" } |
|
ObjectExpression { "{" commaSep<ObjectProperty> "}" } |
|
||||||
MemberExpression { expression !member "." PropertyName } |
|
MemberExpression { expression !member "." PropertyName } |
|
||||||
SubscriptExpression { expression !member "[" expression "]" } |
|
SubscriptExpression { expression !member "[" expression "]" } |
|
||||||
PipeExpression { expression (!pipe PipeOperator expression)+ }
|
PipeExpression { expression (!pipe PipeOperator expression)+ } |
|
||||||
|
AscribedExpression { expression !ascription ":" type }
|
||||||
}
|
}
|
||||||
|
|
||||||
UnaryOp { AddOp | BangOp }
|
UnaryOp { AddOp | BangOp }
|
||||||
@ -75,7 +81,7 @@ LabeledArgument { ArgumentLabel Equals expression }
|
|||||||
ArgumentList { "(" commaSep<LabeledArgument | expression> ")" }
|
ArgumentList { "(" commaSep<LabeledArgument | expression> ")" }
|
||||||
|
|
||||||
type[@isGroup=Type] {
|
type[@isGroup=Type] {
|
||||||
PrimitiveType { identifier } |
|
PrimitiveType { identifier !typeCall ("(" identifier ")")? } |
|
||||||
ArrayType { "[" type !member (";" Number "+"?)? "]" } |
|
ArrayType { "[" type !member (";" Number "+"?)? "]" } |
|
||||||
ObjectType { "{" commaSep<ObjectProperty { PropertyName ":" type }> "}" }
|
ObjectType { "{" commaSep<ObjectProperty { PropertyName ":" type }> "}" }
|
||||||
}
|
}
|
||||||
|
13
packages/codemirror-lang-kcl/test/ascription.txt
Normal file
13
packages/codemirror-lang-kcl/test/ascription.txt
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# primitive
|
||||||
|
|
||||||
|
true: bool
|
||||||
|
|
||||||
|
==>
|
||||||
|
Program(ExpressionStatement(AscribedExpression(true, ":", PrimitiveType)))
|
||||||
|
|
||||||
|
# numeric units
|
||||||
|
|
||||||
|
3.5: number(mm)
|
||||||
|
|
||||||
|
==>
|
||||||
|
Program(ExpressionStatement(AscribedExpression(3.5, ":", PrimitiveType)))
|
20
rust/Cargo.lock
generated
20
rust/Cargo.lock
generated
@ -1815,7 +1815,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "kcl-bumper"
|
name = "kcl-bumper"
|
||||||
version = "0.1.72"
|
version = "0.1.73"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"clap",
|
"clap",
|
||||||
@ -1826,7 +1826,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "kcl-derive-docs"
|
name = "kcl-derive-docs"
|
||||||
version = "0.1.72"
|
version = "0.1.73"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"Inflector",
|
"Inflector",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
@ -1845,7 +1845,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "kcl-directory-test-macro"
|
name = "kcl-directory-test-macro"
|
||||||
version = "0.1.72"
|
version = "0.1.73"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
@ -1854,7 +1854,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "kcl-language-server"
|
name = "kcl-language-server"
|
||||||
version = "0.2.72"
|
version = "0.2.73"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"clap",
|
"clap",
|
||||||
@ -1875,7 +1875,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "kcl-language-server-release"
|
name = "kcl-language-server-release"
|
||||||
version = "0.1.72"
|
version = "0.1.73"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"clap",
|
"clap",
|
||||||
@ -1895,7 +1895,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "kcl-lib"
|
name = "kcl-lib"
|
||||||
version = "0.2.72"
|
version = "0.2.73"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"approx 0.5.1",
|
"approx 0.5.1",
|
||||||
@ -1971,7 +1971,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "kcl-python-bindings"
|
name = "kcl-python-bindings"
|
||||||
version = "0.3.72"
|
version = "0.3.73"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"kcl-lib",
|
"kcl-lib",
|
||||||
@ -1986,7 +1986,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "kcl-test-server"
|
name = "kcl-test-server"
|
||||||
version = "0.1.72"
|
version = "0.1.73"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"hyper 0.14.32",
|
"hyper 0.14.32",
|
||||||
@ -1999,7 +1999,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "kcl-to-core"
|
name = "kcl-to-core"
|
||||||
version = "0.1.72"
|
version = "0.1.73"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"async-trait",
|
"async-trait",
|
||||||
@ -2013,7 +2013,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "kcl-wasm-lib"
|
name = "kcl-wasm-lib"
|
||||||
version = "0.1.72"
|
version = "0.1.73"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"bson",
|
"bson",
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
|
|
||||||
[package]
|
[package]
|
||||||
name = "kcl-bumper"
|
name = "kcl-bumper"
|
||||||
version = "0.1.72"
|
version = "0.1.73"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
repository = "https://github.com/KittyCAD/modeling-api"
|
repository = "https://github.com/KittyCAD/modeling-api"
|
||||||
rust-version = "1.76"
|
rust-version = "1.76"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "kcl-derive-docs"
|
name = "kcl-derive-docs"
|
||||||
description = "A tool for generating documentation from Rust derive macros"
|
description = "A tool for generating documentation from Rust derive macros"
|
||||||
version = "0.1.72"
|
version = "0.1.73"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/KittyCAD/modeling-app"
|
repository = "https://github.com/KittyCAD/modeling-app"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "kcl-directory-test-macro"
|
name = "kcl-directory-test-macro"
|
||||||
description = "A tool for generating tests from a directory of kcl files"
|
description = "A tool for generating tests from a directory of kcl files"
|
||||||
version = "0.1.72"
|
version = "0.1.73"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/KittyCAD/modeling-app"
|
repository = "https://github.com/KittyCAD/modeling-app"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "kcl-language-server-release"
|
name = "kcl-language-server-release"
|
||||||
version = "0.1.72"
|
version = "0.1.73"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
authors = ["KittyCAD Inc <kcl@kittycad.io>"]
|
authors = ["KittyCAD Inc <kcl@kittycad.io>"]
|
||||||
publish = false
|
publish = false
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
name = "kcl-language-server"
|
name = "kcl-language-server"
|
||||||
description = "A language server for KCL."
|
description = "A language server for KCL."
|
||||||
authors = ["KittyCAD Inc <kcl@kittycad.io>"]
|
authors = ["KittyCAD Inc <kcl@kittycad.io>"]
|
||||||
version = "0.2.72"
|
version = "0.2.73"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "kcl-lib"
|
name = "kcl-lib"
|
||||||
description = "KittyCAD Language implementation and tools"
|
description = "KittyCAD Language implementation and tools"
|
||||||
version = "0.2.72"
|
version = "0.2.73"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
repository = "https://github.com/KittyCAD/modeling-app"
|
repository = "https://github.com/KittyCAD/modeling-app"
|
||||||
|
@ -259,18 +259,23 @@ extrude(profile001, length = 100)"#
|
|||||||
#[tokio::test(flavor = "multi_thread")]
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
async fn kcl_test_cache_add_line_preserves_artifact_commands() {
|
async fn kcl_test_cache_add_line_preserves_artifact_commands() {
|
||||||
let code = r#"sketch001 = startSketchOn(XY)
|
let code = r#"sketch001 = startSketchOn(XY)
|
||||||
|> startProfile(at = [5.5229, 5.25217])
|
profile001 = startProfile(sketch001, at = [5.5, 5.25])
|
||||||
|> line(end = [10.50433, -1.19122])
|
|> line(end = [10.5, -1.19])
|
||||||
|> line(end = [8.01362, -5.48731])
|
|> line(end = [8, -5.5])
|
||||||
|> line(end = [-1.02877, -6.76825])
|
|> line(end = [-1.02, -6.76])
|
||||||
|> line(end = [-11.53311, 2.81559])
|
|> line(end = [-11.5, 2.8])
|
||||||
|> close()
|
|> close()
|
||||||
|
plane001 = offsetPlane(XY, offset = 20)
|
||||||
"#;
|
"#;
|
||||||
// Use a new statement; don't extend the prior pipeline. This allows us to
|
// Use a new statement; don't extend the prior pipeline. This allows us to
|
||||||
// detect a prefix.
|
// detect a prefix.
|
||||||
let code_with_extrude = code.to_owned()
|
let code_with_extrude = code.to_owned()
|
||||||
+ r#"
|
+ r#"
|
||||||
extrude(sketch001, length = 4)
|
profile002 = startProfile(plane001, at = [0, 0])
|
||||||
|
|> line(end = [0, 10])
|
||||||
|
|> line(end = [10, 0])
|
||||||
|
|> close()
|
||||||
|
extrude001 = extrude(profile001, length = 4)
|
||||||
"#;
|
"#;
|
||||||
|
|
||||||
let result = cache_test(
|
let result = cache_test(
|
||||||
@ -305,6 +310,24 @@ extrude(sketch001, length = 4)
|
|||||||
first.artifact_graph.len(),
|
first.artifact_graph.len(),
|
||||||
second.artifact_graph.len()
|
second.artifact_graph.len()
|
||||||
);
|
);
|
||||||
|
// Make sure we have NodePaths referring to the old code.
|
||||||
|
let graph = &second.artifact_graph;
|
||||||
|
assert!(!graph.is_empty());
|
||||||
|
for artifact in graph.values() {
|
||||||
|
assert!(!artifact.code_ref().map(|c| c.node_path.is_empty()).unwrap_or(false));
|
||||||
|
assert!(
|
||||||
|
!artifact
|
||||||
|
.face_code_ref()
|
||||||
|
// TODO: This fails, but it shouldn't.
|
||||||
|
// .map(|c| c.node_path.is_empty())
|
||||||
|
// Allowing the NodePath to be empty if the SourceRange is [0,
|
||||||
|
// 0] as a more lenient check.
|
||||||
|
.map(|c| !c.range.is_synthetic() && c.node_path.is_empty())
|
||||||
|
.unwrap_or(false),
|
||||||
|
"artifact={:?}",
|
||||||
|
artifact
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[tokio::test(flavor = "multi_thread")]
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 33 KiB |
Binary file not shown.
Before Width: | Height: | Size: 48 KiB After Width: | Height: | Size: 48 KiB |
@ -129,6 +129,7 @@ impl From<KclErrorWithOutputs> for KclError {
|
|||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
pub struct KclErrorWithOutputs {
|
pub struct KclErrorWithOutputs {
|
||||||
pub error: KclError,
|
pub error: KclError,
|
||||||
|
pub non_fatal: Vec<CompilationError>,
|
||||||
#[cfg(feature = "artifact-graph")]
|
#[cfg(feature = "artifact-graph")]
|
||||||
pub operations: Vec<Operation>,
|
pub operations: Vec<Operation>,
|
||||||
#[cfg(feature = "artifact-graph")]
|
#[cfg(feature = "artifact-graph")]
|
||||||
@ -141,8 +142,10 @@ pub struct KclErrorWithOutputs {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl KclErrorWithOutputs {
|
impl KclErrorWithOutputs {
|
||||||
|
#[allow(clippy::too_many_arguments)]
|
||||||
pub fn new(
|
pub fn new(
|
||||||
error: KclError,
|
error: KclError,
|
||||||
|
non_fatal: Vec<CompilationError>,
|
||||||
#[cfg(feature = "artifact-graph")] operations: Vec<Operation>,
|
#[cfg(feature = "artifact-graph")] operations: Vec<Operation>,
|
||||||
#[cfg(feature = "artifact-graph")] artifact_commands: Vec<ArtifactCommand>,
|
#[cfg(feature = "artifact-graph")] artifact_commands: Vec<ArtifactCommand>,
|
||||||
#[cfg(feature = "artifact-graph")] artifact_graph: ArtifactGraph,
|
#[cfg(feature = "artifact-graph")] artifact_graph: ArtifactGraph,
|
||||||
@ -152,6 +155,7 @@ impl KclErrorWithOutputs {
|
|||||||
) -> Self {
|
) -> Self {
|
||||||
Self {
|
Self {
|
||||||
error,
|
error,
|
||||||
|
non_fatal,
|
||||||
#[cfg(feature = "artifact-graph")]
|
#[cfg(feature = "artifact-graph")]
|
||||||
operations,
|
operations,
|
||||||
#[cfg(feature = "artifact-graph")]
|
#[cfg(feature = "artifact-graph")]
|
||||||
@ -166,6 +170,7 @@ impl KclErrorWithOutputs {
|
|||||||
pub fn no_outputs(error: KclError) -> Self {
|
pub fn no_outputs(error: KclError) -> Self {
|
||||||
Self {
|
Self {
|
||||||
error,
|
error,
|
||||||
|
non_fatal: Default::default(),
|
||||||
#[cfg(feature = "artifact-graph")]
|
#[cfg(feature = "artifact-graph")]
|
||||||
operations: Default::default(),
|
operations: Default::default(),
|
||||||
#[cfg(feature = "artifact-graph")]
|
#[cfg(feature = "artifact-graph")]
|
||||||
|
@ -115,7 +115,7 @@ where
|
|||||||
seq.end()
|
seq.end()
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, Serialize, PartialEq, Eq, ts_rs::TS)]
|
#[derive(Debug, Clone, Default, Serialize, PartialEq, Eq, ts_rs::TS)]
|
||||||
#[ts(export_to = "Artifact.ts")]
|
#[ts(export_to = "Artifact.ts")]
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
pub struct CodeRef {
|
pub struct CodeRef {
|
||||||
@ -396,7 +396,6 @@ pub enum Artifact {
|
|||||||
Cap(Cap),
|
Cap(Cap),
|
||||||
SweepEdge(SweepEdge),
|
SweepEdge(SweepEdge),
|
||||||
EdgeCut(EdgeCut),
|
EdgeCut(EdgeCut),
|
||||||
#[expect(unused)]
|
|
||||||
EdgeCutEdge(EdgeCutEdge),
|
EdgeCutEdge(EdgeCutEdge),
|
||||||
Helix(Helix),
|
Helix(Helix),
|
||||||
}
|
}
|
||||||
@ -550,8 +549,9 @@ impl Artifact {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[expect(dead_code)]
|
/// The [`CodeRef`] for the artifact itself. See also
|
||||||
pub(crate) fn code_ref(&self) -> Option<&CodeRef> {
|
/// [`Self::face_code_ref`].
|
||||||
|
pub fn code_ref(&self) -> Option<&CodeRef> {
|
||||||
match self {
|
match self {
|
||||||
Artifact::CompositeSolid(a) => Some(&a.code_ref),
|
Artifact::CompositeSolid(a) => Some(&a.code_ref),
|
||||||
Artifact::Plane(a) => Some(&a.code_ref),
|
Artifact::Plane(a) => Some(&a.code_ref),
|
||||||
@ -570,6 +570,24 @@ impl Artifact {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// The [`CodeRef`] referring to the face artifact that it's on, not the
|
||||||
|
/// artifact itself.
|
||||||
|
pub fn face_code_ref(&self) -> Option<&CodeRef> {
|
||||||
|
match self {
|
||||||
|
Artifact::CompositeSolid(_)
|
||||||
|
| Artifact::Plane(_)
|
||||||
|
| Artifact::Path(_)
|
||||||
|
| Artifact::Segment(_)
|
||||||
|
| Artifact::Solid2d(_)
|
||||||
|
| Artifact::StartSketchOnFace(_)
|
||||||
|
| Artifact::StartSketchOnPlane(_)
|
||||||
|
| Artifact::Sweep(_) => None,
|
||||||
|
Artifact::Wall(a) => Some(&a.face_code_ref),
|
||||||
|
Artifact::Cap(a) => Some(&a.face_code_ref),
|
||||||
|
Artifact::SweepEdge(_) | Artifact::EdgeCut(_) | Artifact::EdgeCutEdge(_) | Artifact::Helix(_) => None,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Merge the new artifact into self. If it can't because it's a different
|
/// Merge the new artifact into self. If it can't because it's a different
|
||||||
/// type, return the new artifact which should be used as a replacement.
|
/// type, return the new artifact which should be used as a replacement.
|
||||||
fn merge(&mut self, new: Artifact) -> Option<Artifact> {
|
fn merge(&mut self, new: Artifact) -> Option<Artifact> {
|
||||||
@ -704,6 +722,19 @@ impl ArtifactGraph {
|
|||||||
self.map.len()
|
self.map.len()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn is_empty(&self) -> bool {
|
||||||
|
self.map.is_empty()
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn values(&self) -> impl Iterator<Item = &Artifact> {
|
||||||
|
self.map.values()
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Consume the artifact graph and return the map of artifacts.
|
||||||
|
fn into_map(self) -> IndexMap<ArtifactId, Artifact> {
|
||||||
|
self.map
|
||||||
|
}
|
||||||
|
|
||||||
/// Used to make the mermaid tests deterministic.
|
/// Used to make the mermaid tests deterministic.
|
||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
pub(crate) fn sort(&mut self) {
|
pub(crate) fn sort(&mut self) {
|
||||||
@ -712,17 +743,29 @@ impl ArtifactGraph {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Build the artifact graph from the artifact commands and the responses. The
|
||||||
|
/// initial graph is the graph cached from a previous execution. NodePaths of
|
||||||
|
/// `exec_artifacts` are filled in from the AST.
|
||||||
pub(super) fn build_artifact_graph(
|
pub(super) fn build_artifact_graph(
|
||||||
artifact_commands: &[ArtifactCommand],
|
artifact_commands: &[ArtifactCommand],
|
||||||
responses: &IndexMap<Uuid, WebSocketResponse>,
|
responses: &IndexMap<Uuid, WebSocketResponse>,
|
||||||
ast: &Node<Program>,
|
ast: &Node<Program>,
|
||||||
exec_artifacts: &IndexMap<ArtifactId, Artifact>,
|
exec_artifacts: &mut IndexMap<ArtifactId, Artifact>,
|
||||||
|
initial_graph: ArtifactGraph,
|
||||||
) -> Result<ArtifactGraph, KclError> {
|
) -> Result<ArtifactGraph, KclError> {
|
||||||
let mut map = IndexMap::new();
|
let mut map = initial_graph.into_map();
|
||||||
|
|
||||||
let mut path_to_plane_id_map = FnvHashMap::default();
|
let mut path_to_plane_id_map = FnvHashMap::default();
|
||||||
let mut current_plane_id = None;
|
let mut current_plane_id = None;
|
||||||
|
|
||||||
|
// Fill in NodePaths for artifacts that were added directly to the map
|
||||||
|
// during execution.
|
||||||
|
for exec_artifact in exec_artifacts.values_mut() {
|
||||||
|
// Note: We only have access to the new AST. So if these artifacts
|
||||||
|
// somehow came from cached AST, this won't fill in anything.
|
||||||
|
fill_in_node_paths(exec_artifact, ast);
|
||||||
|
}
|
||||||
|
|
||||||
for artifact_command in artifact_commands {
|
for artifact_command in artifact_commands {
|
||||||
if let ModelingCmd::EnableSketchMode(EnableSketchMode { entity_id, .. }) = artifact_command.command {
|
if let ModelingCmd::EnableSketchMode(EnableSketchMode { entity_id, .. }) = artifact_command.command {
|
||||||
current_plane_id = Some(entity_id);
|
current_plane_id = Some(entity_id);
|
||||||
@ -762,6 +805,24 @@ pub(super) fn build_artifact_graph(
|
|||||||
Ok(ArtifactGraph { map })
|
Ok(ArtifactGraph { map })
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// These may have been created with placeholder `CodeRef`s because we didn't
|
||||||
|
/// have the entire AST available. Now we fill them in.
|
||||||
|
fn fill_in_node_paths(artifact: &mut Artifact, program: &Node<Program>) {
|
||||||
|
match artifact {
|
||||||
|
Artifact::StartSketchOnFace(face) => {
|
||||||
|
if face.code_ref.node_path.is_empty() {
|
||||||
|
face.code_ref.node_path = NodePath::from_range(program, face.code_ref.range).unwrap_or_default();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Artifact::StartSketchOnPlane(plane) => {
|
||||||
|
if plane.code_ref.node_path.is_empty() {
|
||||||
|
plane.code_ref.node_path = NodePath::from_range(program, plane.code_ref.range).unwrap_or_default();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
_ => {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Flatten the responses into a map of command IDs to modeling command
|
/// Flatten the responses into a map of command IDs to modeling command
|
||||||
/// responses. The raw responses from the engine contain batches.
|
/// responses. The raw responses from the engine contain batches.
|
||||||
fn flatten_modeling_command_responses(
|
fn flatten_modeling_command_responses(
|
||||||
@ -846,6 +907,12 @@ fn artifacts_to_update(
|
|||||||
ast: &Node<Program>,
|
ast: &Node<Program>,
|
||||||
exec_artifacts: &IndexMap<ArtifactId, Artifact>,
|
exec_artifacts: &IndexMap<ArtifactId, Artifact>,
|
||||||
) -> Result<Vec<Artifact>, KclError> {
|
) -> Result<Vec<Artifact>, KclError> {
|
||||||
|
let uuid = artifact_command.cmd_id;
|
||||||
|
let Some(response) = responses.get(&uuid) else {
|
||||||
|
// Response not found or not successful.
|
||||||
|
return Ok(Vec::new());
|
||||||
|
};
|
||||||
|
|
||||||
// TODO: Build path-to-node from artifact_command source range. Right now,
|
// TODO: Build path-to-node from artifact_command source range. Right now,
|
||||||
// we're serializing an empty array, and the TS wrapper fills it in with the
|
// we're serializing an empty array, and the TS wrapper fills it in with the
|
||||||
// correct value based on NodePath.
|
// correct value based on NodePath.
|
||||||
@ -858,14 +925,7 @@ fn artifacts_to_update(
|
|||||||
path_to_node,
|
path_to_node,
|
||||||
};
|
};
|
||||||
|
|
||||||
let uuid = artifact_command.cmd_id;
|
|
||||||
let id = ArtifactId::new(uuid);
|
let id = ArtifactId::new(uuid);
|
||||||
|
|
||||||
let Some(response) = responses.get(&uuid) else {
|
|
||||||
// Response not found or not successful.
|
|
||||||
return Ok(Vec::new());
|
|
||||||
};
|
|
||||||
|
|
||||||
let cmd = &artifact_command.command;
|
let cmd = &artifact_command.command;
|
||||||
|
|
||||||
match cmd {
|
match cmd {
|
||||||
@ -1100,16 +1160,19 @@ fn artifacts_to_update(
|
|||||||
let extra_artifact = exec_artifacts.values().find(|a| {
|
let extra_artifact = exec_artifacts.values().find(|a| {
|
||||||
if let Artifact::StartSketchOnFace(s) = a {
|
if let Artifact::StartSketchOnFace(s) = a {
|
||||||
s.face_id == face_id
|
s.face_id == face_id
|
||||||
|
} else if let Artifact::StartSketchOnPlane(s) = a {
|
||||||
|
s.plane_id == face_id
|
||||||
} else {
|
} else {
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
let sketch_on_face_source_range = extra_artifact
|
let sketch_on_face_code_ref = extra_artifact
|
||||||
.and_then(|a| match a {
|
.and_then(|a| match a {
|
||||||
Artifact::StartSketchOnFace(s) => Some(s.code_ref.range),
|
Artifact::StartSketchOnFace(s) => Some(s.code_ref.clone()),
|
||||||
// TODO: If we didn't find it, it's probably a bug.
|
Artifact::StartSketchOnPlane(s) => Some(s.code_ref.clone()),
|
||||||
_ => None,
|
_ => None,
|
||||||
})
|
})
|
||||||
|
// TODO: If we didn't find it, it's probably a bug.
|
||||||
.unwrap_or_default();
|
.unwrap_or_default();
|
||||||
|
|
||||||
return_arr.push(Artifact::Wall(Wall {
|
return_arr.push(Artifact::Wall(Wall {
|
||||||
@ -1118,11 +1181,7 @@ fn artifacts_to_update(
|
|||||||
edge_cut_edge_ids: Vec::new(),
|
edge_cut_edge_ids: Vec::new(),
|
||||||
sweep_id: path_sweep_id,
|
sweep_id: path_sweep_id,
|
||||||
path_ids: Vec::new(),
|
path_ids: Vec::new(),
|
||||||
face_code_ref: CodeRef {
|
face_code_ref: sketch_on_face_code_ref,
|
||||||
range: sketch_on_face_source_range,
|
|
||||||
node_path: NodePath::from_range(ast, sketch_on_face_source_range).unwrap_or_default(),
|
|
||||||
path_to_node: Vec::new(),
|
|
||||||
},
|
|
||||||
cmd_id: artifact_command.cmd_id,
|
cmd_id: artifact_command.cmd_id,
|
||||||
}));
|
}));
|
||||||
let mut new_seg = seg.clone();
|
let mut new_seg = seg.clone();
|
||||||
@ -1155,15 +1214,19 @@ fn artifacts_to_update(
|
|||||||
let extra_artifact = exec_artifacts.values().find(|a| {
|
let extra_artifact = exec_artifacts.values().find(|a| {
|
||||||
if let Artifact::StartSketchOnFace(s) = a {
|
if let Artifact::StartSketchOnFace(s) = a {
|
||||||
s.face_id == face_id
|
s.face_id == face_id
|
||||||
|
} else if let Artifact::StartSketchOnPlane(s) = a {
|
||||||
|
s.plane_id == face_id
|
||||||
} else {
|
} else {
|
||||||
false
|
false
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
let sketch_on_face_source_range = extra_artifact
|
let sketch_on_face_code_ref = extra_artifact
|
||||||
.and_then(|a| match a {
|
.and_then(|a| match a {
|
||||||
Artifact::StartSketchOnFace(s) => Some(s.code_ref.range),
|
Artifact::StartSketchOnFace(s) => Some(s.code_ref.clone()),
|
||||||
|
Artifact::StartSketchOnPlane(s) => Some(s.code_ref.clone()),
|
||||||
_ => None,
|
_ => None,
|
||||||
})
|
})
|
||||||
|
// TODO: If we didn't find it, it's probably a bug.
|
||||||
.unwrap_or_default();
|
.unwrap_or_default();
|
||||||
return_arr.push(Artifact::Cap(Cap {
|
return_arr.push(Artifact::Cap(Cap {
|
||||||
id: face_id,
|
id: face_id,
|
||||||
@ -1171,11 +1234,7 @@ fn artifacts_to_update(
|
|||||||
edge_cut_edge_ids: Vec::new(),
|
edge_cut_edge_ids: Vec::new(),
|
||||||
sweep_id: path_sweep_id,
|
sweep_id: path_sweep_id,
|
||||||
path_ids: Vec::new(),
|
path_ids: Vec::new(),
|
||||||
face_code_ref: CodeRef {
|
face_code_ref: sketch_on_face_code_ref,
|
||||||
range: sketch_on_face_source_range,
|
|
||||||
node_path: NodePath::from_range(ast, sketch_on_face_source_range).unwrap_or_default(),
|
|
||||||
path_to_node: Vec::new(),
|
|
||||||
},
|
|
||||||
cmd_id: artifact_command.cmd_id,
|
cmd_id: artifact_command.cmd_id,
|
||||||
}));
|
}));
|
||||||
let Some(Artifact::Sweep(sweep)) = artifacts.get(&path_sweep_id) else {
|
let Some(Artifact::Sweep(sweep)) = artifacts.get(&path_sweep_id) else {
|
||||||
|
@ -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(())
|
||||||
|
@ -736,21 +736,35 @@ fn apply_ascription(
|
|||||||
let ty = RuntimeType::from_parsed(ty.inner.clone(), exec_state, value.into())
|
let ty = RuntimeType::from_parsed(ty.inner.clone(), exec_state, value.into())
|
||||||
.map_err(|e| KclError::Semantic(e.into()))?;
|
.map_err(|e| KclError::Semantic(e.into()))?;
|
||||||
|
|
||||||
if let KclValue::Number { value, meta, .. } = value {
|
let mut value = value.clone();
|
||||||
|
|
||||||
// If the number has unknown units but the user is explicitly specifying them, treat the value as having had it's units erased,
|
// If the number has unknown units but the user is explicitly specifying them, treat the value as having had it's units erased,
|
||||||
// rather than forcing the user to explicitly erase them.
|
// rather than forcing the user to explicitly erase them.
|
||||||
KclValue::Number {
|
if let KclValue::Number { value: n, meta, .. } = &value {
|
||||||
|
if let RuntimeType::Primitive(PrimitiveType::Number(num)) = &ty {
|
||||||
|
if num.is_fully_specified() {
|
||||||
|
value = KclValue::Number {
|
||||||
ty: NumericType::Any,
|
ty: NumericType::Any,
|
||||||
value: *value,
|
value: *n,
|
||||||
meta: meta.clone(),
|
meta: meta.clone(),
|
||||||
|
};
|
||||||
}
|
}
|
||||||
.coerce(&ty, exec_state)
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
value.coerce(&ty, exec_state).map_err(|_| {
|
||||||
|
let suggestion = if ty == RuntimeType::length() {
|
||||||
|
", you might try coercing to a fully specified numeric type such as `number(mm)`"
|
||||||
|
} else if ty == RuntimeType::angle() {
|
||||||
|
", you might try coercing to a fully specified numeric type such as `number(deg)`"
|
||||||
} else {
|
} else {
|
||||||
value.coerce(&ty, exec_state)
|
""
|
||||||
}
|
};
|
||||||
.map_err(|_| {
|
|
||||||
KclError::Semantic(KclErrorDetails {
|
KclError::Semantic(KclErrorDetails {
|
||||||
message: format!("could not coerce {} value to type {}", value.human_friendly_type(), ty),
|
message: format!(
|
||||||
|
"could not coerce {} value to type {ty}{suggestion}",
|
||||||
|
value.human_friendly_type()
|
||||||
|
),
|
||||||
source_ranges: vec![source_range],
|
source_ranges: vec![source_range],
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
@ -1453,7 +1467,6 @@ impl Node<CallExpressionKw> {
|
|||||||
.await
|
.await
|
||||||
.map_err(|e| {
|
.map_err(|e| {
|
||||||
// Add the call expression to the source ranges.
|
// Add the call expression to the source ranges.
|
||||||
// TODO currently ignored by the frontend
|
|
||||||
e.add_source_ranges(vec![callsite])
|
e.add_source_ranges(vec![callsite])
|
||||||
})?;
|
})?;
|
||||||
|
|
||||||
@ -2767,4 +2780,29 @@ startSketchOn(XY)
|
|||||||
// Make sure we get a useful error message and not an engine error.
|
// Make sure we get a useful error message and not an engine error.
|
||||||
assert!(e.message().contains("sqrt"), "Error message: '{}'", e.message());
|
assert!(e.message().contains("sqrt"), "Error message: '{}'", e.message());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
|
async fn coerce_unknown_to_length() {
|
||||||
|
let ast = r#"x = 2mm * 2mm
|
||||||
|
y = x: number(Length)"#;
|
||||||
|
let e = parse_execute(ast).await.unwrap_err();
|
||||||
|
assert!(
|
||||||
|
e.message().contains("could not coerce"),
|
||||||
|
"Error message: '{}'",
|
||||||
|
e.message()
|
||||||
|
);
|
||||||
|
|
||||||
|
let ast = r#"x = 2mm
|
||||||
|
y = x: number(Length)"#;
|
||||||
|
let result = parse_execute(ast).await.unwrap();
|
||||||
|
let mem = result.exec_state.stack();
|
||||||
|
let num = mem
|
||||||
|
.memory
|
||||||
|
.get_from("y", result.mem_env, SourceRange::default(), 0)
|
||||||
|
.unwrap()
|
||||||
|
.as_ty_f64()
|
||||||
|
.unwrap();
|
||||||
|
assert_eq!(num.n, 2.0);
|
||||||
|
assert_eq!(num.ty, NumericType::mm());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -426,14 +426,14 @@ impl ExecutorContext {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(target_arch = "wasm32"))]
|
#[cfg(not(target_arch = "wasm32"))]
|
||||||
pub async fn new_mock() -> Self {
|
pub async fn new_mock(settings: Option<ExecutorSettings>) -> Self {
|
||||||
ExecutorContext {
|
ExecutorContext {
|
||||||
engine: Arc::new(Box::new(
|
engine: Arc::new(Box::new(
|
||||||
crate::engine::conn_mock::EngineConnection::new().await.unwrap(),
|
crate::engine::conn_mock::EngineConnection::new().await.unwrap(),
|
||||||
)),
|
)),
|
||||||
fs: Arc::new(FileManager::new()),
|
fs: Arc::new(FileManager::new()),
|
||||||
stdlib: Arc::new(StdLib::new()),
|
stdlib: Arc::new(StdLib::new()),
|
||||||
settings: Default::default(),
|
settings: settings.unwrap_or_default(),
|
||||||
context_type: ContextType::Mock,
|
context_type: ContextType::Mock,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -823,6 +823,7 @@ impl ExecutorContext {
|
|||||||
|
|
||||||
KclErrorWithOutputs::new(
|
KclErrorWithOutputs::new(
|
||||||
err,
|
err,
|
||||||
|
exec_state.errors().to_vec(),
|
||||||
#[cfg(feature = "artifact-graph")]
|
#[cfg(feature = "artifact-graph")]
|
||||||
exec_state.global.operations.clone(),
|
exec_state.global.operations.clone(),
|
||||||
#[cfg(feature = "artifact-graph")]
|
#[cfg(feature = "artifact-graph")]
|
||||||
@ -999,6 +1000,7 @@ impl ExecutorContext {
|
|||||||
|
|
||||||
return Err(KclErrorWithOutputs::new(
|
return Err(KclErrorWithOutputs::new(
|
||||||
e,
|
e,
|
||||||
|
exec_state.errors().to_vec(),
|
||||||
#[cfg(feature = "artifact-graph")]
|
#[cfg(feature = "artifact-graph")]
|
||||||
exec_state.global.operations.clone(),
|
exec_state.global.operations.clone(),
|
||||||
#[cfg(feature = "artifact-graph")]
|
#[cfg(feature = "artifact-graph")]
|
||||||
@ -1048,6 +1050,7 @@ impl ExecutorContext {
|
|||||||
|
|
||||||
KclErrorWithOutputs::new(
|
KclErrorWithOutputs::new(
|
||||||
err,
|
err,
|
||||||
|
exec_state.errors().to_vec(),
|
||||||
#[cfg(feature = "artifact-graph")]
|
#[cfg(feature = "artifact-graph")]
|
||||||
exec_state.global.operations.clone(),
|
exec_state.global.operations.clone(),
|
||||||
#[cfg(feature = "artifact-graph")]
|
#[cfg(feature = "artifact-graph")]
|
||||||
@ -1100,6 +1103,7 @@ impl ExecutorContext {
|
|||||||
|
|
||||||
KclErrorWithOutputs::new(
|
KclErrorWithOutputs::new(
|
||||||
e,
|
e,
|
||||||
|
exec_state.errors().to_vec(),
|
||||||
#[cfg(feature = "artifact-graph")]
|
#[cfg(feature = "artifact-graph")]
|
||||||
exec_state.global.operations.clone(),
|
exec_state.global.operations.clone(),
|
||||||
#[cfg(feature = "artifact-graph")]
|
#[cfg(feature = "artifact-graph")]
|
||||||
@ -1155,23 +1159,24 @@ impl ExecutorContext {
|
|||||||
|
|
||||||
#[cfg(feature = "artifact-graph")]
|
#[cfg(feature = "artifact-graph")]
|
||||||
{
|
{
|
||||||
// Move the artifact commands and responses to simplify cache management
|
let new_commands = self.engine.take_artifact_commands().await;
|
||||||
// and error creation.
|
let new_responses = self.engine.take_responses().await;
|
||||||
exec_state
|
let initial_graph = exec_state.global.artifact_graph.clone();
|
||||||
.global
|
|
||||||
.artifact_commands
|
|
||||||
.extend(self.engine.take_artifact_commands().await);
|
|
||||||
exec_state
|
|
||||||
.global
|
|
||||||
.artifact_responses
|
|
||||||
.extend(self.engine.take_responses().await);
|
|
||||||
// Build the artifact graph.
|
// Build the artifact graph.
|
||||||
match build_artifact_graph(
|
let graph_result = build_artifact_graph(
|
||||||
&exec_state.global.artifact_commands,
|
&new_commands,
|
||||||
&exec_state.global.artifact_responses,
|
&new_responses,
|
||||||
program,
|
program,
|
||||||
&exec_state.global.artifacts,
|
&mut exec_state.global.artifacts,
|
||||||
) {
|
initial_graph,
|
||||||
|
);
|
||||||
|
// Move the artifact commands and responses into ExecState to
|
||||||
|
// simplify cache management and error creation.
|
||||||
|
exec_state.global.artifact_commands.extend(new_commands);
|
||||||
|
exec_state.global.artifact_responses.extend(new_responses);
|
||||||
|
|
||||||
|
match graph_result {
|
||||||
Ok(artifact_graph) => {
|
Ok(artifact_graph) => {
|
||||||
exec_state.global.artifact_graph = artifact_graph;
|
exec_state.global.artifact_graph = artifact_graph;
|
||||||
exec_result.map(|(_, env_ref, _)| env_ref)
|
exec_result.map(|(_, env_ref, _)| env_ref)
|
||||||
@ -2232,7 +2237,7 @@ w = f() + f()
|
|||||||
let result = ctx.run_with_caching(program).await.unwrap();
|
let result = ctx.run_with_caching(program).await.unwrap();
|
||||||
assert_eq!(result.variables.get("x").unwrap().as_f64().unwrap(), 2.0);
|
assert_eq!(result.variables.get("x").unwrap().as_f64().unwrap(), 2.0);
|
||||||
|
|
||||||
let ctx2 = ExecutorContext::new_mock().await;
|
let ctx2 = ExecutorContext::new_mock(None).await;
|
||||||
let program2 = crate::Program::parse_no_errs("z = x + 1").unwrap();
|
let program2 = crate::Program::parse_no_errs("z = x + 1").unwrap();
|
||||||
let result = ctx2.run_mock(program2, true).await.unwrap();
|
let result = ctx2.run_mock(program2, true).await.unwrap();
|
||||||
assert_eq!(result.variables.get("z").unwrap().as_f64().unwrap(), 3.0);
|
assert_eq!(result.variables.get("z").unwrap().as_f64().unwrap(), 3.0);
|
||||||
|
@ -664,6 +664,17 @@ impl NumericType {
|
|||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn is_fully_specified(&self) -> bool {
|
||||||
|
!matches!(
|
||||||
|
self,
|
||||||
|
NumericType::Unknown
|
||||||
|
| NumericType::Known(UnitType::Angle(UnitAngle::Unknown))
|
||||||
|
| NumericType::Known(UnitType::Length(UnitLen::Unknown))
|
||||||
|
| NumericType::Any
|
||||||
|
| NumericType::Default { .. }
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
fn example_ty(&self) -> Option<String> {
|
fn example_ty(&self) -> Option<String> {
|
||||||
match self {
|
match self {
|
||||||
Self::Known(t) if !self.is_unknown() => Some(t.to_string()),
|
Self::Known(t) if !self.is_unknown() => Some(t.to_string()),
|
||||||
@ -1266,7 +1277,15 @@ impl KclValue {
|
|||||||
.satisfied(values.len(), allow_shrink)
|
.satisfied(values.len(), allow_shrink)
|
||||||
.ok_or(CoercionError::from(self))?;
|
.ok_or(CoercionError::from(self))?;
|
||||||
|
|
||||||
assert!(len <= values.len());
|
if len > values.len() {
|
||||||
|
let message = format!(
|
||||||
|
"Internal: Expected coerced array length {len} to be less than or equal to original length {}",
|
||||||
|
values.len()
|
||||||
|
);
|
||||||
|
exec_state.err(CompilationError::err(self.into(), message.clone()));
|
||||||
|
#[cfg(debug_assertions)]
|
||||||
|
panic!("{message}");
|
||||||
|
}
|
||||||
values.truncate(len);
|
values.truncate(len);
|
||||||
|
|
||||||
Ok(KclValue::HomArray {
|
Ok(KclValue::HomArray {
|
||||||
@ -1460,7 +1479,7 @@ mod test {
|
|||||||
|
|
||||||
#[tokio::test(flavor = "multi_thread")]
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
async fn coerce_idempotent() {
|
async fn coerce_idempotent() {
|
||||||
let mut exec_state = ExecState::new(&crate::ExecutorContext::new_mock().await);
|
let mut exec_state = ExecState::new(&crate::ExecutorContext::new_mock(None).await);
|
||||||
let values = values(&mut exec_state);
|
let values = values(&mut exec_state);
|
||||||
for v in &values {
|
for v in &values {
|
||||||
// Identity subtype
|
// Identity subtype
|
||||||
@ -1550,7 +1569,7 @@ mod test {
|
|||||||
|
|
||||||
#[tokio::test(flavor = "multi_thread")]
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
async fn coerce_none() {
|
async fn coerce_none() {
|
||||||
let mut exec_state = ExecState::new(&crate::ExecutorContext::new_mock().await);
|
let mut exec_state = ExecState::new(&crate::ExecutorContext::new_mock(None).await);
|
||||||
let none = KclValue::KclNone {
|
let none = KclValue::KclNone {
|
||||||
value: crate::parsing::ast::types::KclNone::new(),
|
value: crate::parsing::ast::types::KclNone::new(),
|
||||||
meta: Vec::new(),
|
meta: Vec::new(),
|
||||||
@ -1608,7 +1627,7 @@ mod test {
|
|||||||
|
|
||||||
#[tokio::test(flavor = "multi_thread")]
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
async fn coerce_record() {
|
async fn coerce_record() {
|
||||||
let mut exec_state = ExecState::new(&crate::ExecutorContext::new_mock().await);
|
let mut exec_state = ExecState::new(&crate::ExecutorContext::new_mock(None).await);
|
||||||
|
|
||||||
let obj0 = KclValue::Object {
|
let obj0 = KclValue::Object {
|
||||||
value: HashMap::new(),
|
value: HashMap::new(),
|
||||||
@ -1690,7 +1709,7 @@ mod test {
|
|||||||
|
|
||||||
#[tokio::test(flavor = "multi_thread")]
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
async fn coerce_array() {
|
async fn coerce_array() {
|
||||||
let mut exec_state = ExecState::new(&crate::ExecutorContext::new_mock().await);
|
let mut exec_state = ExecState::new(&crate::ExecutorContext::new_mock(None).await);
|
||||||
|
|
||||||
let hom_arr = KclValue::HomArray {
|
let hom_arr = KclValue::HomArray {
|
||||||
value: vec![
|
value: vec![
|
||||||
@ -1843,7 +1862,7 @@ mod test {
|
|||||||
|
|
||||||
#[tokio::test(flavor = "multi_thread")]
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
async fn coerce_union() {
|
async fn coerce_union() {
|
||||||
let mut exec_state = ExecState::new(&crate::ExecutorContext::new_mock().await);
|
let mut exec_state = ExecState::new(&crate::ExecutorContext::new_mock(None).await);
|
||||||
|
|
||||||
// Subtyping smaller unions
|
// Subtyping smaller unions
|
||||||
assert!(RuntimeType::Union(vec![]).subtype(&RuntimeType::Union(vec![
|
assert!(RuntimeType::Union(vec![]).subtype(&RuntimeType::Union(vec![
|
||||||
@ -1894,7 +1913,7 @@ mod test {
|
|||||||
|
|
||||||
#[tokio::test(flavor = "multi_thread")]
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
async fn coerce_axes() {
|
async fn coerce_axes() {
|
||||||
let mut exec_state = ExecState::new(&crate::ExecutorContext::new_mock().await);
|
let mut exec_state = ExecState::new(&crate::ExecutorContext::new_mock(None).await);
|
||||||
|
|
||||||
// Subtyping
|
// Subtyping
|
||||||
assert!(RuntimeType::Primitive(PrimitiveType::Axis2d).subtype(&RuntimeType::Primitive(PrimitiveType::Axis2d)));
|
assert!(RuntimeType::Primitive(PrimitiveType::Axis2d).subtype(&RuntimeType::Primitive(PrimitiveType::Axis2d)));
|
||||||
@ -2009,7 +2028,7 @@ mod test {
|
|||||||
|
|
||||||
#[tokio::test(flavor = "multi_thread")]
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
async fn coerce_numeric() {
|
async fn coerce_numeric() {
|
||||||
let mut exec_state = ExecState::new(&crate::ExecutorContext::new_mock().await);
|
let mut exec_state = ExecState::new(&crate::ExecutorContext::new_mock(None).await);
|
||||||
|
|
||||||
let count = KclValue::Number {
|
let count = KclValue::Number {
|
||||||
value: 1.0,
|
value: 1.0,
|
||||||
@ -2237,7 +2256,7 @@ d = cos(30)
|
|||||||
|
|
||||||
#[tokio::test(flavor = "multi_thread")]
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
async fn coerce_nested_array() {
|
async fn coerce_nested_array() {
|
||||||
let mut exec_state = ExecState::new(&crate::ExecutorContext::new_mock().await);
|
let mut exec_state = ExecState::new(&crate::ExecutorContext::new_mock(None).await);
|
||||||
|
|
||||||
let mixed1 = KclValue::HomArray {
|
let mixed1 = KclValue::HomArray {
|
||||||
value: vec![
|
value: vec![
|
||||||
|
@ -314,7 +314,7 @@ fn assert_common_snapshots(
|
|||||||
// Change the snapshot suffix so that it is rendered as a Markdown file
|
// Change the snapshot suffix so that it is rendered as a Markdown file
|
||||||
// in GitHub.
|
// in GitHub.
|
||||||
// Ignore the cpu cooler for now because its being a little bitch.
|
// Ignore the cpu cooler for now because its being a little bitch.
|
||||||
if test.name == "cpu_cooler" {
|
if test.name != "cpu-cooler" {
|
||||||
insta::assert_binary_snapshot!("artifact_graph_flowchart.md", flowchart.as_bytes().to_owned());
|
insta::assert_binary_snapshot!("artifact_graph_flowchart.md", flowchart.as_bytes().to_owned());
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -102,7 +102,7 @@ impl TyF64 {
|
|||||||
t => unreachable!("expected length, found {t:?}"),
|
t => unreachable!("expected length, found {t:?}"),
|
||||||
};
|
};
|
||||||
|
|
||||||
assert_ne!(len, UnitLen::Unknown);
|
debug_assert_ne!(len, UnitLen::Unknown);
|
||||||
|
|
||||||
len.adjust_to(self.n, units).0
|
len.adjust_to(self.n, units).0
|
||||||
}
|
}
|
||||||
@ -114,7 +114,7 @@ impl TyF64 {
|
|||||||
_ => unreachable!(),
|
_ => unreachable!(),
|
||||||
};
|
};
|
||||||
|
|
||||||
assert_ne!(angle, UnitAngle::Unknown);
|
debug_assert_ne!(angle, UnitAngle::Unknown);
|
||||||
|
|
||||||
angle.adjust_to(self.n, UnitAngle::Degrees).0
|
angle.adjust_to(self.n, UnitAngle::Degrees).0
|
||||||
}
|
}
|
||||||
@ -126,7 +126,7 @@ impl TyF64 {
|
|||||||
_ => unreachable!(),
|
_ => unreachable!(),
|
||||||
};
|
};
|
||||||
|
|
||||||
assert_ne!(angle, UnitAngle::Unknown);
|
debug_assert_ne!(angle, UnitAngle::Unknown);
|
||||||
|
|
||||||
angle.adjust_to(self.n, UnitAngle::Radians).0
|
angle.adjust_to(self.n, UnitAngle::Radians).0
|
||||||
}
|
}
|
||||||
|
@ -674,7 +674,7 @@ mod tests {
|
|||||||
|
|
||||||
#[tokio::test(flavor = "multi_thread")]
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
async fn test_array_to_point3d() {
|
async fn test_array_to_point3d() {
|
||||||
let mut exec_state = ExecState::new(&ExecutorContext::new_mock().await);
|
let mut exec_state = ExecState::new(&ExecutorContext::new_mock(None).await);
|
||||||
let input = KclValue::HomArray {
|
let input = KclValue::HomArray {
|
||||||
value: vec![
|
value: vec![
|
||||||
KclValue::Number {
|
KclValue::Number {
|
||||||
@ -706,7 +706,7 @@ mod tests {
|
|||||||
|
|
||||||
#[tokio::test(flavor = "multi_thread")]
|
#[tokio::test(flavor = "multi_thread")]
|
||||||
async fn test_tuple_to_point3d() {
|
async fn test_tuple_to_point3d() {
|
||||||
let mut exec_state = ExecState::new(&ExecutorContext::new_mock().await);
|
let mut exec_state = ExecState::new(&ExecutorContext::new_mock(None).await);
|
||||||
let input = KclValue::Tuple {
|
let input = KclValue::Tuple {
|
||||||
value: vec![
|
value: vec![
|
||||||
KclValue::Number {
|
KclValue::Number {
|
||||||
|
@ -110,9 +110,9 @@ pub async fn sweep(exec_state: &mut ExecState, args: Args) -> Result<KclValue, K
|
|||||||
///
|
///
|
||||||
///
|
///
|
||||||
/// // Create a spring by sweeping around the helix path.
|
/// // Create a spring by sweeping around the helix path.
|
||||||
/// springSketch = startSketchOn(YZ)
|
/// springSketch = startSketchOn(XZ)
|
||||||
/// |> circle( center = [0, 0], radius = 1)
|
/// |> circle( center = [5, 0], radius = 1)
|
||||||
/// |> sweep(path = helixPath, relativeTo = "sketchPlane")
|
/// |> sweep(path = helixPath)
|
||||||
/// ```
|
/// ```
|
||||||
///
|
///
|
||||||
/// ```no_run
|
/// ```no_run
|
||||||
|
@ -267,7 +267,7 @@ import \"a.kcl\"
|
|||||||
);
|
);
|
||||||
modules.insert("b.kcl".to_owned(), into_module_info(b));
|
modules.insert("b.kcl".to_owned(), into_module_info(b));
|
||||||
|
|
||||||
let ctx = ExecutorContext::new_mock().await;
|
let ctx = ExecutorContext::new_mock(None).await;
|
||||||
let order = import_graph(&modules, &ctx).unwrap();
|
let order = import_graph(&modules, &ctx).unwrap();
|
||||||
assert_eq!(vec![vec!["a.kcl".to_owned()], vec!["b.kcl".to_owned()]], order);
|
assert_eq!(vec![vec!["a.kcl".to_owned()], vec!["b.kcl".to_owned()]], order);
|
||||||
}
|
}
|
||||||
@ -290,7 +290,7 @@ x = 1
|
|||||||
);
|
);
|
||||||
modules.insert("b.kcl".to_owned(), into_module_info(b));
|
modules.insert("b.kcl".to_owned(), into_module_info(b));
|
||||||
|
|
||||||
let ctx = ExecutorContext::new_mock().await;
|
let ctx = ExecutorContext::new_mock(None).await;
|
||||||
let order = import_graph(&modules, &ctx).unwrap();
|
let order = import_graph(&modules, &ctx).unwrap();
|
||||||
assert_eq!(vec![vec!["a.kcl".to_owned(), "b.kcl".to_owned()]], order);
|
assert_eq!(vec![vec!["a.kcl".to_owned(), "b.kcl".to_owned()]], order);
|
||||||
}
|
}
|
||||||
@ -316,7 +316,7 @@ import \"a.kcl\"
|
|||||||
);
|
);
|
||||||
modules.insert("c.kcl".to_owned(), into_module_info(c));
|
modules.insert("c.kcl".to_owned(), into_module_info(c));
|
||||||
|
|
||||||
let ctx = ExecutorContext::new_mock().await;
|
let ctx = ExecutorContext::new_mock(None).await;
|
||||||
let order = import_graph(&modules, &ctx).unwrap();
|
let order = import_graph(&modules, &ctx).unwrap();
|
||||||
assert_eq!(
|
assert_eq!(
|
||||||
vec![vec!["a.kcl".to_owned()], vec!["b.kcl".to_owned(), "c.kcl".to_owned()]],
|
vec![vec!["a.kcl".to_owned()], vec!["b.kcl".to_owned(), "c.kcl".to_owned()]],
|
||||||
@ -342,7 +342,7 @@ import \"a.kcl\"
|
|||||||
);
|
);
|
||||||
modules.insert("b.kcl".to_owned(), into_module_info(b));
|
modules.insert("b.kcl".to_owned(), into_module_info(b));
|
||||||
|
|
||||||
let ctx = ExecutorContext::new_mock().await;
|
let ctx = ExecutorContext::new_mock(None).await;
|
||||||
import_graph(&modules, &ctx).unwrap_err();
|
import_graph(&modules, &ctx).unwrap_err();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -82,9 +82,9 @@ export END = 'end'
|
|||||||
/// )
|
/// )
|
||||||
///
|
///
|
||||||
/// // Create a spring by sweeping around the helix path.
|
/// // Create a spring by sweeping around the helix path.
|
||||||
/// springSketch = startSketchOn(YZ)
|
/// springSketch = startSketchOn(XZ)
|
||||||
/// |> circle( center = [0, 0], radius = 0.5)
|
/// |> circle( center = [5, 0], radius = 0.5)
|
||||||
/// |> sweep(path = helixPath, relativeTo = sweep::SKETCH_PLANE)
|
/// |> sweep(path = helixPath)
|
||||||
/// ```
|
/// ```
|
||||||
///
|
///
|
||||||
/// ```
|
/// ```
|
||||||
@ -103,9 +103,9 @@ export END = 'end'
|
|||||||
/// )
|
/// )
|
||||||
///
|
///
|
||||||
/// // Create a spring by sweeping around the helix path.
|
/// // Create a spring by sweeping around the helix path.
|
||||||
/// springSketch = startSketchOn(XY)
|
/// springSketch = startSketchOn(XZ)
|
||||||
/// |> circle( center = [0, 0], radius = 0.5 )
|
/// |> circle( center = [5, 0], radius = 0.5 )
|
||||||
/// |> sweep(path = helixPath, relativeTo = sweep::SKETCH_PLANE)
|
/// |> sweep(path = helixPath)
|
||||||
/// ```
|
/// ```
|
||||||
///
|
///
|
||||||
/// ```
|
/// ```
|
||||||
@ -123,9 +123,9 @@ export END = 'end'
|
|||||||
/// )
|
/// )
|
||||||
///
|
///
|
||||||
/// // Create a spring by sweeping around the helix path.
|
/// // Create a spring by sweeping around the helix path.
|
||||||
/// springSketch = startSketchOn(XY)
|
/// springSketch = startSketchOn(XZ)
|
||||||
/// |> circle( center = [0, 0], radius = 1 )
|
/// |> circle( center = [5, 0], radius = 1 )
|
||||||
/// |> sweep(path = helixPath, relativeTo = sweep::SKETCH_PLANE)
|
/// |> sweep(path = helixPath)
|
||||||
/// ```
|
/// ```
|
||||||
///
|
///
|
||||||
/// ```
|
/// ```
|
||||||
@ -408,13 +408,13 @@ export fn offsetPlane(
|
|||||||
/// )
|
/// )
|
||||||
///
|
///
|
||||||
///
|
///
|
||||||
/// springSketch = startSketchOn(YZ)
|
/// springSketch = startSketchOn(XZ)
|
||||||
/// |> circle( center = [0, 0], radius = 1)
|
/// |> circle( center = [0, 0], radius = 1)
|
||||||
///
|
///
|
||||||
/// // Create a spring by sweeping around the helix path.
|
/// // Create a spring by sweeping around the helix path.
|
||||||
/// sweepedSpring = clone(springSketch)
|
/// sweepedSpring = clone(springSketch)
|
||||||
/// |> translate(x=100)
|
/// |> translate(x=5)
|
||||||
/// |> sweep(path = helixPath, relativeTo = sweep::SKETCH_PLANE)
|
/// |> sweep(path = helixPath)
|
||||||
/// ```
|
/// ```
|
||||||
///
|
///
|
||||||
/// ```kcl
|
/// ```kcl
|
||||||
|
@ -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"]
|
||||||
|
@ -31,21 +31,31 @@ flowchart LR
|
|||||||
1["Plane<br>[12, 29, 0]"]
|
1["Plane<br>[12, 29, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["StartSketchOnFace<br>[343, 382, 0]"]
|
2["StartSketchOnFace<br>[343, 382, 0]"]
|
||||||
%% Missing NodePath
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
16["Sweep Extrusion<br>[258, 290, 0]"]
|
16["Sweep Extrusion<br>[258, 290, 0]"]
|
||||||
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
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"]
|
||||||
|
@ -13,7 +13,7 @@ flowchart LR
|
|||||||
3["Plane<br>[110, 138, 0]"]
|
3["Plane<br>[110, 138, 0]"]
|
||||||
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
4["StartSketchOnPlane<br>[152, 181, 0]"]
|
4["StartSketchOnPlane<br>[152, 181, 0]"]
|
||||||
%% Missing NodePath
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
1 <--x 4
|
1 <--x 4
|
||||||
1 --- 5
|
1 --- 5
|
||||||
5 --- 6
|
5 --- 6
|
||||||
|
@ -2,61 +2,106 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path5 [Path]
|
subgraph path5 [Path]
|
||||||
5["Path<br>[35, 60, 0]"]
|
5["Path<br>[35, 60, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
9["Segment<br>[66, 84, 0]"]
|
9["Segment<br>[66, 84, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
10["Segment<br>[90, 123, 0]"]
|
10["Segment<br>[90, 123, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
11["Segment<br>[129, 185, 0]"]
|
11["Segment<br>[129, 185, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
12["Segment<br>[191, 198, 0]"]
|
12["Segment<br>[191, 198, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
25[Solid2d]
|
25[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path6 [Path]
|
subgraph path6 [Path]
|
||||||
6["Path<br>[300, 330, 0]"]
|
6["Path<br>[300, 330, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
13["Segment<br>[336, 354, 0]"]
|
13["Segment<br>[336, 354, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
14["Segment<br>[360, 379, 0]"]
|
14["Segment<br>[360, 379, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
15["Segment<br>[385, 441, 0]"]
|
15["Segment<br>[385, 441, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
16["Segment<br>[447, 454, 0]"]
|
16["Segment<br>[447, 454, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
26[Solid2d]
|
26[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path7 [Path]
|
subgraph path7 [Path]
|
||||||
7["Path<br>[556, 583, 0]"]
|
7["Path<br>[556, 583, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
17["Segment<br>[589, 623, 0]"]
|
17["Segment<br>[589, 623, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
18["Segment<br>[629, 648, 0]"]
|
18["Segment<br>[629, 648, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
19["Segment<br>[654, 710, 0]"]
|
19["Segment<br>[654, 710, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
20["Segment<br>[716, 723, 0]"]
|
20["Segment<br>[716, 723, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
28[Solid2d]
|
28[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path8 [Path]
|
subgraph path8 [Path]
|
||||||
8["Path<br>[825, 852, 0]"]
|
8["Path<br>[825, 852, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
21["Segment<br>[858, 878, 0]"]
|
21["Segment<br>[858, 878, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
22["Segment<br>[884, 905, 0]"]
|
22["Segment<br>[884, 905, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
23["Segment<br>[911, 967, 0]"]
|
23["Segment<br>[911, 967, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
24["Segment<br>[973, 980, 0]"]
|
24["Segment<br>[973, 980, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
27[Solid2d]
|
27[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[12, 29, 0]"]
|
1["Plane<br>[12, 29, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["StartSketchOnFace<br>[255, 294, 0]"]
|
2["StartSketchOnFace<br>[255, 294, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
3["StartSketchOnFace<br>[511, 550, 0]"]
|
3["StartSketchOnFace<br>[511, 550, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
4["StartSketchOnFace<br>[780, 819, 0]"]
|
4["StartSketchOnFace<br>[780, 819, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
29["Sweep Extrusion<br>[212, 242, 0]"]
|
29["Sweep Extrusion<br>[212, 242, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
30["Sweep Extrusion<br>[468, 498, 0]"]
|
30["Sweep Extrusion<br>[468, 498, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
31["Sweep Extrusion<br>[737, 767, 0]"]
|
31["Sweep Extrusion<br>[737, 767, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
32["Sweep Extrusion<br>[994, 1024, 0]"]
|
32["Sweep Extrusion<br>[994, 1024, 0]"]
|
||||||
|
%% [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"]
|
||||||
|
@ -2,12 +2,17 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path2 [Path]
|
subgraph path2 [Path]
|
||||||
2["Path<br>[35, 70, 0]"]
|
2["Path<br>[35, 70, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
3["Segment<br>[35, 70, 0]"]
|
3["Segment<br>[35, 70, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
4[Solid2d]
|
4[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[12, 29, 0]"]
|
1["Plane<br>[12, 29, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
5["Sweep Revolve<br>[76, 120, 0]"]
|
5["Sweep Revolve<br>[76, 120, 0]"]
|
||||||
|
%% [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"]
|
||||||
|
@ -2,111 +2,187 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path4 [Path]
|
subgraph path4 [Path]
|
||||||
4["Path<br>[43, 86, 0]"]
|
4["Path<br>[43, 86, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
15["Segment<br>[92, 130, 0]"]
|
15["Segment<br>[92, 130, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
16["Segment<br>[136, 175, 0]"]
|
16["Segment<br>[136, 175, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
17["Segment<br>[181, 237, 0]"]
|
17["Segment<br>[181, 237, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
18["Segment<br>[243, 250, 0]"]
|
18["Segment<br>[243, 250, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
56[Solid2d]
|
56[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path5 [Path]
|
subgraph path5 [Path]
|
||||||
5["Path<br>[362, 405, 0]"]
|
5["Path<br>[362, 405, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
19["Segment<br>[411, 435, 0]"]
|
19["Segment<br>[411, 435, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
20["Segment<br>[441, 466, 0]"]
|
20["Segment<br>[441, 466, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
end
|
end
|
||||||
subgraph path6 [Path]
|
subgraph path6 [Path]
|
||||||
6["Path<br>[480, 522, 0]"]
|
6["Path<br>[480, 522, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
21["Segment<br>[528, 593, 0]"]
|
21["Segment<br>[528, 593, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
22["Segment<br>[599, 667, 0]"]
|
22["Segment<br>[599, 667, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
23["Segment<br>[673, 761, 0]"]
|
23["Segment<br>[673, 761, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
24["Segment<br>[767, 823, 0]"]
|
24["Segment<br>[767, 823, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
25["Segment<br>[829, 836, 0]"]
|
25["Segment<br>[829, 836, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
53[Solid2d]
|
53[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path7 [Path]
|
subgraph path7 [Path]
|
||||||
7["Path<br>[850, 892, 0]"]
|
7["Path<br>[850, 892, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
26["Segment<br>[898, 918, 0]"]
|
26["Segment<br>[898, 918, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
27["Segment<br>[924, 950, 0]"]
|
27["Segment<br>[924, 950, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
28["Segment<br>[956, 1012, 0]"]
|
28["Segment<br>[956, 1012, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
29["Segment<br>[1018, 1025, 0]"]
|
29["Segment<br>[1018, 1025, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
58[Solid2d]
|
58[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path8 [Path]
|
subgraph path8 [Path]
|
||||||
8["Path<br>[1039, 1094, 0]"]
|
8["Path<br>[1039, 1094, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
30["Segment<br>[1039, 1094, 0]"]
|
30["Segment<br>[1039, 1094, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
57[Solid2d]
|
57[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path9 [Path]
|
subgraph path9 [Path]
|
||||||
9["Path<br>[1108, 1150, 0]"]
|
9["Path<br>[1108, 1150, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
31["Segment<br>[1156, 1180, 0]"]
|
31["Segment<br>[1156, 1180, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
32["Segment<br>[1186, 1211, 0]"]
|
32["Segment<br>[1186, 1211, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
33["Segment<br>[1217, 1273, 0]"]
|
33["Segment<br>[1217, 1273, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
34["Segment<br>[1279, 1286, 0]"]
|
34["Segment<br>[1279, 1286, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
59[Solid2d]
|
59[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path10 [Path]
|
subgraph path10 [Path]
|
||||||
10["Path<br>[1456, 1497, 0]"]
|
10["Path<br>[1456, 1497, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
35["Segment<br>[1503, 1527, 0]"]
|
35["Segment<br>[1503, 1527, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
36["Segment<br>[1533, 1558, 0]"]
|
36["Segment<br>[1533, 1558, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
end
|
end
|
||||||
subgraph path11 [Path]
|
subgraph path11 [Path]
|
||||||
11["Path<br>[1572, 1614, 0]"]
|
11["Path<br>[1572, 1614, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
37["Segment<br>[1620, 1644, 0]"]
|
37["Segment<br>[1620, 1644, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
38["Segment<br>[1650, 1675, 0]"]
|
38["Segment<br>[1650, 1675, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
39["Segment<br>[1681, 1737, 0]"]
|
39["Segment<br>[1681, 1737, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
40["Segment<br>[1743, 1750, 0]"]
|
40["Segment<br>[1743, 1750, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
51[Solid2d]
|
51[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path12 [Path]
|
subgraph path12 [Path]
|
||||||
12["Path<br>[1764, 1806, 0]"]
|
12["Path<br>[1764, 1806, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
41["Segment<br>[1812, 1835, 0]"]
|
41["Segment<br>[1812, 1835, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
42["Segment<br>[1841, 1866, 0]"]
|
42["Segment<br>[1841, 1866, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
43["Segment<br>[1872, 1928, 0]"]
|
43["Segment<br>[1872, 1928, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
44["Segment<br>[1934, 1941, 0]"]
|
44["Segment<br>[1934, 1941, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
52[Solid2d]
|
52[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path13 [Path]
|
subgraph path13 [Path]
|
||||||
13["Path<br>[1955, 2011, 0]"]
|
13["Path<br>[1955, 2011, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
45["Segment<br>[1955, 2011, 0]"]
|
45["Segment<br>[1955, 2011, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
55[Solid2d]
|
55[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path14 [Path]
|
subgraph path14 [Path]
|
||||||
14["Path<br>[2025, 2068, 0]"]
|
14["Path<br>[2025, 2068, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
46["Segment<br>[2074, 2139, 0]"]
|
46["Segment<br>[2074, 2139, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
47["Segment<br>[2145, 2213, 0]"]
|
47["Segment<br>[2145, 2213, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
48["Segment<br>[2219, 2307, 0]"]
|
48["Segment<br>[2219, 2307, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
49["Segment<br>[2313, 2369, 0]"]
|
49["Segment<br>[2313, 2369, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
50["Segment<br>[2375, 2382, 0]"]
|
50["Segment<br>[2375, 2382, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
54[Solid2d]
|
54[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[12, 29, 0]"]
|
1["Plane<br>[12, 29, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
2["Plane<br>[1424, 1442, 0]"]
|
2["Plane<br>[1424, 1442, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
3["StartSketchOnFace<br>[309, 348, 0]"]
|
3["StartSketchOnFace<br>[309, 348, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
60["Sweep Extrusion<br>[264, 296, 0]"]
|
60["Sweep Extrusion<br>[264, 296, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
61["Sweep RevolveAboutEdge<br>[1300, 1366, 0]"]
|
61["Sweep RevolveAboutEdge<br>[1300, 1366, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
62["Sweep Extrusion<br>[1380, 1411, 0]"]
|
62["Sweep Extrusion<br>[1380, 1411, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
63["Sweep Extrusion<br>[2396, 2429, 0]"]
|
63["Sweep Extrusion<br>[2396, 2429, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
64["Sweep RevolveAboutEdge<br>[2443, 2488, 0]"]
|
64["Sweep RevolveAboutEdge<br>[2443, 2488, 0]"]
|
||||||
|
%% [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"]
|
||||||
|
@ -0,0 +1,6 @@
|
|||||||
|
---
|
||||||
|
source: kcl-lib/src/simulation_tests.rs
|
||||||
|
description: Artifact graph flowchart error_revolve_on_edge_get_edge.kcl
|
||||||
|
extension: md
|
||||||
|
snapshot_kind: binary
|
||||||
|
---
|
@ -0,0 +1,115 @@
|
|||||||
|
```mermaid
|
||||||
|
flowchart LR
|
||||||
|
subgraph path3 [Path]
|
||||||
|
3["Path<br>[29, 54, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
|
5["Segment<br>[60, 79, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
|
6["Segment<br>[85, 104, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
|
7["Segment<br>[110, 150, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
|
8["Segment<br>[156, 163, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
|
13[Solid2d]
|
||||||
|
end
|
||||||
|
subgraph path4 [Path]
|
||||||
|
4["Path<br>[247, 273, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
|
9["Segment<br>[279, 299, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
|
10["Segment<br>[305, 323, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
|
11["Segment<br>[329, 348, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
|
12["Segment<br>[354, 361, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
|
14[Solid2d]
|
||||||
|
end
|
||||||
|
1["Plane<br>[6, 23, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
|
2["StartSketchOnFace<br>[203, 241, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
|
15["Sweep Extrusion<br>[169, 189, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
|
16[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
|
17[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
|
18[Wall]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
|
19[Wall]
|
||||||
|
%% face_code_ref=[ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
|
20["Cap Start"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
|
21["Cap End"]
|
||||||
|
%% face_code_ref=Missing NodePath
|
||||||
|
22["SweepEdge Opposite"]
|
||||||
|
23["SweepEdge Opposite"]
|
||||||
|
24["SweepEdge Opposite"]
|
||||||
|
25["SweepEdge Opposite"]
|
||||||
|
26["SweepEdge Adjacent"]
|
||||||
|
27["SweepEdge Adjacent"]
|
||||||
|
28["SweepEdge Adjacent"]
|
||||||
|
29["SweepEdge Adjacent"]
|
||||||
|
1 --- 3
|
||||||
|
19 x--> 2
|
||||||
|
3 --- 5
|
||||||
|
3 --- 6
|
||||||
|
3 --- 7
|
||||||
|
3 --- 8
|
||||||
|
3 --- 13
|
||||||
|
3 ---- 15
|
||||||
|
4 --- 9
|
||||||
|
4 --- 10
|
||||||
|
4 --- 11
|
||||||
|
4 --- 12
|
||||||
|
4 --- 14
|
||||||
|
19 --- 4
|
||||||
|
5 --- 18
|
||||||
|
5 x--> 20
|
||||||
|
5 --- 25
|
||||||
|
5 --- 29
|
||||||
|
6 --- 16
|
||||||
|
6 x--> 20
|
||||||
|
6 --- 24
|
||||||
|
6 --- 28
|
||||||
|
7 --- 19
|
||||||
|
7 x--> 20
|
||||||
|
7 --- 23
|
||||||
|
7 --- 27
|
||||||
|
8 --- 17
|
||||||
|
8 x--> 20
|
||||||
|
8 --- 22
|
||||||
|
8 --- 26
|
||||||
|
15 --- 16
|
||||||
|
15 --- 17
|
||||||
|
15 --- 18
|
||||||
|
15 --- 19
|
||||||
|
15 --- 20
|
||||||
|
15 --- 21
|
||||||
|
15 --- 22
|
||||||
|
15 --- 23
|
||||||
|
15 --- 24
|
||||||
|
15 --- 25
|
||||||
|
15 --- 26
|
||||||
|
15 --- 27
|
||||||
|
15 --- 28
|
||||||
|
15 --- 29
|
||||||
|
16 --- 24
|
||||||
|
16 --- 28
|
||||||
|
29 <--x 16
|
||||||
|
17 --- 22
|
||||||
|
17 --- 26
|
||||||
|
27 <--x 17
|
||||||
|
18 --- 25
|
||||||
|
26 <--x 18
|
||||||
|
18 --- 29
|
||||||
|
19 --- 23
|
||||||
|
19 --- 27
|
||||||
|
28 <--x 19
|
||||||
|
22 <--x 21
|
||||||
|
23 <--x 21
|
||||||
|
24 <--x 21
|
||||||
|
25 <--x 21
|
||||||
|
```
|
@ -2,101 +2,160 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path7 [Path]
|
subgraph path7 [Path]
|
||||||
7["Path<br>[396, 467, 0]"]
|
7["Path<br>[396, 467, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
21["Segment<br>[473, 564, 0]"]
|
21["Segment<br>[473, 564, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
22["Segment<br>[570, 661, 0]"]
|
22["Segment<br>[570, 661, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
23["Segment<br>[667, 760, 0]"]
|
23["Segment<br>[667, 760, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
24["Segment<br>[766, 774, 0]"]
|
24["Segment<br>[766, 774, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
42[Solid2d]
|
42[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path8 [Path]
|
subgraph path8 [Path]
|
||||||
8["Path<br>[806, 831, 0]"]
|
8["Path<br>[806, 831, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
25["Segment<br>[837, 885, 0]"]
|
25["Segment<br>[837, 885, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
26["Segment<br>[891, 948, 0]"]
|
26["Segment<br>[891, 948, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
27["Segment<br>[954, 1003, 0]"]
|
27["Segment<br>[954, 1003, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
28["Segment<br>[1009, 1028, 0]"]
|
28["Segment<br>[1009, 1028, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
46[Solid2d]
|
46[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path9 [Path]
|
subgraph path9 [Path]
|
||||||
9["Path<br>[1339, 1364, 0]"]
|
9["Path<br>[1339, 1364, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
end
|
end
|
||||||
subgraph path10 [Path]
|
subgraph path10 [Path]
|
||||||
10["Path<br>[1339, 1364, 0]"]
|
10["Path<br>[1339, 1364, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
end
|
end
|
||||||
subgraph path11 [Path]
|
subgraph path11 [Path]
|
||||||
11["Path<br>[1339, 1364, 0]"]
|
11["Path<br>[1339, 1364, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
end
|
end
|
||||||
subgraph path12 [Path]
|
subgraph path12 [Path]
|
||||||
12["Path<br>[1339, 1364, 0]"]
|
12["Path<br>[1339, 1364, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
end
|
end
|
||||||
subgraph path13 [Path]
|
subgraph path13 [Path]
|
||||||
13["Path<br>[1372, 1409, 0]"]
|
13["Path<br>[1372, 1409, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
31["Segment<br>[1372, 1409, 0]"]
|
31["Segment<br>[1372, 1409, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
38[Solid2d]
|
38[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path14 [Path]
|
subgraph path14 [Path]
|
||||||
14["Path<br>[1372, 1409, 0]"]
|
14["Path<br>[1372, 1409, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
30["Segment<br>[1372, 1409, 0]"]
|
30["Segment<br>[1372, 1409, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
39[Solid2d]
|
39[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path15 [Path]
|
subgraph path15 [Path]
|
||||||
15["Path<br>[1372, 1409, 0]"]
|
15["Path<br>[1372, 1409, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
29["Segment<br>[1372, 1409, 0]"]
|
29["Segment<br>[1372, 1409, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
40[Solid2d]
|
40[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path16 [Path]
|
subgraph path16 [Path]
|
||||||
16["Path<br>[1372, 1409, 0]"]
|
16["Path<br>[1372, 1409, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
32["Segment<br>[1372, 1409, 0]"]
|
32["Segment<br>[1372, 1409, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
41[Solid2d]
|
41[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path17 [Path]
|
subgraph path17 [Path]
|
||||||
17["Path<br>[1435, 1473, 0]"]
|
17["Path<br>[1435, 1473, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }, CallKwArg { index: 0 }]
|
||||||
35["Segment<br>[1435, 1473, 0]"]
|
35["Segment<br>[1435, 1473, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }, CallKwArg { index: 0 }]
|
||||||
37[Solid2d]
|
37[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path18 [Path]
|
subgraph path18 [Path]
|
||||||
18["Path<br>[1435, 1473, 0]"]
|
18["Path<br>[1435, 1473, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }, CallKwArg { index: 0 }]
|
||||||
33["Segment<br>[1435, 1473, 0]"]
|
33["Segment<br>[1435, 1473, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }, CallKwArg { index: 0 }]
|
||||||
43[Solid2d]
|
43[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path19 [Path]
|
subgraph path19 [Path]
|
||||||
19["Path<br>[1435, 1473, 0]"]
|
19["Path<br>[1435, 1473, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }, CallKwArg { index: 0 }]
|
||||||
36["Segment<br>[1435, 1473, 0]"]
|
36["Segment<br>[1435, 1473, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }, CallKwArg { index: 0 }]
|
||||||
44[Solid2d]
|
44[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path20 [Path]
|
subgraph path20 [Path]
|
||||||
20["Path<br>[1435, 1473, 0]"]
|
20["Path<br>[1435, 1473, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }, CallKwArg { index: 0 }]
|
||||||
34["Segment<br>[1435, 1473, 0]"]
|
34["Segment<br>[1435, 1473, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }, CallKwArg { index: 0 }]
|
||||||
45[Solid2d]
|
45[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[373, 390, 0]"]
|
1["Plane<br>[373, 390, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["Plane<br>[783, 800, 0]"]
|
2["Plane<br>[783, 800, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
3["Plane<br>[1314, 1331, 0]"]
|
3["Plane<br>[1314, 1331, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
4["Plane<br>[1314, 1331, 0]"]
|
4["Plane<br>[1314, 1331, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
5["Plane<br>[1314, 1331, 0]"]
|
5["Plane<br>[1314, 1331, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
6["Plane<br>[1314, 1331, 0]"]
|
6["Plane<br>[1314, 1331, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
47["Sweep Extrusion<br>[1034, 1062, 0]"]
|
47["Sweep Extrusion<br>[1034, 1062, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
48["Sweep Extrusion<br>[1482, 1506, 0]"]
|
48["Sweep Extrusion<br>[1482, 1506, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
49["Sweep Extrusion<br>[1482, 1506, 0]"]
|
49["Sweep Extrusion<br>[1482, 1506, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
50["Sweep Extrusion<br>[1482, 1506, 0]"]
|
50["Sweep Extrusion<br>[1482, 1506, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
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 }]
|
||||||
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"]
|
||||||
@ -114,9 +173,13 @@ flowchart LR
|
|||||||
84["SweepEdge Adjacent"]
|
84["SweepEdge Adjacent"]
|
||||||
85["SweepEdge Adjacent"]
|
85["SweepEdge Adjacent"]
|
||||||
86["EdgeCut Fillet<br>[1068, 1274, 0]"]
|
86["EdgeCut Fillet<br>[1068, 1274, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
87["EdgeCut Fillet<br>[1068, 1274, 0]"]
|
87["EdgeCut Fillet<br>[1068, 1274, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
88["EdgeCut Fillet<br>[1068, 1274, 0]"]
|
88["EdgeCut Fillet<br>[1068, 1274, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
89["EdgeCut Fillet<br>[1068, 1274, 0]"]
|
89["EdgeCut Fillet<br>[1068, 1274, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
1 --- 7
|
1 --- 7
|
||||||
2 --- 8
|
2 --- 8
|
||||||
3 --- 10
|
3 --- 10
|
||||||
|
@ -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"]
|
||||||
|
@ -2,51 +2,86 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path8 [Path]
|
subgraph path8 [Path]
|
||||||
8["Path<br>[753, 859, 0]"]
|
8["Path<br>[753, 859, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
12["Segment<br>[867, 894, 0]"]
|
12["Segment<br>[867, 894, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
13["Segment<br>[902, 930, 0]"]
|
13["Segment<br>[902, 930, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
14["Segment<br>[938, 966, 0]"]
|
14["Segment<br>[938, 966, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
15["Segment<br>[974, 1050, 0]"]
|
15["Segment<br>[974, 1050, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
16["Segment<br>[1058, 1123, 0]"]
|
16["Segment<br>[1058, 1123, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
17["Segment<br>[1131, 1138, 0]"]
|
17["Segment<br>[1131, 1138, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
30[Solid2d]
|
30[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path9 [Path]
|
subgraph path9 [Path]
|
||||||
9["Path<br>[1643, 1713, 0]"]
|
9["Path<br>[1643, 1713, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
26["Segment<br>[2677, 2684, 0]"]
|
26["Segment<br>[2677, 2684, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
29[Solid2d]
|
29[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path10 [Path]
|
subgraph path10 [Path]
|
||||||
10["Path<br>[1643, 1713, 0]"]
|
10["Path<br>[1643, 1713, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
19["Segment<br>[1723, 1889, 0]"]
|
19["Segment<br>[1723, 1889, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
20["Segment<br>[1899, 1984, 0]"]
|
20["Segment<br>[1899, 1984, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
23["Segment<br>[1994, 2215, 0]"]
|
23["Segment<br>[1994, 2215, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
24["Segment<br>[2302, 2388, 0]"]
|
24["Segment<br>[2302, 2388, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
28["Segment<br>[2677, 2684, 0]"]
|
28["Segment<br>[2677, 2684, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
31[Solid2d]
|
31[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path11 [Path]
|
subgraph path11 [Path]
|
||||||
11["Path<br>[1643, 1713, 0]"]
|
11["Path<br>[1643, 1713, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
18["Segment<br>[1723, 1889, 0]"]
|
18["Segment<br>[1723, 1889, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
21["Segment<br>[1899, 1984, 0]"]
|
21["Segment<br>[1899, 1984, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
22["Segment<br>[1994, 2215, 0]"]
|
22["Segment<br>[1994, 2215, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
25["Segment<br>[2302, 2388, 0]"]
|
25["Segment<br>[2302, 2388, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
27["Segment<br>[2677, 2684, 0]"]
|
27["Segment<br>[2677, 2684, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
32[Solid2d]
|
32[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[728, 745, 0]"]
|
1["Plane<br>[728, 745, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["Plane<br>[1594, 1632, 0]"]
|
2["Plane<br>[1594, 1632, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
3["Plane<br>[1594, 1632, 0]"]
|
3["Plane<br>[1594, 1632, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
4["Plane<br>[1594, 1632, 0]"]
|
4["Plane<br>[1594, 1632, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
5["StartSketchOnPlane<br>[1580, 1633, 0]"]
|
5["StartSketchOnPlane<br>[1580, 1633, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
6["StartSketchOnPlane<br>[1580, 1633, 0]"]
|
6["StartSketchOnPlane<br>[1580, 1633, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
7["StartSketchOnPlane<br>[1580, 1633, 0]"]
|
7["StartSketchOnPlane<br>[1580, 1633, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
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]
|
||||||
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
|
||||||
|
@ -2,37 +2,64 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path3 [Path]
|
subgraph path3 [Path]
|
||||||
3["Path<br>[58, 113, 0]"]
|
3["Path<br>[58, 113, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 1 }]
|
||||||
6["Segment<br>[121, 177, 0]"]
|
6["Segment<br>[121, 177, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 2 }]
|
||||||
8["Segment<br>[185, 241, 0]"]
|
8["Segment<br>[185, 241, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 3 }]
|
||||||
9["Segment<br>[249, 305, 0]"]
|
9["Segment<br>[249, 305, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 4 }]
|
||||||
12["Segment<br>[313, 320, 0]"]
|
12["Segment<br>[313, 320, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 5 }]
|
||||||
13[Solid2d]
|
13[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path4 [Path]
|
subgraph path4 [Path]
|
||||||
4["Path<br>[58, 113, 0]"]
|
4["Path<br>[58, 113, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 1 }]
|
||||||
5["Segment<br>[121, 177, 0]"]
|
5["Segment<br>[121, 177, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 2 }]
|
||||||
7["Segment<br>[185, 241, 0]"]
|
7["Segment<br>[185, 241, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 3 }]
|
||||||
10["Segment<br>[249, 305, 0]"]
|
10["Segment<br>[249, 305, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 4 }]
|
||||||
11["Segment<br>[313, 320, 0]"]
|
11["Segment<br>[313, 320, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 5 }]
|
||||||
14[Solid2d]
|
14[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[33, 50, 0]"]
|
1["Plane<br>[33, 50, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 0 }]
|
||||||
2["Plane<br>[33, 50, 0]"]
|
2["Plane<br>[33, 50, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 0 }]
|
||||||
15["Sweep Extrusion<br>[328, 354, 0]"]
|
15["Sweep Extrusion<br>[328, 354, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 6 }]
|
||||||
16["Sweep Extrusion<br>[328, 354, 0]"]
|
16["Sweep Extrusion<br>[328, 354, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 6 }]
|
||||||
17["CompositeSolid Intersect<br>[480, 509, 0]"]
|
17["CompositeSolid Intersect<br>[480, 509, 0]"]
|
||||||
|
%% [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"]
|
||||||
|
@ -2,239 +2,406 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path8 [Path]
|
subgraph path8 [Path]
|
||||||
8["Path<br>[341, 388, 1]"]
|
8["Path<br>[341, 388, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
31["Segment<br>[394, 462, 1]"]
|
31["Segment<br>[394, 462, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
32["Segment<br>[468, 568, 1]"]
|
32["Segment<br>[468, 568, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
33["Segment<br>[574, 691, 1]"]
|
33["Segment<br>[574, 691, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
34["Segment<br>[697, 782, 1]"]
|
34["Segment<br>[697, 782, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
35["Segment<br>[788, 795, 1]"]
|
35["Segment<br>[788, 795, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
105[Solid2d]
|
105[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path9 [Path]
|
subgraph path9 [Path]
|
||||||
9["Path<br>[819, 854, 1]"]
|
9["Path<br>[819, 854, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
36["Segment<br>[819, 854, 1]"]
|
36["Segment<br>[819, 854, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
100[Solid2d]
|
100[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path10 [Path]
|
subgraph path10 [Path]
|
||||||
10["Path<br>[879, 1026, 1]"]
|
10["Path<br>[879, 1026, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
37["Segment<br>[879, 1026, 1]"]
|
37["Segment<br>[879, 1026, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
114[Solid2d]
|
114[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path11 [Path]
|
subgraph path11 [Path]
|
||||||
11["Path<br>[1051, 1199, 1]"]
|
11["Path<br>[1051, 1199, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
38["Segment<br>[1051, 1199, 1]"]
|
38["Segment<br>[1051, 1199, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
104[Solid2d]
|
104[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path12 [Path]
|
subgraph path12 [Path]
|
||||||
12["Path<br>[1224, 1372, 1]"]
|
12["Path<br>[1224, 1372, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
39["Segment<br>[1224, 1372, 1]"]
|
39["Segment<br>[1224, 1372, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
110[Solid2d]
|
110[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path13 [Path]
|
subgraph path13 [Path]
|
||||||
13["Path<br>[1397, 1546, 1]"]
|
13["Path<br>[1397, 1546, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
40["Segment<br>[1397, 1546, 1]"]
|
40["Segment<br>[1397, 1546, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
115[Solid2d]
|
115[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path14 [Path]
|
subgraph path14 [Path]
|
||||||
14["Path<br>[1714, 1770, 1]"]
|
14["Path<br>[1714, 1770, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
41["Segment<br>[1776, 1841, 1]"]
|
41["Segment<br>[1776, 1841, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
42["Segment<br>[1847, 1899, 1]"]
|
42["Segment<br>[1847, 1899, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
43["Segment<br>[1905, 1956, 1]"]
|
43["Segment<br>[1905, 1956, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
44["Segment<br>[1962, 2014, 1]"]
|
44["Segment<br>[1962, 2014, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
45["Segment<br>[2020, 2086, 1]"]
|
45["Segment<br>[2020, 2086, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
46["Segment<br>[2092, 2144, 1]"]
|
46["Segment<br>[2092, 2144, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
47["Segment<br>[2150, 2182, 1]"]
|
47["Segment<br>[2150, 2182, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
48["Segment<br>[2188, 2253, 1]"]
|
48["Segment<br>[2188, 2253, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
49["Segment<br>[2259, 2266, 1]"]
|
49["Segment<br>[2259, 2266, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
101[Solid2d]
|
101[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path15 [Path]
|
subgraph path15 [Path]
|
||||||
15["Path<br>[2615, 2728, 1]"]
|
15["Path<br>[2615, 2728, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
50["Segment<br>[2734, 2789, 1]"]
|
50["Segment<br>[2734, 2789, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
51["Segment<br>[2795, 2830, 1]"]
|
51["Segment<br>[2795, 2830, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
52["Segment<br>[2836, 2891, 1]"]
|
52["Segment<br>[2836, 2891, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
53["Segment<br>[2897, 2933, 1]"]
|
53["Segment<br>[2897, 2933, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
54["Segment<br>[2939, 2994, 1]"]
|
54["Segment<br>[2939, 2994, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
55["Segment<br>[3000, 3036, 1]"]
|
55["Segment<br>[3000, 3036, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
56["Segment<br>[3042, 3097, 1]"]
|
56["Segment<br>[3042, 3097, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
57["Segment<br>[3103, 3159, 1]"]
|
57["Segment<br>[3103, 3159, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
end
|
end
|
||||||
subgraph path16 [Path]
|
subgraph path16 [Path]
|
||||||
16["Path<br>[3308, 3359, 1]"]
|
16["Path<br>[3308, 3359, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
58["Segment<br>[3308, 3359, 1]"]
|
58["Segment<br>[3308, 3359, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
113[Solid2d]
|
113[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path17 [Path]
|
subgraph path17 [Path]
|
||||||
17["Path<br>[3538, 3600, 1]"]
|
17["Path<br>[3538, 3600, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
59["Segment<br>[3606, 3674, 1]"]
|
59["Segment<br>[3606, 3674, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
60["Segment<br>[3680, 3780, 1]"]
|
60["Segment<br>[3680, 3780, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
61["Segment<br>[3786, 3903, 1]"]
|
61["Segment<br>[3786, 3903, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
62["Segment<br>[3909, 3994, 1]"]
|
62["Segment<br>[3909, 3994, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
63["Segment<br>[4000, 4007, 1]"]
|
63["Segment<br>[4000, 4007, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
107[Solid2d]
|
107[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path18 [Path]
|
subgraph path18 [Path]
|
||||||
18["Path<br>[4031, 4082, 1]"]
|
18["Path<br>[4031, 4082, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
64["Segment<br>[4031, 4082, 1]"]
|
64["Segment<br>[4031, 4082, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
99[Solid2d]
|
99[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path19 [Path]
|
subgraph path19 [Path]
|
||||||
19["Path<br>[4107, 4254, 1]"]
|
19["Path<br>[4107, 4254, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
65["Segment<br>[4107, 4254, 1]"]
|
65["Segment<br>[4107, 4254, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
108[Solid2d]
|
108[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path20 [Path]
|
subgraph path20 [Path]
|
||||||
20["Path<br>[4279, 4427, 1]"]
|
20["Path<br>[4279, 4427, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
66["Segment<br>[4279, 4427, 1]"]
|
66["Segment<br>[4279, 4427, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
106[Solid2d]
|
106[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path21 [Path]
|
subgraph path21 [Path]
|
||||||
21["Path<br>[4452, 4600, 1]"]
|
21["Path<br>[4452, 4600, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
67["Segment<br>[4452, 4600, 1]"]
|
67["Segment<br>[4452, 4600, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
103[Solid2d]
|
103[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path22 [Path]
|
subgraph path22 [Path]
|
||||||
22["Path<br>[4625, 4774, 1]"]
|
22["Path<br>[4625, 4774, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
68["Segment<br>[4625, 4774, 1]"]
|
68["Segment<br>[4625, 4774, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
98[Solid2d]
|
98[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path23 [Path]
|
subgraph path23 [Path]
|
||||||
23["Path<br>[4916, 4954, 1]"]
|
23["Path<br>[4916, 4954, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
69["Segment<br>[4916, 4954, 1]"]
|
69["Segment<br>[4916, 4954, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
118[Solid2d]
|
118[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path24 [Path]
|
subgraph path24 [Path]
|
||||||
24["Path<br>[5027, 5063, 1]"]
|
24["Path<br>[5027, 5063, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
70["Segment<br>[5027, 5063, 1]"]
|
70["Segment<br>[5027, 5063, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
111[Solid2d]
|
111[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path25 [Path]
|
subgraph path25 [Path]
|
||||||
25["Path<br>[295, 345, 3]"]
|
25["Path<br>[295, 345, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
71["Segment<br>[295, 345, 3]"]
|
71["Segment<br>[295, 345, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
102[Solid2d]
|
102[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path26 [Path]
|
subgraph path26 [Path]
|
||||||
26["Path<br>[520, 555, 3]"]
|
26["Path<br>[520, 555, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
72["Segment<br>[520, 555, 3]"]
|
72["Segment<br>[520, 555, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
112[Solid2d]
|
112[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path27 [Path]
|
subgraph path27 [Path]
|
||||||
27["Path<br>[234, 273, 4]"]
|
27["Path<br>[234, 273, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
73["Segment<br>[279, 309, 4]"]
|
73["Segment<br>[279, 309, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
74["Segment<br>[315, 354, 4]"]
|
74["Segment<br>[315, 354, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
75["Segment<br>[360, 384, 4]"]
|
75["Segment<br>[360, 384, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
76["Segment<br>[390, 414, 4]"]
|
76["Segment<br>[390, 414, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
77["Segment<br>[420, 461, 4]"]
|
77["Segment<br>[420, 461, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
78["Segment<br>[467, 505, 4]"]
|
78["Segment<br>[467, 505, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
79["Segment<br>[511, 534, 4]"]
|
79["Segment<br>[511, 534, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
80["Segment<br>[540, 557, 4]"]
|
80["Segment<br>[540, 557, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
81["Segment<br>[563, 584, 4]"]
|
81["Segment<br>[563, 584, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
82["Segment<br>[590, 677, 4]"]
|
82["Segment<br>[590, 677, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
83["Segment<br>[683, 720, 4]"]
|
83["Segment<br>[683, 720, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
84["Segment<br>[726, 763, 4]"]
|
84["Segment<br>[726, 763, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
85["Segment<br>[769, 776, 4]"]
|
85["Segment<br>[769, 776, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
109[Solid2d]
|
109[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path28 [Path]
|
subgraph path28 [Path]
|
||||||
28["Path<br>[1131, 1221, 4]"]
|
28["Path<br>[1131, 1221, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
87["Segment<br>[1229, 1298, 4]"]
|
87["Segment<br>[1229, 1298, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
89["Segment<br>[1306, 1606, 4]"]
|
89["Segment<br>[1306, 1606, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
91["Segment<br>[1614, 1916, 4]"]
|
91["Segment<br>[1614, 1916, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
93["Segment<br>[1924, 2143, 4]"]
|
93["Segment<br>[1924, 2143, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
94["Segment<br>[2151, 2158, 4]"]
|
94["Segment<br>[2151, 2158, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
97[Solid2d]
|
97[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path29 [Path]
|
subgraph path29 [Path]
|
||||||
29["Path<br>[1131, 1221, 4]"]
|
29["Path<br>[1131, 1221, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
96["Segment<br>[2151, 2158, 4]"]
|
96["Segment<br>[2151, 2158, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
116[Solid2d]
|
116[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path30 [Path]
|
subgraph path30 [Path]
|
||||||
30["Path<br>[1131, 1221, 4]"]
|
30["Path<br>[1131, 1221, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
86["Segment<br>[1229, 1298, 4]"]
|
86["Segment<br>[1229, 1298, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
88["Segment<br>[1306, 1606, 4]"]
|
88["Segment<br>[1306, 1606, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
90["Segment<br>[1614, 1916, 4]"]
|
90["Segment<br>[1614, 1916, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
92["Segment<br>[1924, 2143, 4]"]
|
92["Segment<br>[1924, 2143, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
95["Segment<br>[2151, 2158, 4]"]
|
95["Segment<br>[2151, 2158, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
117[Solid2d]
|
117[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[318, 335, 1]"]
|
1["Plane<br>[318, 335, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
2["Plane<br>[222, 249, 3]"]
|
2["Plane<br>[222, 249, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
3["Plane<br>[485, 513, 3]"]
|
3["Plane<br>[485, 513, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
4["Plane<br>[211, 228, 4]"]
|
4["Plane<br>[211, 228, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
5["Plane<br>[1084, 1122, 4]"]
|
5["Plane<br>[1084, 1122, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
6["Plane<br>[1084, 1122, 4]"]
|
6["Plane<br>[1084, 1122, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
7["Plane<br>[1084, 1122, 4]"]
|
7["Plane<br>[1084, 1122, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
119["Sweep Extrusion<br>[1553, 1572, 1]"]
|
119["Sweep Extrusion<br>[1553, 1572, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
120["Sweep Extrusion<br>[2406, 2426, 1]"]
|
120["Sweep Extrusion<br>[2406, 2426, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
121["Sweep Extrusion<br>[2406, 2426, 1]"]
|
121["Sweep Extrusion<br>[2406, 2426, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
122["Sweep Extrusion<br>[2406, 2426, 1]"]
|
122["Sweep Extrusion<br>[2406, 2426, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
123["Sweep Extrusion<br>[2406, 2426, 1]"]
|
123["Sweep Extrusion<br>[2406, 2426, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
124["Sweep Extrusion<br>[3165, 3200, 1]"]
|
124["Sweep Extrusion<br>[3165, 3200, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
125["Sweep Extrusion<br>[3365, 3403, 1]"]
|
125["Sweep Extrusion<br>[3365, 3403, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
126["Sweep Extrusion<br>[4781, 4800, 1]"]
|
126["Sweep Extrusion<br>[4781, 4800, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
127["Sweep Extrusion<br>[4960, 4980, 1]"]
|
127["Sweep Extrusion<br>[4960, 4980, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
128["Sweep Extrusion<br>[5069, 5090, 1]"]
|
128["Sweep Extrusion<br>[5069, 5090, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
129["Sweep Extrusion<br>[351, 371, 3]"]
|
129["Sweep Extrusion<br>[351, 371, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
130["Sweep Extrusion<br>[561, 582, 3]"]
|
130["Sweep Extrusion<br>[561, 582, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
131["Sweep Revolve<br>[782, 864, 4]"]
|
131["Sweep Revolve<br>[782, 864, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
132["Sweep Loft<br>[2472, 2491, 4]"]
|
132["Sweep Loft<br>[2472, 2491, 4]"]
|
||||||
|
%% 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"]
|
||||||
@ -313,15 +480,25 @@ flowchart LR
|
|||||||
265["SweepEdge Adjacent"]
|
265["SweepEdge Adjacent"]
|
||||||
266["SweepEdge Adjacent"]
|
266["SweepEdge Adjacent"]
|
||||||
267["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
267["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
268["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
268["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
269["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
269["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
270["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
270["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
271["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
271["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
272["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
272["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
273["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
273["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
274["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
274["EdgeCut Fillet<br>[5131, 5642, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
275["EdgeCut Fillet<br>[412, 470, 3]"]
|
275["EdgeCut Fillet<br>[412, 470, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
276["EdgeCut Fillet<br>[412, 470, 3]"]
|
276["EdgeCut Fillet<br>[412, 470, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
1 --- 8
|
1 --- 8
|
||||||
1 --- 9
|
1 --- 9
|
||||||
1 --- 10
|
1 --- 10
|
||||||
|
@ -2,70 +2,115 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path8 [Path]
|
subgraph path8 [Path]
|
||||||
8["Path<br>[682, 744, 0]"]
|
8["Path<br>[682, 744, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
15["Segment<br>[682, 744, 0]"]
|
15["Segment<br>[682, 744, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
32[Solid2d]
|
32[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path9 [Path]
|
subgraph path9 [Path]
|
||||||
9["Path<br>[768, 814, 0]"]
|
9["Path<br>[768, 814, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
16["Segment<br>[768, 814, 0]"]
|
16["Segment<br>[768, 814, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
31[Solid2d]
|
31[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path10 [Path]
|
subgraph path10 [Path]
|
||||||
10["Path<br>[998, 1054, 0]"]
|
10["Path<br>[998, 1054, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
17["Segment<br>[1060, 1119, 0]"]
|
17["Segment<br>[1060, 1119, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
18["Segment<br>[1125, 1132, 0]"]
|
18["Segment<br>[1125, 1132, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
29[Solid2d]
|
29[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path11 [Path]
|
subgraph path11 [Path]
|
||||||
11["Path<br>[1502, 1624, 0]"]
|
11["Path<br>[1502, 1624, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
19["Segment<br>[1630, 1690, 0]"]
|
19["Segment<br>[1630, 1690, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
20["Segment<br>[1696, 1727, 0]"]
|
20["Segment<br>[1696, 1727, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
21["Segment<br>[1733, 1761, 0]"]
|
21["Segment<br>[1733, 1761, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
22["Segment<br>[1767, 1774, 0]"]
|
22["Segment<br>[1767, 1774, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
27[Solid2d]
|
27[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path12 [Path]
|
subgraph path12 [Path]
|
||||||
12["Path<br>[2108, 2250, 0]"]
|
12["Path<br>[2108, 2250, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
23["Segment<br>[2108, 2250, 0]"]
|
23["Segment<br>[2108, 2250, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
28[Solid2d]
|
28[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path13 [Path]
|
subgraph path13 [Path]
|
||||||
13["Path<br>[2644, 2697, 0]"]
|
13["Path<br>[2644, 2697, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
24["Segment<br>[2644, 2697, 0]"]
|
24["Segment<br>[2644, 2697, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
30[Solid2d]
|
30[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path14 [Path]
|
subgraph path14 [Path]
|
||||||
14["Path<br>[2721, 2795, 0]"]
|
14["Path<br>[2721, 2795, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
25["Segment<br>[2721, 2795, 0]"]
|
25["Segment<br>[2721, 2795, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
26[Solid2d]
|
26[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[628, 675, 0]"]
|
1["Plane<br>[628, 675, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
2["Plane<br>[975, 992, 0]"]
|
2["Plane<br>[975, 992, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
3["Plane<br>[1479, 1496, 0]"]
|
3["Plane<br>[1479, 1496, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
4["Plane<br>[2085, 2102, 0]"]
|
4["Plane<br>[2085, 2102, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
5["Plane<br>[2590, 2637, 0]"]
|
5["Plane<br>[2590, 2637, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
6["StartSketchOnPlane<br>[614, 676, 0]"]
|
6["StartSketchOnPlane<br>[614, 676, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
7["StartSketchOnPlane<br>[2576, 2638, 0]"]
|
7["StartSketchOnPlane<br>[2576, 2638, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
33["Sweep Extrusion<br>[866, 918, 0]"]
|
33["Sweep Extrusion<br>[866, 918, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
34["Sweep Revolve<br>[1214, 1244, 0]"]
|
34["Sweep Revolve<br>[1214, 1244, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
35["Sweep Revolve<br>[1816, 1846, 0]"]
|
35["Sweep Revolve<br>[1816, 1846, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
36["Sweep Revolve<br>[2293, 2344, 0]"]
|
36["Sweep Revolve<br>[2293, 2344, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
37["Sweep Extrusion<br>[2812, 2865, 0]"]
|
37["Sweep Extrusion<br>[2812, 2865, 0]"]
|
||||||
|
%% [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"]
|
||||||
|
@ -2,456 +2,864 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path24 [Path]
|
subgraph path24 [Path]
|
||||||
24["Path<br>[380, 413, 1]"]
|
24["Path<br>[380, 413, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
42["Segment<br>[421, 447, 1]"]
|
42["Segment<br>[421, 447, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
50["Segment<br>[455, 517, 1]"]
|
50["Segment<br>[455, 517, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
55["Segment<br>[525, 587, 1]"]
|
55["Segment<br>[525, 587, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
63["Segment<br>[595, 658, 1]"]
|
63["Segment<br>[595, 658, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
64["Segment<br>[666, 691, 1]"]
|
64["Segment<br>[666, 691, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
70["Segment<br>[699, 719, 1]"]
|
70["Segment<br>[699, 719, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
77["Segment<br>[727, 751, 1]"]
|
77["Segment<br>[727, 751, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
83["Segment<br>[759, 821, 1]"]
|
83["Segment<br>[759, 821, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
89["Segment<br>[829, 854, 1]"]
|
89["Segment<br>[829, 854, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
96["Segment<br>[862, 882, 1]"]
|
96["Segment<br>[862, 882, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
102["Segment<br>[890, 914, 1]"]
|
102["Segment<br>[890, 914, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
106["Segment<br>[922, 983, 1]"]
|
106["Segment<br>[922, 983, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
112["Segment<br>[991, 1052, 1]"]
|
112["Segment<br>[991, 1052, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
118["Segment<br>[1060, 1085, 1]"]
|
118["Segment<br>[1060, 1085, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
125["Segment<br>[1093, 1117, 1]"]
|
125["Segment<br>[1093, 1117, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
132["Segment<br>[1125, 1187, 1]"]
|
132["Segment<br>[1125, 1187, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
139["Segment<br>[1195, 1220, 1]"]
|
139["Segment<br>[1195, 1220, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
146["Segment<br>[1228, 1255, 1]"]
|
146["Segment<br>[1228, 1255, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
152["Segment<br>[1263, 1324, 1]"]
|
152["Segment<br>[1263, 1324, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
157["Segment<br>[1332, 1376, 1]"]
|
157["Segment<br>[1332, 1376, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
162["Segment<br>[1384, 1391, 1]"]
|
162["Segment<br>[1384, 1391, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
213[Solid2d]
|
213[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path25 [Path]
|
subgraph path25 [Path]
|
||||||
25["Path<br>[380, 413, 1]"]
|
25["Path<br>[380, 413, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
40["Segment<br>[421, 447, 1]"]
|
40["Segment<br>[421, 447, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
51["Segment<br>[455, 517, 1]"]
|
51["Segment<br>[455, 517, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
57["Segment<br>[525, 587, 1]"]
|
57["Segment<br>[525, 587, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
58["Segment<br>[595, 658, 1]"]
|
58["Segment<br>[595, 658, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
69["Segment<br>[666, 691, 1]"]
|
69["Segment<br>[666, 691, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
75["Segment<br>[699, 719, 1]"]
|
75["Segment<br>[699, 719, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
80["Segment<br>[727, 751, 1]"]
|
80["Segment<br>[727, 751, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
82["Segment<br>[759, 821, 1]"]
|
82["Segment<br>[759, 821, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
90["Segment<br>[829, 854, 1]"]
|
90["Segment<br>[829, 854, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
97["Segment<br>[862, 882, 1]"]
|
97["Segment<br>[862, 882, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
103["Segment<br>[890, 914, 1]"]
|
103["Segment<br>[890, 914, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
108["Segment<br>[922, 983, 1]"]
|
108["Segment<br>[922, 983, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
114["Segment<br>[991, 1052, 1]"]
|
114["Segment<br>[991, 1052, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
121["Segment<br>[1060, 1085, 1]"]
|
121["Segment<br>[1060, 1085, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
129["Segment<br>[1093, 1117, 1]"]
|
129["Segment<br>[1093, 1117, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
133["Segment<br>[1125, 1187, 1]"]
|
133["Segment<br>[1125, 1187, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
140["Segment<br>[1195, 1220, 1]"]
|
140["Segment<br>[1195, 1220, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
143["Segment<br>[1228, 1255, 1]"]
|
143["Segment<br>[1228, 1255, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
150["Segment<br>[1263, 1324, 1]"]
|
150["Segment<br>[1263, 1324, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
154["Segment<br>[1332, 1376, 1]"]
|
154["Segment<br>[1332, 1376, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
163["Segment<br>[1384, 1391, 1]"]
|
163["Segment<br>[1384, 1391, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
214[Solid2d]
|
214[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path26 [Path]
|
subgraph path26 [Path]
|
||||||
26["Path<br>[380, 413, 1]"]
|
26["Path<br>[380, 413, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
44["Segment<br>[421, 447, 1]"]
|
44["Segment<br>[421, 447, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
48["Segment<br>[455, 517, 1]"]
|
48["Segment<br>[455, 517, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
53["Segment<br>[525, 587, 1]"]
|
53["Segment<br>[525, 587, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
61["Segment<br>[595, 658, 1]"]
|
61["Segment<br>[595, 658, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
66["Segment<br>[666, 691, 1]"]
|
66["Segment<br>[666, 691, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
73["Segment<br>[699, 719, 1]"]
|
73["Segment<br>[699, 719, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
81["Segment<br>[727, 751, 1]"]
|
81["Segment<br>[727, 751, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
87["Segment<br>[759, 821, 1]"]
|
87["Segment<br>[759, 821, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
92["Segment<br>[829, 854, 1]"]
|
92["Segment<br>[829, 854, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
95["Segment<br>[862, 882, 1]"]
|
95["Segment<br>[862, 882, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
101["Segment<br>[890, 914, 1]"]
|
101["Segment<br>[890, 914, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
111["Segment<br>[922, 983, 1]"]
|
111["Segment<br>[922, 983, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
117["Segment<br>[991, 1052, 1]"]
|
117["Segment<br>[991, 1052, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
119["Segment<br>[1060, 1085, 1]"]
|
119["Segment<br>[1060, 1085, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
124["Segment<br>[1093, 1117, 1]"]
|
124["Segment<br>[1093, 1117, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
135["Segment<br>[1125, 1187, 1]"]
|
135["Segment<br>[1125, 1187, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
137["Segment<br>[1195, 1220, 1]"]
|
137["Segment<br>[1195, 1220, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
147["Segment<br>[1228, 1255, 1]"]
|
147["Segment<br>[1228, 1255, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
148["Segment<br>[1263, 1324, 1]"]
|
148["Segment<br>[1263, 1324, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
159["Segment<br>[1332, 1376, 1]"]
|
159["Segment<br>[1332, 1376, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
164["Segment<br>[1384, 1391, 1]"]
|
164["Segment<br>[1384, 1391, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
218[Solid2d]
|
218[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path27 [Path]
|
subgraph path27 [Path]
|
||||||
27["Path<br>[380, 413, 1]"]
|
27["Path<br>[380, 413, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
43["Segment<br>[421, 447, 1]"]
|
43["Segment<br>[421, 447, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
47["Segment<br>[455, 517, 1]"]
|
47["Segment<br>[455, 517, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
56["Segment<br>[525, 587, 1]"]
|
56["Segment<br>[525, 587, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
59["Segment<br>[595, 658, 1]"]
|
59["Segment<br>[595, 658, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
65["Segment<br>[666, 691, 1]"]
|
65["Segment<br>[666, 691, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
71["Segment<br>[699, 719, 1]"]
|
71["Segment<br>[699, 719, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
76["Segment<br>[727, 751, 1]"]
|
76["Segment<br>[727, 751, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
86["Segment<br>[759, 821, 1]"]
|
86["Segment<br>[759, 821, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
91["Segment<br>[829, 854, 1]"]
|
91["Segment<br>[829, 854, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
99["Segment<br>[862, 882, 1]"]
|
99["Segment<br>[862, 882, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
100["Segment<br>[890, 914, 1]"]
|
100["Segment<br>[890, 914, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
110["Segment<br>[922, 983, 1]"]
|
110["Segment<br>[922, 983, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
116["Segment<br>[991, 1052, 1]"]
|
116["Segment<br>[991, 1052, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
122["Segment<br>[1060, 1085, 1]"]
|
122["Segment<br>[1060, 1085, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
128["Segment<br>[1093, 1117, 1]"]
|
128["Segment<br>[1093, 1117, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
134["Segment<br>[1125, 1187, 1]"]
|
134["Segment<br>[1125, 1187, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
136["Segment<br>[1195, 1220, 1]"]
|
136["Segment<br>[1195, 1220, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
145["Segment<br>[1228, 1255, 1]"]
|
145["Segment<br>[1228, 1255, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
151["Segment<br>[1263, 1324, 1]"]
|
151["Segment<br>[1263, 1324, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
156["Segment<br>[1332, 1376, 1]"]
|
156["Segment<br>[1332, 1376, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
161["Segment<br>[1384, 1391, 1]"]
|
161["Segment<br>[1384, 1391, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
220[Solid2d]
|
220[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path28 [Path]
|
subgraph path28 [Path]
|
||||||
28["Path<br>[380, 413, 1]"]
|
28["Path<br>[380, 413, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
41["Segment<br>[421, 447, 1]"]
|
41["Segment<br>[421, 447, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
46["Segment<br>[455, 517, 1]"]
|
46["Segment<br>[455, 517, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
54["Segment<br>[525, 587, 1]"]
|
54["Segment<br>[525, 587, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
62["Segment<br>[595, 658, 1]"]
|
62["Segment<br>[595, 658, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
67["Segment<br>[666, 691, 1]"]
|
67["Segment<br>[666, 691, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
74["Segment<br>[699, 719, 1]"]
|
74["Segment<br>[699, 719, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
78["Segment<br>[727, 751, 1]"]
|
78["Segment<br>[727, 751, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
85["Segment<br>[759, 821, 1]"]
|
85["Segment<br>[759, 821, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
93["Segment<br>[829, 854, 1]"]
|
93["Segment<br>[829, 854, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
94["Segment<br>[862, 882, 1]"]
|
94["Segment<br>[862, 882, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
104["Segment<br>[890, 914, 1]"]
|
104["Segment<br>[890, 914, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
107["Segment<br>[922, 983, 1]"]
|
107["Segment<br>[922, 983, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
115["Segment<br>[991, 1052, 1]"]
|
115["Segment<br>[991, 1052, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
123["Segment<br>[1060, 1085, 1]"]
|
123["Segment<br>[1060, 1085, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
126["Segment<br>[1093, 1117, 1]"]
|
126["Segment<br>[1093, 1117, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
130["Segment<br>[1125, 1187, 1]"]
|
130["Segment<br>[1125, 1187, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
138["Segment<br>[1195, 1220, 1]"]
|
138["Segment<br>[1195, 1220, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
144["Segment<br>[1228, 1255, 1]"]
|
144["Segment<br>[1228, 1255, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
149["Segment<br>[1263, 1324, 1]"]
|
149["Segment<br>[1263, 1324, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
158["Segment<br>[1332, 1376, 1]"]
|
158["Segment<br>[1332, 1376, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
165["Segment<br>[1384, 1391, 1]"]
|
165["Segment<br>[1384, 1391, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
221[Solid2d]
|
221[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path29 [Path]
|
subgraph path29 [Path]
|
||||||
29["Path<br>[380, 413, 1]"]
|
29["Path<br>[380, 413, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
45["Segment<br>[421, 447, 1]"]
|
45["Segment<br>[421, 447, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
49["Segment<br>[455, 517, 1]"]
|
49["Segment<br>[455, 517, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
52["Segment<br>[525, 587, 1]"]
|
52["Segment<br>[525, 587, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
60["Segment<br>[595, 658, 1]"]
|
60["Segment<br>[595, 658, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
68["Segment<br>[666, 691, 1]"]
|
68["Segment<br>[666, 691, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
72["Segment<br>[699, 719, 1]"]
|
72["Segment<br>[699, 719, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
79["Segment<br>[727, 751, 1]"]
|
79["Segment<br>[727, 751, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
84["Segment<br>[759, 821, 1]"]
|
84["Segment<br>[759, 821, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
88["Segment<br>[829, 854, 1]"]
|
88["Segment<br>[829, 854, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
98["Segment<br>[862, 882, 1]"]
|
98["Segment<br>[862, 882, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
105["Segment<br>[890, 914, 1]"]
|
105["Segment<br>[890, 914, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
109["Segment<br>[922, 983, 1]"]
|
109["Segment<br>[922, 983, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
113["Segment<br>[991, 1052, 1]"]
|
113["Segment<br>[991, 1052, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
120["Segment<br>[1060, 1085, 1]"]
|
120["Segment<br>[1060, 1085, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
127["Segment<br>[1093, 1117, 1]"]
|
127["Segment<br>[1093, 1117, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
131["Segment<br>[1125, 1187, 1]"]
|
131["Segment<br>[1125, 1187, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
141["Segment<br>[1195, 1220, 1]"]
|
141["Segment<br>[1195, 1220, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
142["Segment<br>[1228, 1255, 1]"]
|
142["Segment<br>[1228, 1255, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
153["Segment<br>[1263, 1324, 1]"]
|
153["Segment<br>[1263, 1324, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
155["Segment<br>[1332, 1376, 1]"]
|
155["Segment<br>[1332, 1376, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
160["Segment<br>[1384, 1391, 1]"]
|
160["Segment<br>[1384, 1391, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
223[Solid2d]
|
223[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path30 [Path]
|
subgraph path30 [Path]
|
||||||
30["Path<br>[1783, 1807, 1]"]
|
30["Path<br>[1783, 1807, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
end
|
end
|
||||||
subgraph path31 [Path]
|
subgraph path31 [Path]
|
||||||
31["Path<br>[1783, 1807, 1]"]
|
31["Path<br>[1783, 1807, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
end
|
end
|
||||||
subgraph path32 [Path]
|
subgraph path32 [Path]
|
||||||
32["Path<br>[1815, 1941, 1]"]
|
32["Path<br>[1815, 1941, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
167["Segment<br>[1815, 1941, 1]"]
|
167["Segment<br>[1815, 1941, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
170["Segment<br>[1815, 1941, 1]"]
|
170["Segment<br>[1815, 1941, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
172["Segment<br>[1815, 1941, 1]"]
|
172["Segment<br>[1815, 1941, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
173["Segment<br>[1815, 1941, 1]"]
|
173["Segment<br>[1815, 1941, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
176["Segment<br>[1815, 1941, 1]"]
|
176["Segment<br>[1815, 1941, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
177["Segment<br>[1815, 1941, 1]"]
|
177["Segment<br>[1815, 1941, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
178["Segment<br>[1815, 1941, 1]"]
|
178["Segment<br>[1815, 1941, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
212[Solid2d]
|
212[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path33 [Path]
|
subgraph path33 [Path]
|
||||||
33["Path<br>[1815, 1941, 1]"]
|
33["Path<br>[1815, 1941, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
166["Segment<br>[1815, 1941, 1]"]
|
166["Segment<br>[1815, 1941, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
168["Segment<br>[1815, 1941, 1]"]
|
168["Segment<br>[1815, 1941, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
169["Segment<br>[1815, 1941, 1]"]
|
169["Segment<br>[1815, 1941, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
171["Segment<br>[1815, 1941, 1]"]
|
171["Segment<br>[1815, 1941, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
174["Segment<br>[1815, 1941, 1]"]
|
174["Segment<br>[1815, 1941, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
175["Segment<br>[1815, 1941, 1]"]
|
175["Segment<br>[1815, 1941, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
179["Segment<br>[1815, 1941, 1]"]
|
179["Segment<br>[1815, 1941, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
216[Solid2d]
|
216[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path34 [Path]
|
subgraph path34 [Path]
|
||||||
34["Path<br>[2235, 2262, 1]"]
|
34["Path<br>[2217, 2244, 1]"]
|
||||||
180["Segment<br>[2270, 2292, 1]"]
|
%% Missing NodePath
|
||||||
181["Segment<br>[2300, 2322, 1]"]
|
180["Segment<br>[2252, 2274, 1]"]
|
||||||
182["Segment<br>[2330, 2352, 1]"]
|
%% Missing NodePath
|
||||||
183["Segment<br>[2360, 2383, 1]"]
|
181["Segment<br>[2282, 2304, 1]"]
|
||||||
184["Segment<br>[2391, 2414, 1]"]
|
%% Missing NodePath
|
||||||
185["Segment<br>[2422, 2457, 1]"]
|
182["Segment<br>[2312, 2334, 1]"]
|
||||||
186["Segment<br>[2465, 2472, 1]"]
|
%% Missing NodePath
|
||||||
|
183["Segment<br>[2342, 2365, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
184["Segment<br>[2373, 2396, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
185["Segment<br>[2404, 2439, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
186["Segment<br>[2447, 2454, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
215[Solid2d]
|
215[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path35 [Path]
|
subgraph path35 [Path]
|
||||||
35["Path<br>[2746, 2775, 1]"]
|
35["Path<br>[2719, 2748, 1]"]
|
||||||
187["Segment<br>[2783, 2818, 1]"]
|
%% Missing NodePath
|
||||||
188["Segment<br>[2826, 2851, 1]"]
|
187["Segment<br>[2756, 2791, 1]"]
|
||||||
189["Segment<br>[2859, 2895, 1]"]
|
%% Missing NodePath
|
||||||
190["Segment<br>[2903, 2927, 1]"]
|
188["Segment<br>[2799, 2824, 1]"]
|
||||||
191["Segment<br>[2935, 2969, 1]"]
|
%% Missing NodePath
|
||||||
192["Segment<br>[2977, 3012, 1]"]
|
189["Segment<br>[2832, 2868, 1]"]
|
||||||
193["Segment<br>[3020, 3027, 1]"]
|
%% Missing NodePath
|
||||||
|
190["Segment<br>[2876, 2900, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
191["Segment<br>[2908, 2942, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
192["Segment<br>[2950, 2985, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
193["Segment<br>[2993, 3000, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
219[Solid2d]
|
219[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path36 [Path]
|
subgraph path36 [Path]
|
||||||
36["Path<br>[3304, 3331, 1]"]
|
36["Path<br>[3268, 3295, 1]"]
|
||||||
195["Segment<br>[3339, 3358, 1]"]
|
%% Missing NodePath
|
||||||
197["Segment<br>[3366, 3415, 1]"]
|
195["Segment<br>[3303, 3322, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
197["Segment<br>[3330, 3379, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
end
|
end
|
||||||
subgraph path37 [Path]
|
subgraph path37 [Path]
|
||||||
37["Path<br>[3304, 3331, 1]"]
|
37["Path<br>[3268, 3295, 1]"]
|
||||||
194["Segment<br>[3339, 3358, 1]"]
|
%% Missing NodePath
|
||||||
196["Segment<br>[3366, 3415, 1]"]
|
194["Segment<br>[3303, 3322, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
196["Segment<br>[3330, 3379, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
end
|
end
|
||||||
subgraph path38 [Path]
|
subgraph path38 [Path]
|
||||||
38["Path<br>[3516, 3549, 1]"]
|
38["Path<br>[3480, 3513, 1]"]
|
||||||
198["Segment<br>[3557, 3576, 1]"]
|
%% Missing NodePath
|
||||||
201["Segment<br>[3584, 3606, 1]"]
|
198["Segment<br>[3521, 3540, 1]"]
|
||||||
202["Segment<br>[3614, 3637, 1]"]
|
%% Missing NodePath
|
||||||
204["Segment<br>[3645, 3665, 1]"]
|
201["Segment<br>[3548, 3570, 1]"]
|
||||||
206["Segment<br>[3673, 3697, 1]"]
|
%% Missing NodePath
|
||||||
208["Segment<br>[3705, 3728, 1]"]
|
202["Segment<br>[3578, 3601, 1]"]
|
||||||
211["Segment<br>[3736, 3743, 1]"]
|
%% Missing NodePath
|
||||||
|
204["Segment<br>[3609, 3629, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
206["Segment<br>[3637, 3661, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
208["Segment<br>[3669, 3692, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
211["Segment<br>[3700, 3707, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
217[Solid2d]
|
217[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path39 [Path]
|
subgraph path39 [Path]
|
||||||
39["Path<br>[3516, 3549, 1]"]
|
39["Path<br>[3480, 3513, 1]"]
|
||||||
199["Segment<br>[3557, 3576, 1]"]
|
%% Missing NodePath
|
||||||
200["Segment<br>[3584, 3606, 1]"]
|
199["Segment<br>[3521, 3540, 1]"]
|
||||||
203["Segment<br>[3614, 3637, 1]"]
|
%% Missing NodePath
|
||||||
205["Segment<br>[3645, 3665, 1]"]
|
200["Segment<br>[3548, 3570, 1]"]
|
||||||
207["Segment<br>[3673, 3697, 1]"]
|
%% Missing NodePath
|
||||||
209["Segment<br>[3705, 3728, 1]"]
|
203["Segment<br>[3578, 3601, 1]"]
|
||||||
210["Segment<br>[3736, 3743, 1]"]
|
%% Missing NodePath
|
||||||
|
205["Segment<br>[3609, 3629, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
207["Segment<br>[3637, 3661, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
209["Segment<br>[3669, 3692, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
210["Segment<br>[3700, 3707, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
222[Solid2d]
|
222[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[841, 882, 0]"]
|
1["Plane<br>[841, 882, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, ExpressionStatementExpr, CallKwUnlabeledArg]
|
||||||
2["Plane<br>[892, 934, 0]"]
|
2["Plane<br>[892, 934, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, ExpressionStatementExpr, CallKwUnlabeledArg]
|
||||||
3["Plane<br>[993, 1035, 0]"]
|
3["Plane<br>[993, 1035, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, ExpressionStatementExpr, CallKwUnlabeledArg]
|
||||||
4["Plane<br>[1095, 1162, 0]"]
|
4["Plane<br>[1095, 1162, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, ExpressionStatementExpr, CallKwUnlabeledArg]
|
||||||
5["Plane<br>[1241, 1308, 0]"]
|
5["Plane<br>[1241, 1308, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, ExpressionStatementExpr, CallKwUnlabeledArg]
|
||||||
6["Plane<br>[352, 372, 1]"]
|
6["Plane<br>[352, 372, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
7["Plane<br>[352, 372, 1]"]
|
7["Plane<br>[352, 372, 1]"]
|
||||||
8["Plane<br>[3823, 3858, 1]"]
|
%% Missing NodePath
|
||||||
9["Plane<br>[3823, 3858, 1]"]
|
8["Plane<br>[3787, 3822, 1]"]
|
||||||
10["Plane<br>[3887, 3916, 1]"]
|
%% Missing NodePath
|
||||||
11["Plane<br>[3887, 3916, 1]"]
|
9["Plane<br>[3787, 3822, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
10["Plane<br>[3851, 3880, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
11["Plane<br>[3851, 3880, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
12["StartSketchOnPlane<br>[352, 372, 1]"]
|
12["StartSketchOnPlane<br>[352, 372, 1]"]
|
||||||
13["StartSketchOnPlane<br>[3276, 3296, 1]"]
|
%% Missing NodePath
|
||||||
14["StartSketchOnPlane<br>[3488, 3508, 1]"]
|
13["StartSketchOnPlane<br>[3240, 3260, 1]"]
|
||||||
15["StartSketchOnPlane<br>[2718, 2738, 1]"]
|
%% Missing NodePath
|
||||||
16["StartSketchOnPlane<br>[3488, 3508, 1]"]
|
14["StartSketchOnPlane<br>[3452, 3472, 1]"]
|
||||||
17["StartSketchOnPlane<br>[2207, 2227, 1]"]
|
%% Missing NodePath
|
||||||
|
15["StartSketchOnPlane<br>[2691, 2711, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
16["StartSketchOnPlane<br>[3452, 3472, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
17["StartSketchOnPlane<br>[2189, 2209, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
18["StartSketchOnPlane<br>[352, 372, 1]"]
|
18["StartSketchOnPlane<br>[352, 372, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
19["StartSketchOnPlane<br>[1755, 1775, 1]"]
|
19["StartSketchOnPlane<br>[1755, 1775, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
20["StartSketchOnPlane<br>[1755, 1775, 1]"]
|
20["StartSketchOnPlane<br>[1755, 1775, 1]"]
|
||||||
21["StartSketchOnPlane<br>[3276, 3296, 1]"]
|
%% Missing NodePath
|
||||||
|
21["StartSketchOnPlane<br>[3240, 3260, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
22["StartSketchOnPlane<br>[352, 372, 1]"]
|
22["StartSketchOnPlane<br>[352, 372, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
23["StartSketchOnPlane<br>[352, 372, 1]"]
|
23["StartSketchOnPlane<br>[352, 372, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
224["Sweep Extrusion<br>[1480, 1518, 1]"]
|
224["Sweep Extrusion<br>[1480, 1518, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
225["Sweep Extrusion<br>[1480, 1518, 1]"]
|
225["Sweep Extrusion<br>[1480, 1518, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
226["Sweep Extrusion<br>[1480, 1518, 1]"]
|
226["Sweep Extrusion<br>[1480, 1518, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
227["Sweep Extrusion<br>[1556, 1595, 1]"]
|
227["Sweep Extrusion<br>[1556, 1595, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
228["Sweep Extrusion<br>[1556, 1595, 1]"]
|
228["Sweep Extrusion<br>[1556, 1595, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
229["Sweep Extrusion<br>[1556, 1595, 1]"]
|
229["Sweep Extrusion<br>[1556, 1595, 1]"]
|
||||||
230["Sweep Extrusion<br>[2052, 2076, 1]"]
|
%% Missing NodePath
|
||||||
231["Sweep Extrusion<br>[2126, 2150, 1]"]
|
230["Sweep Extrusion<br>[2052, 2067, 1]"]
|
||||||
232["Sweep Extrusion<br>[2636, 2660, 1]"]
|
%% Missing NodePath
|
||||||
233["Sweep Extrusion<br>[2636, 2660, 1]"]
|
231["Sweep Extrusion<br>[2117, 2132, 1]"]
|
||||||
234["Sweep Extrusion<br>[2636, 2660, 1]"]
|
%% Missing NodePath
|
||||||
235["Sweep Extrusion<br>[3198, 3222, 1]"]
|
232["Sweep Extrusion<br>[2618, 2633, 1]"]
|
||||||
236["Sweep Extrusion<br>[3198, 3222, 1]"]
|
%% Missing NodePath
|
||||||
237["Sweep Sweep<br>[3938, 3965, 1]"]
|
233["Sweep Extrusion<br>[2618, 2633, 1]"]
|
||||||
238["Sweep Sweep<br>[3938, 3965, 1]"]
|
%% Missing NodePath
|
||||||
|
234["Sweep Extrusion<br>[2618, 2633, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
235["Sweep Extrusion<br>[3171, 3186, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
236["Sweep Extrusion<br>[3171, 3186, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
237["Sweep Sweep<br>[3902, 3929, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
|
238["Sweep Sweep<br>[3902, 3929, 1]"]
|
||||||
|
%% 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"]
|
||||||
|
@ -2,126 +2,221 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path3 [Path]
|
subgraph path3 [Path]
|
||||||
3["Path<br>[541, 569, 0]"]
|
3["Path<br>[541, 569, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
12["Segment<br>[575, 626, 0]"]
|
12["Segment<br>[575, 626, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
13["Segment<br>[632, 680, 0]"]
|
13["Segment<br>[632, 680, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
14["Segment<br>[686, 737, 0]"]
|
14["Segment<br>[686, 737, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
15["Segment<br>[743, 791, 0]"]
|
15["Segment<br>[743, 791, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
16["Segment<br>[797, 848, 0]"]
|
16["Segment<br>[797, 848, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
17["Segment<br>[854, 902, 0]"]
|
17["Segment<br>[854, 902, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
18["Segment<br>[908, 959, 0]"]
|
18["Segment<br>[908, 959, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
19["Segment<br>[965, 1007, 0]"]
|
19["Segment<br>[965, 1007, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
20["Segment<br>[1013, 1071, 0]"]
|
20["Segment<br>[1013, 1071, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }]
|
||||||
21["Segment<br>[1077, 1132, 0]"]
|
21["Segment<br>[1077, 1132, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 11 }]
|
||||||
22["Segment<br>[1138, 1196, 0]"]
|
22["Segment<br>[1138, 1196, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 12 }]
|
||||||
23["Segment<br>[1202, 1257, 0]"]
|
23["Segment<br>[1202, 1257, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 13 }]
|
||||||
24["Segment<br>[1263, 1306, 0]"]
|
24["Segment<br>[1263, 1306, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 14 }]
|
||||||
25["Segment<br>[1312, 1368, 0]"]
|
25["Segment<br>[1312, 1368, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 15 }]
|
||||||
26["Segment<br>[1374, 1429, 0]"]
|
26["Segment<br>[1374, 1429, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 16 }]
|
||||||
27["Segment<br>[1435, 1491, 0]"]
|
27["Segment<br>[1435, 1491, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 17 }]
|
||||||
28["Segment<br>[1497, 1504, 0]"]
|
28["Segment<br>[1497, 1504, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 18 }]
|
||||||
42[Solid2d]
|
42[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path4 [Path]
|
subgraph path4 [Path]
|
||||||
4["Path<br>[1668, 1730, 0]"]
|
4["Path<br>[1668, 1730, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
29["Segment<br>[1668, 1730, 0]"]
|
29["Segment<br>[1668, 1730, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
41[Solid2d]
|
41[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path5 [Path]
|
subgraph path5 [Path]
|
||||||
5["Path<br>[1768, 1829, 0]"]
|
5["Path<br>[1768, 1829, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
30["Segment<br>[1768, 1829, 0]"]
|
30["Segment<br>[1768, 1829, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
44[Solid2d]
|
44[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path6 [Path]
|
subgraph path6 [Path]
|
||||||
6["Path<br>[1867, 1929, 0]"]
|
6["Path<br>[1867, 1929, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
31["Segment<br>[1867, 1929, 0]"]
|
31["Segment<br>[1867, 1929, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
45[Solid2d]
|
45[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path7 [Path]
|
subgraph path7 [Path]
|
||||||
7["Path<br>[1967, 2026, 0]"]
|
7["Path<br>[1967, 2026, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
32["Segment<br>[1967, 2026, 0]"]
|
32["Segment<br>[1967, 2026, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
39[Solid2d]
|
39[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path8 [Path]
|
subgraph path8 [Path]
|
||||||
8["Path<br>[2064, 2124, 0]"]
|
8["Path<br>[2064, 2124, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
33["Segment<br>[2064, 2124, 0]"]
|
33["Segment<br>[2064, 2124, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
37[Solid2d]
|
37[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path9 [Path]
|
subgraph path9 [Path]
|
||||||
9["Path<br>[2162, 2222, 0]"]
|
9["Path<br>[2162, 2222, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
34["Segment<br>[2162, 2222, 0]"]
|
34["Segment<br>[2162, 2222, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
38[Solid2d]
|
38[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path10 [Path]
|
subgraph path10 [Path]
|
||||||
10["Path<br>[2260, 2322, 0]"]
|
10["Path<br>[2260, 2322, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
35["Segment<br>[2260, 2322, 0]"]
|
35["Segment<br>[2260, 2322, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
40[Solid2d]
|
40[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path11 [Path]
|
subgraph path11 [Path]
|
||||||
11["Path<br>[2360, 2421, 0]"]
|
11["Path<br>[2360, 2421, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
36["Segment<br>[2360, 2421, 0]"]
|
36["Segment<br>[2360, 2421, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
43[Solid2d]
|
43[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[518, 535, 0]"]
|
1["Plane<br>[518, 535, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["Plane<br>[1641, 1658, 0]"]
|
2["Plane<br>[1641, 1658, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
46["Sweep Revolve<br>[1510, 1557, 0]"]
|
46["Sweep Revolve<br>[1510, 1557, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 19 }]
|
||||||
47["Sweep Extrusion<br>[1736, 1758, 0]"]
|
47["Sweep Extrusion<br>[1736, 1758, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
48["Sweep Extrusion<br>[1835, 1857, 0]"]
|
48["Sweep Extrusion<br>[1835, 1857, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
49["Sweep Extrusion<br>[1935, 1957, 0]"]
|
49["Sweep Extrusion<br>[1935, 1957, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
50["Sweep Extrusion<br>[2032, 2054, 0]"]
|
50["Sweep Extrusion<br>[2032, 2054, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
51["Sweep Extrusion<br>[2130, 2152, 0]"]
|
51["Sweep Extrusion<br>[2130, 2152, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
52["Sweep Extrusion<br>[2228, 2250, 0]"]
|
52["Sweep Extrusion<br>[2228, 2250, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
53["Sweep Extrusion<br>[2328, 2350, 0]"]
|
53["Sweep Extrusion<br>[2328, 2350, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
54["Sweep Extrusion<br>[2427, 2449, 0]"]
|
54["Sweep Extrusion<br>[2427, 2449, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
55["CompositeSolid Subtract<br>[2716, 2769, 0]"]
|
55["CompositeSolid Subtract<br>[2716, 2769, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
56["CompositeSolid Union<br>[2680, 2703, 0]"]
|
56["CompositeSolid Union<br>[2680, 2703, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwArg { index: 0 }]
|
||||||
57["CompositeSolid Union<br>[2615, 2638, 0]"]
|
57["CompositeSolid Union<br>[2615, 2638, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwArg { index: 0 }]
|
||||||
58["CompositeSolid Subtract<br>[2517, 2574, 0]"]
|
58["CompositeSolid Subtract<br>[2517, 2574, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
59["CompositeSolid Subtract<br>[2586, 2639, 0]"]
|
59["CompositeSolid Subtract<br>[2586, 2639, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
60["CompositeSolid Union<br>[2550, 2573, 0]"]
|
60["CompositeSolid Union<br>[2550, 2573, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwArg { index: 0 }]
|
||||||
61["CompositeSolid Subtract<br>[2651, 2704, 0]"]
|
61["CompositeSolid Subtract<br>[2651, 2704, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
62["CompositeSolid Union<br>[2745, 2768, 0]"]
|
62["CompositeSolid Union<br>[2745, 2768, 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"]
|
||||||
|
@ -25,13 +25,15 @@ flowchart LR
|
|||||||
2["Plane<br>[756, 806, 0]"]
|
2["Plane<br>[756, 806, 0]"]
|
||||||
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
3["StartSketchOnFace<br>[713, 750, 0]"]
|
3["StartSketchOnFace<br>[713, 750, 0]"]
|
||||||
%% Missing NodePath
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
13["Sweep Extrusion<br>[605, 647, 0]"]
|
13["Sweep Extrusion<br>[605, 647, 0]"]
|
||||||
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
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
|
||||||
|
@ -2,45 +2,77 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path4 [Path]
|
subgraph path4 [Path]
|
||||||
4["Path<br>[2083, 2108, 0]"]
|
4["Path<br>[2083, 2108, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
7["Segment<br>[2114, 2172, 0]"]
|
7["Segment<br>[2114, 2172, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
8["Segment<br>[2178, 2217, 0]"]
|
8["Segment<br>[2178, 2217, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
9["Segment<br>[2223, 2270, 0]"]
|
9["Segment<br>[2223, 2270, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
10["Segment<br>[2276, 2322, 0]"]
|
10["Segment<br>[2276, 2322, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
11["Segment<br>[2328, 2367, 0]"]
|
11["Segment<br>[2328, 2367, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
12["Segment<br>[2373, 2443, 0]"]
|
12["Segment<br>[2373, 2443, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
13["Segment<br>[2449, 2456, 0]"]
|
13["Segment<br>[2449, 2456, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
17[Solid2d]
|
17[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path5 [Path]
|
subgraph path5 [Path]
|
||||||
5["Path<br>[2601, 2791, 0]"]
|
5["Path<br>[2601, 2791, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
14["Segment<br>[2601, 2791, 0]"]
|
14["Segment<br>[2601, 2791, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
18[Solid2d]
|
18[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path6 [Path]
|
subgraph path6 [Path]
|
||||||
6["Path<br>[3225, 3427, 0]"]
|
6["Path<br>[3225, 3427, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
15["Segment<br>[3225, 3427, 0]"]
|
15["Segment<br>[3225, 3427, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
16[Solid2d]
|
16[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[2060, 2077, 0]"]
|
1["Plane<br>[2060, 2077, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["StartSketchOnFace<br>[2555, 2595, 0]"]
|
2["StartSketchOnFace<br>[2555, 2595, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
3["StartSketchOnFace<br>[3179, 3219, 0]"]
|
3["StartSketchOnFace<br>[3179, 3219, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
19["Sweep Extrusion<br>[2462, 2488, 0]"]
|
19["Sweep Extrusion<br>[2462, 2488, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
20["Sweep Extrusion<br>[3077, 3114, 0]"]
|
20["Sweep Extrusion<br>[3077, 3114, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
21["Sweep Extrusion<br>[3077, 3114, 0]"]
|
21["Sweep Extrusion<br>[3077, 3114, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
22["Sweep Extrusion<br>[3077, 3114, 0]"]
|
22["Sweep Extrusion<br>[3077, 3114, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
23["Sweep Extrusion<br>[3077, 3114, 0]"]
|
23["Sweep Extrusion<br>[3077, 3114, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
24["Sweep Extrusion<br>[3542, 3579, 0]"]
|
24["Sweep Extrusion<br>[3542, 3579, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
25["Sweep Extrusion<br>[3542, 3579, 0]"]
|
25["Sweep Extrusion<br>[3542, 3579, 0]"]
|
||||||
|
%% [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"]
|
||||||
@ -58,11 +90,17 @@ flowchart LR
|
|||||||
50["SweepEdge Adjacent"]
|
50["SweepEdge Adjacent"]
|
||||||
51["SweepEdge Adjacent"]
|
51["SweepEdge Adjacent"]
|
||||||
52["EdgeCut Fillet<br>[3596, 3676, 0]"]
|
52["EdgeCut Fillet<br>[3596, 3676, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, ExpressionStatementExpr]
|
||||||
53["EdgeCut Fillet<br>[3677, 3754, 0]"]
|
53["EdgeCut Fillet<br>[3677, 3754, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 24 }, ExpressionStatementExpr]
|
||||||
54["EdgeCut Fillet<br>[3780, 3922, 0]"]
|
54["EdgeCut Fillet<br>[3780, 3922, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 25 }, ExpressionStatementExpr]
|
||||||
55["EdgeCut Fillet<br>[3780, 3922, 0]"]
|
55["EdgeCut Fillet<br>[3780, 3922, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 25 }, ExpressionStatementExpr]
|
||||||
56["EdgeCut Fillet<br>[3780, 3922, 0]"]
|
56["EdgeCut Fillet<br>[3780, 3922, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 25 }, ExpressionStatementExpr]
|
||||||
57["EdgeCut Fillet<br>[3780, 3922, 0]"]
|
57["EdgeCut Fillet<br>[3780, 3922, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 25 }, ExpressionStatementExpr]
|
||||||
1 --- 4
|
1 --- 4
|
||||||
32 x--> 2
|
32 x--> 2
|
||||||
33 x--> 3
|
33 x--> 3
|
||||||
|
@ -2,391 +2,709 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path11 [Path]
|
subgraph path11 [Path]
|
||||||
11["Path<br>[372, 428, 1]"]
|
11["Path<br>[372, 428, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
34["Segment<br>[372, 428, 1]"]
|
34["Segment<br>[372, 428, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
148[Solid2d]
|
148[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path12 [Path]
|
subgraph path12 [Path]
|
||||||
12["Path<br>[452, 508, 1]"]
|
12["Path<br>[452, 508, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
35["Segment<br>[452, 508, 1]"]
|
35["Segment<br>[452, 508, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
141[Solid2d]
|
141[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path13 [Path]
|
subgraph path13 [Path]
|
||||||
13["Path<br>[675, 731, 1]"]
|
13["Path<br>[675, 731, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
36["Segment<br>[675, 731, 1]"]
|
36["Segment<br>[675, 731, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
155[Solid2d]
|
155[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path14 [Path]
|
subgraph path14 [Path]
|
||||||
14["Path<br>[755, 811, 1]"]
|
14["Path<br>[755, 811, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
37["Segment<br>[755, 811, 1]"]
|
37["Segment<br>[755, 811, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
157[Solid2d]
|
157[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path15 [Path]
|
subgraph path15 [Path]
|
||||||
15["Path<br>[957, 1011, 1]"]
|
15["Path<br>[957, 1011, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
38["Segment<br>[957, 1011, 1]"]
|
38["Segment<br>[957, 1011, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
156[Solid2d]
|
156[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path16 [Path]
|
subgraph path16 [Path]
|
||||||
16["Path<br>[1294, 1349, 1]"]
|
16["Path<br>[1294, 1349, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
39["Segment<br>[1294, 1349, 1]"]
|
39["Segment<br>[1294, 1349, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
150[Solid2d]
|
150[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path17 [Path]
|
subgraph path17 [Path]
|
||||||
17["Path<br>[1707, 1753, 1]"]
|
17["Path<br>[1707, 1753, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
40["Segment<br>[1759, 1811, 1]"]
|
40["Segment<br>[1759, 1811, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
41["Segment<br>[1817, 1890, 1]"]
|
41["Segment<br>[1817, 1890, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
42["Segment<br>[1896, 1918, 1]"]
|
42["Segment<br>[1896, 1918, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
43["Segment<br>[1924, 1980, 1]"]
|
43["Segment<br>[1924, 1980, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
44["Segment<br>[1986, 1993, 1]"]
|
44["Segment<br>[1986, 1993, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
152[Solid2d]
|
152[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path18 [Path]
|
subgraph path18 [Path]
|
||||||
18["Path<br>[2125, 2171, 1]"]
|
18["Path<br>[2125, 2171, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
45["Segment<br>[2177, 2229, 1]"]
|
45["Segment<br>[2177, 2229, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
46["Segment<br>[2235, 2310, 1]"]
|
46["Segment<br>[2235, 2310, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
47["Segment<br>[2316, 2353, 1]"]
|
47["Segment<br>[2316, 2353, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
48["Segment<br>[2359, 2415, 1]"]
|
48["Segment<br>[2359, 2415, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
49["Segment<br>[2421, 2428, 1]"]
|
49["Segment<br>[2421, 2428, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
147[Solid2d]
|
147[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path19 [Path]
|
subgraph path19 [Path]
|
||||||
19["Path<br>[2909, 2956, 1]"]
|
19["Path<br>[2909, 2956, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
51["Segment<br>[2964, 3301, 1]"]
|
51["Segment<br>[2964, 3301, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
52["Segment<br>[3309, 3341, 1]"]
|
52["Segment<br>[3309, 3341, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
54["Segment<br>[3349, 3690, 1]"]
|
54["Segment<br>[3349, 3690, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
57["Segment<br>[3698, 3754, 1]"]
|
57["Segment<br>[3698, 3754, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
59["Segment<br>[3762, 3769, 1]"]
|
59["Segment<br>[3762, 3769, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
146[Solid2d]
|
146[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path20 [Path]
|
subgraph path20 [Path]
|
||||||
20["Path<br>[2909, 2956, 1]"]
|
20["Path<br>[2909, 2956, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
50["Segment<br>[2964, 3301, 1]"]
|
50["Segment<br>[2964, 3301, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
53["Segment<br>[3309, 3341, 1]"]
|
53["Segment<br>[3309, 3341, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
55["Segment<br>[3349, 3690, 1]"]
|
55["Segment<br>[3349, 3690, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
56["Segment<br>[3698, 3754, 1]"]
|
56["Segment<br>[3698, 3754, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
58["Segment<br>[3762, 3769, 1]"]
|
58["Segment<br>[3762, 3769, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
159[Solid2d]
|
159[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path21 [Path]
|
subgraph path21 [Path]
|
||||||
21["Path<br>[4379, 4474, 1]"]
|
21["Path<br>[4379, 4474, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
60["Segment<br>[4480, 4513, 1]"]
|
60["Segment<br>[4480, 4513, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
61["Segment<br>[4519, 4570, 1]"]
|
61["Segment<br>[4519, 4570, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
62["Segment<br>[4576, 4609, 1]"]
|
62["Segment<br>[4576, 4609, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
63["Segment<br>[4615, 4665, 1]"]
|
63["Segment<br>[4615, 4665, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
64["Segment<br>[4671, 4712, 1]"]
|
64["Segment<br>[4671, 4712, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
65["Segment<br>[4718, 4767, 1]"]
|
65["Segment<br>[4718, 4767, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
66["Segment<br>[4773, 4806, 1]"]
|
66["Segment<br>[4773, 4806, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
67["Segment<br>[4812, 4846, 1]"]
|
67["Segment<br>[4812, 4846, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
68["Segment<br>[4852, 4886, 1]"]
|
68["Segment<br>[4852, 4886, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
69["Segment<br>[4892, 4944, 1]"]
|
69["Segment<br>[4892, 4944, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
70["Segment<br>[4950, 4984, 1]"]
|
70["Segment<br>[4950, 4984, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
71["Segment<br>[4990, 5066, 1]"]
|
71["Segment<br>[4990, 5066, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
72["Segment<br>[5072, 5105, 1]"]
|
72["Segment<br>[5072, 5105, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
73["Segment<br>[5111, 5187, 1]"]
|
73["Segment<br>[5111, 5187, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
74["Segment<br>[5193, 5227, 1]"]
|
74["Segment<br>[5193, 5227, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
75["Segment<br>[5233, 5307, 1]"]
|
75["Segment<br>[5233, 5307, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
76["Segment<br>[5313, 5347, 1]"]
|
76["Segment<br>[5313, 5347, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
77["Segment<br>[5353, 5404, 1]"]
|
77["Segment<br>[5353, 5404, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
78["Segment<br>[5410, 5472, 1]"]
|
78["Segment<br>[5410, 5472, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
79["Segment<br>[5478, 5529, 1]"]
|
79["Segment<br>[5478, 5529, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
80["Segment<br>[5535, 5569, 1]"]
|
80["Segment<br>[5535, 5569, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
81["Segment<br>[5575, 5608, 1]"]
|
81["Segment<br>[5575, 5608, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
82["Segment<br>[5614, 5647, 1]"]
|
82["Segment<br>[5614, 5647, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
83["Segment<br>[5653, 5660, 1]"]
|
83["Segment<br>[5653, 5660, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
158[Solid2d]
|
158[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path22 [Path]
|
subgraph path22 [Path]
|
||||||
22["Path<br>[589, 640, 3]"]
|
22["Path<br>[589, 640, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
84["Segment<br>[589, 640, 3]"]
|
84["Segment<br>[589, 640, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
142[Solid2d]
|
142[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path23 [Path]
|
subgraph path23 [Path]
|
||||||
23["Path<br>[830, 886, 3]"]
|
23["Path<br>[830, 886, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
85["Segment<br>[830, 886, 3]"]
|
85["Segment<br>[830, 886, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
153[Solid2d]
|
153[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path24 [Path]
|
subgraph path24 [Path]
|
||||||
24["Path<br>[1016, 1069, 3]"]
|
24["Path<br>[1016, 1069, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
86["Segment<br>[1016, 1069, 3]"]
|
86["Segment<br>[1016, 1069, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
161[Solid2d]
|
161[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path25 [Path]
|
subgraph path25 [Path]
|
||||||
25["Path<br>[1457, 1497, 3]"]
|
25["Path<br>[1457, 1497, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
87["Segment<br>[1457, 1497, 3]"]
|
87["Segment<br>[1457, 1497, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
151[Solid2d]
|
151[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path26 [Path]
|
subgraph path26 [Path]
|
||||||
26["Path<br>[1606, 1657, 3]"]
|
26["Path<br>[1606, 1657, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
88["Segment<br>[1606, 1657, 3]"]
|
88["Segment<br>[1606, 1657, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
149[Solid2d]
|
149[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path27 [Path]
|
subgraph path27 [Path]
|
||||||
27["Path<br>[1795, 1847, 3]"]
|
27["Path<br>[1795, 1847, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
89["Segment<br>[1795, 1847, 3]"]
|
89["Segment<br>[1795, 1847, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
162[Solid2d]
|
162[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path28 [Path]
|
subgraph path28 [Path]
|
||||||
28["Path<br>[2095, 2167, 3]"]
|
28["Path<br>[2095, 2167, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
90["Segment<br>[2095, 2167, 3]"]
|
90["Segment<br>[2095, 2167, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
160[Solid2d]
|
160[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path29 [Path]
|
subgraph path29 [Path]
|
||||||
29["Path<br>[2429, 2460, 3]"]
|
29["Path<br>[2429, 2460, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
91["Segment<br>[2466, 2486, 3]"]
|
91["Segment<br>[2466, 2486, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
92["Segment<br>[2492, 2512, 3]"]
|
92["Segment<br>[2492, 2512, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
93["Segment<br>[2518, 2539, 3]"]
|
93["Segment<br>[2518, 2539, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
94["Segment<br>[2545, 2601, 3]"]
|
94["Segment<br>[2545, 2601, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
95["Segment<br>[2607, 2614, 3]"]
|
95["Segment<br>[2607, 2614, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
144[Solid2d]
|
144[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path30 [Path]
|
subgraph path30 [Path]
|
||||||
30["Path<br>[2921, 2953, 3]"]
|
30["Path<br>[2921, 2953, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
96["Segment<br>[2959, 2980, 3]"]
|
96["Segment<br>[2959, 2980, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
97["Segment<br>[2986, 3006, 3]"]
|
97["Segment<br>[2986, 3006, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
98["Segment<br>[3012, 3032, 3]"]
|
98["Segment<br>[3012, 3032, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
99["Segment<br>[3038, 3094, 3]"]
|
99["Segment<br>[3038, 3094, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
100["Segment<br>[3100, 3107, 3]"]
|
100["Segment<br>[3100, 3107, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
143[Solid2d]
|
143[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path31 [Path]
|
subgraph path31 [Path]
|
||||||
31["Path<br>[529, 610, 4]"]
|
31["Path<br>[529, 610, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
101["Segment<br>[616, 717, 4]"]
|
101["Segment<br>[616, 717, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
102["Segment<br>[723, 781, 4]"]
|
102["Segment<br>[723, 781, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
103["Segment<br>[787, 871, 4]"]
|
103["Segment<br>[787, 871, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
104["Segment<br>[877, 936, 4]"]
|
104["Segment<br>[877, 936, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
105["Segment<br>[942, 1027, 4]"]
|
105["Segment<br>[942, 1027, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
106["Segment<br>[1033, 1092, 4]"]
|
106["Segment<br>[1033, 1092, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
107["Segment<br>[1098, 1221, 4]"]
|
107["Segment<br>[1098, 1221, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
108["Segment<br>[1227, 1286, 4]"]
|
108["Segment<br>[1227, 1286, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
109["Segment<br>[1292, 1427, 4]"]
|
109["Segment<br>[1292, 1427, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
110["Segment<br>[1433, 1492, 4]"]
|
110["Segment<br>[1433, 1492, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
111["Segment<br>[1498, 1622, 4]"]
|
111["Segment<br>[1498, 1622, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
112["Segment<br>[1628, 1687, 4]"]
|
112["Segment<br>[1628, 1687, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
113["Segment<br>[1693, 1778, 4]"]
|
113["Segment<br>[1693, 1778, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
114["Segment<br>[1784, 1843, 4]"]
|
114["Segment<br>[1784, 1843, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
115["Segment<br>[1849, 1934, 4]"]
|
115["Segment<br>[1849, 1934, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
116["Segment<br>[1940, 1998, 4]"]
|
116["Segment<br>[1940, 1998, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
117["Segment<br>[2004, 2011, 4]"]
|
117["Segment<br>[2004, 2011, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
154[Solid2d]
|
154[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path32 [Path]
|
subgraph path32 [Path]
|
||||||
32["Path<br>[711, 751, 5]"]
|
32["Path<br>[711, 751, 5]"]
|
||||||
|
%% Missing NodePath
|
||||||
118["Segment<br>[759, 806, 5]"]
|
118["Segment<br>[759, 806, 5]"]
|
||||||
|
%% Missing NodePath
|
||||||
119["Segment<br>[814, 850, 5]"]
|
119["Segment<br>[814, 850, 5]"]
|
||||||
|
%% Missing NodePath
|
||||||
120["Segment<br>[858, 888, 5]"]
|
120["Segment<br>[858, 888, 5]"]
|
||||||
|
%% Missing NodePath
|
||||||
121["Segment<br>[896, 935, 5]"]
|
121["Segment<br>[896, 935, 5]"]
|
||||||
|
%% Missing NodePath
|
||||||
122["Segment<br>[943, 983, 5]"]
|
122["Segment<br>[943, 983, 5]"]
|
||||||
|
%% Missing NodePath
|
||||||
123["Segment<br>[991, 1026, 5]"]
|
123["Segment<br>[991, 1026, 5]"]
|
||||||
|
%% Missing NodePath
|
||||||
124["Segment<br>[1034, 1072, 5]"]
|
124["Segment<br>[1034, 1072, 5]"]
|
||||||
|
%% Missing NodePath
|
||||||
125["Segment<br>[1080, 1102, 5]"]
|
125["Segment<br>[1080, 1102, 5]"]
|
||||||
|
%% Missing NodePath
|
||||||
126["Segment<br>[1110, 1117, 5]"]
|
126["Segment<br>[1110, 1117, 5]"]
|
||||||
|
%% Missing NodePath
|
||||||
145[Solid2d]
|
145[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path33 [Path]
|
subgraph path33 [Path]
|
||||||
33["Path<br>[505, 562, 6]"]
|
33["Path<br>[505, 562, 6]"]
|
||||||
|
%% Missing NodePath
|
||||||
127["Segment<br>[568, 702, 6]"]
|
127["Segment<br>[568, 702, 6]"]
|
||||||
|
%% Missing NodePath
|
||||||
128["Segment<br>[708, 755, 6]"]
|
128["Segment<br>[708, 755, 6]"]
|
||||||
|
%% Missing NodePath
|
||||||
129["Segment<br>[761, 858, 6]"]
|
129["Segment<br>[761, 858, 6]"]
|
||||||
|
%% Missing NodePath
|
||||||
130["Segment<br>[864, 896, 6]"]
|
130["Segment<br>[864, 896, 6]"]
|
||||||
|
%% Missing NodePath
|
||||||
131["Segment<br>[902, 934, 6]"]
|
131["Segment<br>[902, 934, 6]"]
|
||||||
|
%% Missing NodePath
|
||||||
132["Segment<br>[940, 971, 6]"]
|
132["Segment<br>[940, 971, 6]"]
|
||||||
|
%% Missing NodePath
|
||||||
133["Segment<br>[977, 1092, 6]"]
|
133["Segment<br>[977, 1092, 6]"]
|
||||||
|
%% Missing NodePath
|
||||||
134["Segment<br>[1098, 1130, 6]"]
|
134["Segment<br>[1098, 1130, 6]"]
|
||||||
|
%% Missing NodePath
|
||||||
135["Segment<br>[1136, 1168, 6]"]
|
135["Segment<br>[1136, 1168, 6]"]
|
||||||
|
%% Missing NodePath
|
||||||
136["Segment<br>[1174, 1205, 6]"]
|
136["Segment<br>[1174, 1205, 6]"]
|
||||||
|
%% Missing NodePath
|
||||||
137["Segment<br>[1211, 1304, 6]"]
|
137["Segment<br>[1211, 1304, 6]"]
|
||||||
|
%% Missing NodePath
|
||||||
138["Segment<br>[1310, 1357, 6]"]
|
138["Segment<br>[1310, 1357, 6]"]
|
||||||
|
%% Missing NodePath
|
||||||
139["Segment<br>[1363, 1436, 6]"]
|
139["Segment<br>[1363, 1436, 6]"]
|
||||||
|
%% Missing NodePath
|
||||||
140["Segment<br>[1442, 1449, 6]"]
|
140["Segment<br>[1442, 1449, 6]"]
|
||||||
|
%% Missing NodePath
|
||||||
163[Solid2d]
|
163[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[349, 366, 1]"]
|
1["Plane<br>[349, 366, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
2["Plane<br>[1684, 1701, 1]"]
|
2["Plane<br>[1684, 1701, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
3["Plane<br>[2102, 2119, 1]"]
|
3["Plane<br>[2102, 2119, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
4["Plane<br>[2878, 2901, 1]"]
|
4["Plane<br>[2878, 2901, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
5["Plane<br>[2878, 2901, 1]"]
|
5["Plane<br>[2878, 2901, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
6["Plane<br>[4356, 4373, 1]"]
|
6["Plane<br>[4356, 4373, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
7["Plane<br>[566, 583, 3]"]
|
7["Plane<br>[566, 583, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
8["Plane<br>[506, 523, 4]"]
|
8["Plane<br>[506, 523, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
9["Plane<br>[677, 703, 5]"]
|
9["Plane<br>[677, 703, 5]"]
|
||||||
|
%% Missing NodePath
|
||||||
10["Plane<br>[482, 499, 6]"]
|
10["Plane<br>[482, 499, 6]"]
|
||||||
|
%% Missing NodePath
|
||||||
164["Sweep Extrusion<br>[515, 548, 1]"]
|
164["Sweep Extrusion<br>[515, 548, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
165["Sweep Extrusion<br>[818, 851, 1]"]
|
165["Sweep Extrusion<br>[818, 851, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
166["Sweep Extrusion<br>[1158, 1192, 1]"]
|
166["Sweep Extrusion<br>[1158, 1192, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
167["Sweep Extrusion<br>[1158, 1192, 1]"]
|
167["Sweep Extrusion<br>[1158, 1192, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
168["Sweep Extrusion<br>[1158, 1192, 1]"]
|
168["Sweep Extrusion<br>[1158, 1192, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
169["Sweep Extrusion<br>[1158, 1192, 1]"]
|
169["Sweep Extrusion<br>[1158, 1192, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
170["Sweep Extrusion<br>[1158, 1192, 1]"]
|
170["Sweep Extrusion<br>[1158, 1192, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
171["Sweep Extrusion<br>[1496, 1530, 1]"]
|
171["Sweep Extrusion<br>[1496, 1530, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
172["Sweep Extrusion<br>[1496, 1530, 1]"]
|
172["Sweep Extrusion<br>[1496, 1530, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
173["Sweep Extrusion<br>[1496, 1530, 1]"]
|
173["Sweep Extrusion<br>[1496, 1530, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
174["Sweep Extrusion<br>[1496, 1530, 1]"]
|
174["Sweep Extrusion<br>[1496, 1530, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
175["Sweep Extrusion<br>[1496, 1530, 1]"]
|
175["Sweep Extrusion<br>[1496, 1530, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
176["Sweep Revolve<br>[1999, 2016, 1]"]
|
176["Sweep Revolve<br>[1999, 2016, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
177["Sweep Revolve<br>[2434, 2451, 1]"]
|
177["Sweep Revolve<br>[2434, 2451, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
178["Sweep Extrusion<br>[3817, 3863, 1]"]
|
178["Sweep Extrusion<br>[3817, 3863, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
179["Sweep Extrusion<br>[3817, 3863, 1]"]
|
179["Sweep Extrusion<br>[3817, 3863, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
180["Sweep Revolve<br>[5666, 5683, 1]"]
|
180["Sweep Revolve<br>[5666, 5683, 1]"]
|
||||||
|
%% Missing NodePath
|
||||||
181["Sweep Extrusion<br>[649, 705, 3]"]
|
181["Sweep Extrusion<br>[649, 705, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
182["Sweep Extrusion<br>[899, 961, 3]"]
|
182["Sweep Extrusion<br>[899, 961, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
183["Sweep Extrusion<br>[1216, 1295, 3]"]
|
183["Sweep Extrusion<br>[1216, 1295, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
184["Sweep Extrusion<br>[1216, 1295, 3]"]
|
184["Sweep Extrusion<br>[1216, 1295, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
185["Sweep Extrusion<br>[1216, 1295, 3]"]
|
185["Sweep Extrusion<br>[1216, 1295, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
186["Sweep Extrusion<br>[1216, 1295, 3]"]
|
186["Sweep Extrusion<br>[1216, 1295, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
187["Sweep Extrusion<br>[1216, 1295, 3]"]
|
187["Sweep Extrusion<br>[1216, 1295, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
188["Sweep Extrusion<br>[1503, 1536, 3]"]
|
188["Sweep Extrusion<br>[1503, 1536, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
189["Sweep Extrusion<br>[1672, 1737, 3]"]
|
189["Sweep Extrusion<br>[1672, 1737, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
190["Sweep Extrusion<br>[1994, 2038, 3]"]
|
190["Sweep Extrusion<br>[1994, 2038, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
191["Sweep Extrusion<br>[1994, 2038, 3]"]
|
191["Sweep Extrusion<br>[1994, 2038, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
192["Sweep Extrusion<br>[1994, 2038, 3]"]
|
192["Sweep Extrusion<br>[1994, 2038, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
193["Sweep Extrusion<br>[1994, 2038, 3]"]
|
193["Sweep Extrusion<br>[1994, 2038, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
194["Sweep Extrusion<br>[1994, 2038, 3]"]
|
194["Sweep Extrusion<br>[1994, 2038, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
195["Sweep Extrusion<br>[2322, 2366, 3]"]
|
195["Sweep Extrusion<br>[2322, 2366, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
196["Sweep Extrusion<br>[2322, 2366, 3]"]
|
196["Sweep Extrusion<br>[2322, 2366, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
197["Sweep Extrusion<br>[2322, 2366, 3]"]
|
197["Sweep Extrusion<br>[2322, 2366, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
198["Sweep Extrusion<br>[2322, 2366, 3]"]
|
198["Sweep Extrusion<br>[2322, 2366, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
199["Sweep Extrusion<br>[2322, 2366, 3]"]
|
199["Sweep Extrusion<br>[2322, 2366, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
200["Sweep Extrusion<br>[2322, 2366, 3]"]
|
200["Sweep Extrusion<br>[2322, 2366, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
201["Sweep Extrusion<br>[2322, 2366, 3]"]
|
201["Sweep Extrusion<br>[2322, 2366, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
202["Sweep Extrusion<br>[2322, 2366, 3]"]
|
202["Sweep Extrusion<br>[2322, 2366, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
203["Sweep Extrusion<br>[2322, 2366, 3]"]
|
203["Sweep Extrusion<br>[2322, 2366, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
204["Sweep Extrusion<br>[2322, 2366, 3]"]
|
204["Sweep Extrusion<br>[2322, 2366, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
205["Sweep Extrusion<br>[2322, 2366, 3]"]
|
205["Sweep Extrusion<br>[2322, 2366, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
206["Sweep Extrusion<br>[2322, 2366, 3]"]
|
206["Sweep Extrusion<br>[2322, 2366, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
207["Sweep Extrusion<br>[2322, 2366, 3]"]
|
207["Sweep Extrusion<br>[2322, 2366, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
208["Sweep Extrusion<br>[2322, 2366, 3]"]
|
208["Sweep Extrusion<br>[2322, 2366, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
209["Sweep Extrusion<br>[2322, 2366, 3]"]
|
209["Sweep Extrusion<br>[2322, 2366, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
210["Sweep Extrusion<br>[2322, 2366, 3]"]
|
210["Sweep Extrusion<br>[2322, 2366, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
211["Sweep Extrusion<br>[2780, 2848, 3]"]
|
211["Sweep Extrusion<br>[2780, 2848, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
212["Sweep Extrusion<br>[2780, 2848, 3]"]
|
212["Sweep Extrusion<br>[2780, 2848, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
213["Sweep Extrusion<br>[2780, 2848, 3]"]
|
213["Sweep Extrusion<br>[2780, 2848, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
214["Sweep Extrusion<br>[2780, 2848, 3]"]
|
214["Sweep Extrusion<br>[2780, 2848, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
215["Sweep Extrusion<br>[2780, 2848, 3]"]
|
215["Sweep Extrusion<br>[2780, 2848, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
216["Sweep Extrusion<br>[3270, 3344, 3]"]
|
216["Sweep Extrusion<br>[3270, 3344, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
217["Sweep Extrusion<br>[3270, 3344, 3]"]
|
217["Sweep Extrusion<br>[3270, 3344, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
218["Sweep Extrusion<br>[3270, 3344, 3]"]
|
218["Sweep Extrusion<br>[3270, 3344, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
219["Sweep Extrusion<br>[3270, 3344, 3]"]
|
219["Sweep Extrusion<br>[3270, 3344, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
220["Sweep Extrusion<br>[3270, 3344, 3]"]
|
220["Sweep Extrusion<br>[3270, 3344, 3]"]
|
||||||
|
%% Missing NodePath
|
||||||
221["Sweep Revolve<br>[2049, 2099, 4]"]
|
221["Sweep Revolve<br>[2049, 2099, 4]"]
|
||||||
|
%% Missing NodePath
|
||||||
222["Sweep Revolve<br>[1125, 1142, 5]"]
|
222["Sweep Revolve<br>[1125, 1142, 5]"]
|
||||||
|
%% Missing NodePath
|
||||||
223["Sweep Revolve<br>[1502, 1531, 6]"]
|
223["Sweep Revolve<br>[1502, 1531, 6]"]
|
||||||
|
%% 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"]
|
||||||
|
@ -2,70 +2,122 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path7 [Path]
|
subgraph path7 [Path]
|
||||||
7["Path<br>[577, 617, 0]"]
|
7["Path<br>[577, 617, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
12["Segment<br>[623, 670, 0]"]
|
12["Segment<br>[623, 670, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
13["Segment<br>[676, 705, 0]"]
|
13["Segment<br>[676, 705, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
14["Segment<br>[711, 764, 0]"]
|
14["Segment<br>[711, 764, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
15["Segment<br>[770, 798, 0]"]
|
15["Segment<br>[770, 798, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
16["Segment<br>[804, 863, 0]"]
|
16["Segment<br>[804, 863, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
17["Segment<br>[869, 912, 0]"]
|
17["Segment<br>[869, 912, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
18["Segment<br>[918, 971, 0]"]
|
18["Segment<br>[918, 971, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
19["Segment<br>[977, 1019, 0]"]
|
19["Segment<br>[977, 1019, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
20["Segment<br>[1025, 1072, 0]"]
|
20["Segment<br>[1025, 1072, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }]
|
||||||
21["Segment<br>[1078, 1128, 0]"]
|
21["Segment<br>[1078, 1128, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 11 }]
|
||||||
22["Segment<br>[1134, 1196, 0]"]
|
22["Segment<br>[1134, 1196, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 12 }]
|
||||||
23["Segment<br>[1202, 1253, 0]"]
|
23["Segment<br>[1202, 1253, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 13 }]
|
||||||
24["Segment<br>[1259, 1281, 0]"]
|
24["Segment<br>[1259, 1281, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 14 }]
|
||||||
25["Segment<br>[1287, 1309, 0]"]
|
25["Segment<br>[1287, 1309, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 15 }]
|
||||||
26["Segment<br>[1339, 1346, 0]"]
|
26["Segment<br>[1339, 1346, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 17 }]
|
||||||
44[Solid2d]
|
44[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path8 [Path]
|
subgraph path8 [Path]
|
||||||
8["Path<br>[1517, 1560, 0]"]
|
8["Path<br>[1517, 1560, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
27["Segment<br>[1566, 1601, 0]"]
|
27["Segment<br>[1566, 1601, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
28["Segment<br>[1607, 1668, 0]"]
|
28["Segment<br>[1607, 1668, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
29["Segment<br>[1674, 1743, 0]"]
|
29["Segment<br>[1674, 1743, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
30["Segment<br>[1749, 1811, 0]"]
|
30["Segment<br>[1749, 1811, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
31["Segment<br>[1817, 1880, 0]"]
|
31["Segment<br>[1817, 1880, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
32["Segment<br>[1886, 1947, 0]"]
|
32["Segment<br>[1886, 1947, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
33["Segment<br>[1953, 2016, 0]"]
|
33["Segment<br>[1953, 2016, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
end
|
end
|
||||||
subgraph path9 [Path]
|
subgraph path9 [Path]
|
||||||
9["Path<br>[2162, 2237, 0]"]
|
9["Path<br>[2162, 2237, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
34["Segment<br>[2162, 2237, 0]"]
|
34["Segment<br>[2162, 2237, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
43[Solid2d]
|
43[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path10 [Path]
|
subgraph path10 [Path]
|
||||||
10["Path<br>[2264, 2355, 0]"]
|
10["Path<br>[2264, 2355, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
35["Segment<br>[2264, 2355, 0]"]
|
35["Segment<br>[2264, 2355, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
41[Solid2d]
|
41[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path11 [Path]
|
subgraph path11 [Path]
|
||||||
11["Path<br>[2552, 2584, 0]"]
|
11["Path<br>[2552, 2584, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
36["Segment<br>[2590, 2680, 0]"]
|
36["Segment<br>[2590, 2680, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
37["Segment<br>[2686, 2723, 0]"]
|
37["Segment<br>[2686, 2723, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
38["Segment<br>[2729, 2882, 0]"]
|
38["Segment<br>[2729, 2882, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
39["Segment<br>[2888, 2944, 0]"]
|
39["Segment<br>[2888, 2944, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
40["Segment<br>[2950, 2957, 0]"]
|
40["Segment<br>[2950, 2957, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
42[Solid2d]
|
42[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[554, 571, 0]"]
|
1["Plane<br>[554, 571, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["Plane<br>[1472, 1510, 0]"]
|
2["Plane<br>[1472, 1510, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
3["Plane<br>[2124, 2155, 0]"]
|
3["Plane<br>[2124, 2155, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
4["Plane<br>[2529, 2546, 0]"]
|
4["Plane<br>[2529, 2546, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
5["StartSketchOnPlane<br>[1458, 1511, 0]"]
|
5["StartSketchOnPlane<br>[1458, 1511, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
6["StartSketchOnPlane<br>[2110, 2156, 0]"]
|
6["StartSketchOnPlane<br>[2110, 2156, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
45["Sweep Extrusion<br>[1352, 1390, 0]"]
|
45["Sweep Extrusion<br>[1352, 1390, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 18 }]
|
||||||
46["Sweep Sweep<br>[2362, 2390, 0]"]
|
46["Sweep Sweep<br>[2362, 2390, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
47["Sweep Extrusion<br>[2963, 3001, 0]"]
|
47["Sweep Extrusion<br>[2963, 3001, 0]"]
|
||||||
|
%% [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"]
|
||||||
|
@ -2,106 +2,190 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path7 [Path]
|
subgraph path7 [Path]
|
||||||
7["Path<br>[791, 831, 0]"]
|
7["Path<br>[791, 831, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 1 }]
|
||||||
18["Segment<br>[839, 904, 0]"]
|
18["Segment<br>[839, 904, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 2 }]
|
||||||
19["Segment<br>[912, 1009, 0]"]
|
19["Segment<br>[912, 1009, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 3 }]
|
||||||
30["Segment<br>[1017, 1134, 0]"]
|
30["Segment<br>[1017, 1134, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 4 }]
|
||||||
36["Segment<br>[1142, 1198, 0]"]
|
36["Segment<br>[1142, 1198, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 5 }]
|
||||||
42["Segment<br>[1206, 1213, 0]"]
|
42["Segment<br>[1206, 1213, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 6 }]
|
||||||
43[Solid2d]
|
43[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path8 [Path]
|
subgraph path8 [Path]
|
||||||
8["Path<br>[791, 831, 0]"]
|
8["Path<br>[791, 831, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 1 }]
|
||||||
15["Segment<br>[839, 904, 0]"]
|
15["Segment<br>[839, 904, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 2 }]
|
||||||
23["Segment<br>[912, 1009, 0]"]
|
23["Segment<br>[912, 1009, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 3 }]
|
||||||
26["Segment<br>[1017, 1134, 0]"]
|
26["Segment<br>[1017, 1134, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 4 }]
|
||||||
33["Segment<br>[1142, 1198, 0]"]
|
33["Segment<br>[1142, 1198, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 5 }]
|
||||||
39["Segment<br>[1206, 1213, 0]"]
|
39["Segment<br>[1206, 1213, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 6 }]
|
||||||
44[Solid2d]
|
44[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path9 [Path]
|
subgraph path9 [Path]
|
||||||
9["Path<br>[791, 831, 0]"]
|
9["Path<br>[791, 831, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 1 }]
|
||||||
14["Segment<br>[839, 904, 0]"]
|
14["Segment<br>[839, 904, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 2 }]
|
||||||
22["Segment<br>[912, 1009, 0]"]
|
22["Segment<br>[912, 1009, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 3 }]
|
||||||
29["Segment<br>[1017, 1134, 0]"]
|
29["Segment<br>[1017, 1134, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 4 }]
|
||||||
34["Segment<br>[1142, 1198, 0]"]
|
34["Segment<br>[1142, 1198, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 5 }]
|
||||||
38["Segment<br>[1206, 1213, 0]"]
|
38["Segment<br>[1206, 1213, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 6 }]
|
||||||
45[Solid2d]
|
45[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path10 [Path]
|
subgraph path10 [Path]
|
||||||
10["Path<br>[791, 831, 0]"]
|
10["Path<br>[791, 831, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 1 }]
|
||||||
16["Segment<br>[839, 904, 0]"]
|
16["Segment<br>[839, 904, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 2 }]
|
||||||
24["Segment<br>[912, 1009, 0]"]
|
24["Segment<br>[912, 1009, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 3 }]
|
||||||
25["Segment<br>[1017, 1134, 0]"]
|
25["Segment<br>[1017, 1134, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 4 }]
|
||||||
31["Segment<br>[1142, 1198, 0]"]
|
31["Segment<br>[1142, 1198, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 5 }]
|
||||||
40["Segment<br>[1206, 1213, 0]"]
|
40["Segment<br>[1206, 1213, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 6 }]
|
||||||
46[Solid2d]
|
46[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path11 [Path]
|
subgraph path11 [Path]
|
||||||
11["Path<br>[791, 831, 0]"]
|
11["Path<br>[791, 831, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 1 }]
|
||||||
13["Segment<br>[839, 904, 0]"]
|
13["Segment<br>[839, 904, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 2 }]
|
||||||
20["Segment<br>[912, 1009, 0]"]
|
20["Segment<br>[912, 1009, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 3 }]
|
||||||
27["Segment<br>[1017, 1134, 0]"]
|
27["Segment<br>[1017, 1134, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 4 }]
|
||||||
32["Segment<br>[1142, 1198, 0]"]
|
32["Segment<br>[1142, 1198, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 5 }]
|
||||||
37["Segment<br>[1206, 1213, 0]"]
|
37["Segment<br>[1206, 1213, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 6 }]
|
||||||
47[Solid2d]
|
47[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path12 [Path]
|
subgraph path12 [Path]
|
||||||
12["Path<br>[791, 831, 0]"]
|
12["Path<br>[791, 831, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 1 }]
|
||||||
17["Segment<br>[839, 904, 0]"]
|
17["Segment<br>[839, 904, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 2 }]
|
||||||
21["Segment<br>[912, 1009, 0]"]
|
21["Segment<br>[912, 1009, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 3 }]
|
||||||
28["Segment<br>[1017, 1134, 0]"]
|
28["Segment<br>[1017, 1134, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 4 }]
|
||||||
35["Segment<br>[1142, 1198, 0]"]
|
35["Segment<br>[1142, 1198, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 5 }]
|
||||||
41["Segment<br>[1206, 1213, 0]"]
|
41["Segment<br>[1206, 1213, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 6 }]
|
||||||
48[Solid2d]
|
48[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[374, 408, 0]"]
|
1["Plane<br>[374, 408, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
2["Plane<br>[423, 458, 0]"]
|
2["Plane<br>[423, 458, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
3["Plane<br>[472, 507, 0]"]
|
3["Plane<br>[472, 507, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
4["Plane<br>[522, 558, 0]"]
|
4["Plane<br>[522, 558, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
5["Plane<br>[570, 620, 0]"]
|
5["Plane<br>[570, 620, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
6["Plane<br>[633, 668, 0]"]
|
6["Plane<br>[633, 668, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
49["Sweep Extrusion<br>[1221, 1252, 0]"]
|
49["Sweep Extrusion<br>[1221, 1252, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 7 }]
|
||||||
50["Sweep Extrusion<br>[1221, 1252, 0]"]
|
50["Sweep Extrusion<br>[1221, 1252, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 7 }]
|
||||||
51["Sweep Extrusion<br>[1221, 1252, 0]"]
|
51["Sweep Extrusion<br>[1221, 1252, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 7 }]
|
||||||
52["Sweep Extrusion<br>[1221, 1252, 0]"]
|
52["Sweep Extrusion<br>[1221, 1252, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 7 }]
|
||||||
53["Sweep Extrusion<br>[1221, 1252, 0]"]
|
53["Sweep Extrusion<br>[1221, 1252, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg, PipeBodyItem { index: 7 }]
|
||||||
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 }]
|
||||||
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"]
|
||||||
|
@ -2,159 +2,269 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path15 [Path]
|
subgraph path15 [Path]
|
||||||
15["Path<br>[757, 811, 0]"]
|
15["Path<br>[757, 811, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
30["Segment<br>[817, 889, 0]"]
|
30["Segment<br>[817, 889, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
31["Segment<br>[895, 998, 0]"]
|
31["Segment<br>[895, 998, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
32["Segment<br>[1004, 1121, 0]"]
|
32["Segment<br>[1004, 1121, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
33["Segment<br>[1127, 1212, 0]"]
|
33["Segment<br>[1127, 1212, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
34["Segment<br>[1218, 1225, 0]"]
|
34["Segment<br>[1218, 1225, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
62[Solid2d]
|
62[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path16 [Path]
|
subgraph path16 [Path]
|
||||||
16["Path<br>[1249, 1304, 0]"]
|
16["Path<br>[1249, 1304, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }, CallKwArg { index: 0 }]
|
||||||
35["Segment<br>[1249, 1304, 0]"]
|
35["Segment<br>[1249, 1304, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }, CallKwArg { index: 0 }]
|
||||||
68[Solid2d]
|
68[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path17 [Path]
|
subgraph path17 [Path]
|
||||||
17["Path<br>[1995, 2059, 0]"]
|
17["Path<br>[1995, 2059, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
38["Segment<br>[1995, 2059, 0]"]
|
38["Segment<br>[1995, 2059, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
59[Solid2d]
|
59[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path18 [Path]
|
subgraph path18 [Path]
|
||||||
18["Path<br>[1995, 2059, 0]"]
|
18["Path<br>[1995, 2059, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
36["Segment<br>[1995, 2059, 0]"]
|
36["Segment<br>[1995, 2059, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
61[Solid2d]
|
61[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path19 [Path]
|
subgraph path19 [Path]
|
||||||
19["Path<br>[1995, 2059, 0]"]
|
19["Path<br>[1995, 2059, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
37["Segment<br>[1995, 2059, 0]"]
|
37["Segment<br>[1995, 2059, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
69[Solid2d]
|
69[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path20 [Path]
|
subgraph path20 [Path]
|
||||||
20["Path<br>[1995, 2059, 0]"]
|
20["Path<br>[1995, 2059, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
39["Segment<br>[1995, 2059, 0]"]
|
39["Segment<br>[1995, 2059, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
72[Solid2d]
|
72[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path21 [Path]
|
subgraph path21 [Path]
|
||||||
21["Path<br>[2159, 2230, 0]"]
|
21["Path<br>[2159, 2230, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
43["Segment<br>[2159, 2230, 0]"]
|
43["Segment<br>[2159, 2230, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
60[Solid2d]
|
60[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path22 [Path]
|
subgraph path22 [Path]
|
||||||
22["Path<br>[2159, 2230, 0]"]
|
22["Path<br>[2159, 2230, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
40["Segment<br>[2159, 2230, 0]"]
|
40["Segment<br>[2159, 2230, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
63[Solid2d]
|
63[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path23 [Path]
|
subgraph path23 [Path]
|
||||||
23["Path<br>[2159, 2230, 0]"]
|
23["Path<br>[2159, 2230, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
42["Segment<br>[2159, 2230, 0]"]
|
42["Segment<br>[2159, 2230, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
66[Solid2d]
|
66[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path24 [Path]
|
subgraph path24 [Path]
|
||||||
24["Path<br>[2159, 2230, 0]"]
|
24["Path<br>[2159, 2230, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
41["Segment<br>[2159, 2230, 0]"]
|
41["Segment<br>[2159, 2230, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
73[Solid2d]
|
73[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path25 [Path]
|
subgraph path25 [Path]
|
||||||
25["Path<br>[2643, 2684, 0]"]
|
25["Path<br>[2643, 2684, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
44["Segment<br>[2643, 2684, 0]"]
|
44["Segment<br>[2643, 2684, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
65[Solid2d]
|
65[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path26 [Path]
|
subgraph path26 [Path]
|
||||||
26["Path<br>[2840, 2911, 0]"]
|
26["Path<br>[2840, 2911, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
45["Segment<br>[2840, 2911, 0]"]
|
45["Segment<br>[2840, 2911, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
64[Solid2d]
|
64[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path27 [Path]
|
subgraph path27 [Path]
|
||||||
27["Path<br>[2935, 2990, 0]"]
|
27["Path<br>[2935, 2990, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
46["Segment<br>[2935, 2990, 0]"]
|
46["Segment<br>[2935, 2990, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
70[Solid2d]
|
70[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path28 [Path]
|
subgraph path28 [Path]
|
||||||
28["Path<br>[3369, 3470, 0]"]
|
28["Path<br>[3369, 3470, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
47["Segment<br>[3478, 3575, 0]"]
|
47["Segment<br>[3478, 3575, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
50["Segment<br>[3583, 3603, 0]"]
|
50["Segment<br>[3583, 3603, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
51["Segment<br>[3611, 3717, 0]"]
|
51["Segment<br>[3611, 3717, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
54["Segment<br>[3725, 3746, 0]"]
|
54["Segment<br>[3725, 3746, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
55["Segment<br>[3754, 3810, 0]"]
|
55["Segment<br>[3754, 3810, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
58["Segment<br>[3818, 3825, 0]"]
|
58["Segment<br>[3818, 3825, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
67[Solid2d]
|
67[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path29 [Path]
|
subgraph path29 [Path]
|
||||||
29["Path<br>[3369, 3470, 0]"]
|
29["Path<br>[3369, 3470, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
48["Segment<br>[3478, 3575, 0]"]
|
48["Segment<br>[3478, 3575, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
49["Segment<br>[3583, 3603, 0]"]
|
49["Segment<br>[3583, 3603, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
52["Segment<br>[3611, 3717, 0]"]
|
52["Segment<br>[3611, 3717, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
53["Segment<br>[3725, 3746, 0]"]
|
53["Segment<br>[3725, 3746, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
56["Segment<br>[3754, 3810, 0]"]
|
56["Segment<br>[3754, 3810, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
57["Segment<br>[3818, 3825, 0]"]
|
57["Segment<br>[3818, 3825, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
71[Solid2d]
|
71[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[734, 751, 0]"]
|
1["Plane<br>[734, 751, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["Plane<br>[2620, 2637, 0]"]
|
2["Plane<br>[2620, 2637, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
3["Plane<br>[2793, 2833, 0]"]
|
3["Plane<br>[2793, 2833, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
4["Plane<br>[3337, 3361, 0]"]
|
4["Plane<br>[3337, 3361, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
5["Plane<br>[3337, 3361, 0]"]
|
5["Plane<br>[3337, 3361, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
6["StartSketchOnPlane<br>[2779, 2834, 0]"]
|
6["StartSketchOnPlane<br>[2779, 2834, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
7["StartSketchOnFace<br>[1951, 1987, 0]"]
|
7["StartSketchOnFace<br>[1951, 1987, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
8["StartSketchOnFace<br>[2115, 2151, 0]"]
|
8["StartSketchOnFace<br>[2115, 2151, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
9["StartSketchOnFace<br>[1951, 1987, 0]"]
|
9["StartSketchOnFace<br>[1951, 1987, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
10["StartSketchOnFace<br>[1951, 1987, 0]"]
|
10["StartSketchOnFace<br>[1951, 1987, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
11["StartSketchOnFace<br>[2115, 2151, 0]"]
|
11["StartSketchOnFace<br>[2115, 2151, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
12["StartSketchOnFace<br>[1951, 1987, 0]"]
|
12["StartSketchOnFace<br>[1951, 1987, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
13["StartSketchOnFace<br>[2115, 2151, 0]"]
|
13["StartSketchOnFace<br>[2115, 2151, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
14["StartSketchOnFace<br>[2115, 2151, 0]"]
|
14["StartSketchOnFace<br>[2115, 2151, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
74["Sweep Extrusion<br>[1318, 1363, 0]"]
|
74["Sweep Extrusion<br>[1318, 1363, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
75["Sweep Extrusion<br>[2067, 2103, 0]"]
|
75["Sweep Extrusion<br>[2067, 2103, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
76["Sweep Extrusion<br>[2067, 2103, 0]"]
|
76["Sweep Extrusion<br>[2067, 2103, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
77["Sweep Extrusion<br>[2067, 2103, 0]"]
|
77["Sweep Extrusion<br>[2067, 2103, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
78["Sweep Extrusion<br>[2067, 2103, 0]"]
|
78["Sweep Extrusion<br>[2067, 2103, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
79["Sweep Extrusion<br>[2238, 2291, 0]"]
|
79["Sweep Extrusion<br>[2238, 2291, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
80["Sweep Extrusion<br>[2238, 2291, 0]"]
|
80["Sweep Extrusion<br>[2238, 2291, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
81["Sweep Extrusion<br>[2238, 2291, 0]"]
|
81["Sweep Extrusion<br>[2238, 2291, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
82["Sweep Extrusion<br>[2238, 2291, 0]"]
|
82["Sweep Extrusion<br>[2238, 2291, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
83["Sweep Extrusion<br>[2690, 2711, 0]"]
|
83["Sweep Extrusion<br>[2690, 2711, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
84["Sweep Extrusion<br>[2997, 3025, 0]"]
|
84["Sweep Extrusion<br>[2997, 3025, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
85["Sweep Extrusion<br>[3833, 3882, 0]"]
|
85["Sweep Extrusion<br>[3833, 3882, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
86["Sweep Extrusion<br>[3833, 3882, 0]"]
|
86["Sweep Extrusion<br>[3833, 3882, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
87["CompositeSolid Subtract<br>[3031, 3058, 0]"]
|
87["CompositeSolid Subtract<br>[3031, 3058, 0]"]
|
||||||
|
%% [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"]
|
||||||
@ -204,13 +314,21 @@ flowchart LR
|
|||||||
172["SweepEdge Adjacent"]
|
172["SweepEdge Adjacent"]
|
||||||
173["SweepEdge Adjacent"]
|
173["SweepEdge Adjacent"]
|
||||||
174["EdgeCut Chamfer<br>[1369, 1651, 0]"]
|
174["EdgeCut Chamfer<br>[1369, 1651, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
175["EdgeCut Chamfer<br>[1369, 1651, 0]"]
|
175["EdgeCut Chamfer<br>[1369, 1651, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
176["EdgeCut Chamfer<br>[1369, 1651, 0]"]
|
176["EdgeCut Chamfer<br>[1369, 1651, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
177["EdgeCut Chamfer<br>[1369, 1651, 0]"]
|
177["EdgeCut Chamfer<br>[1369, 1651, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
178["EdgeCut Chamfer<br>[2360, 2446, 0]"]
|
178["EdgeCut Chamfer<br>[2360, 2446, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
179["EdgeCut Chamfer<br>[2360, 2446, 0]"]
|
179["EdgeCut Chamfer<br>[2360, 2446, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
180["EdgeCut Chamfer<br>[2360, 2446, 0]"]
|
180["EdgeCut Chamfer<br>[2360, 2446, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
181["EdgeCut Chamfer<br>[2360, 2446, 0]"]
|
181["EdgeCut Chamfer<br>[2360, 2446, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
1 --- 15
|
1 --- 15
|
||||||
1 --- 16
|
1 --- 16
|
||||||
2 --- 25
|
2 --- 25
|
||||||
|
@ -47,9 +47,9 @@ flowchart LR
|
|||||||
1["Plane<br>[700, 717, 0]"]
|
1["Plane<br>[700, 717, 0]"]
|
||||||
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["StartSketchOnFace<br>[1606, 1642, 0]"]
|
2["StartSketchOnFace<br>[1606, 1642, 0]"]
|
||||||
%% Missing NodePath
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ExpressionStatementExpr, PipeBodyItem { index: 0 }]
|
||||||
3["StartSketchOnFace<br>[1606, 1642, 0]"]
|
3["StartSketchOnFace<br>[1606, 1642, 0]"]
|
||||||
%% Missing NodePath
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ExpressionStatementExpr, PipeBodyItem { index: 0 }]
|
||||||
24["Sweep Extrusion<br>[1494, 1529, 0]"]
|
24["Sweep Extrusion<br>[1494, 1529, 0]"]
|
||||||
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 12 }]
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 12 }]
|
||||||
25["Sweep Extrusion<br>[1734, 1767, 0]"]
|
25["Sweep Extrusion<br>[1734, 1767, 0]"]
|
||||||
@ -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"]
|
||||||
|
@ -73,21 +73,29 @@ flowchart LR
|
|||||||
3["Plane<br>[619, 652, 0]"]
|
3["Plane<br>[619, 652, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
4["StartSketchOnPlane<br>[605, 653, 0]"]
|
4["StartSketchOnPlane<br>[605, 653, 0]"]
|
||||||
%% Missing NodePath
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
5["StartSketchOnPlane<br>[605, 653, 0]"]
|
5["StartSketchOnPlane<br>[605, 653, 0]"]
|
||||||
%% Missing NodePath
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
6["StartSketchOnPlane<br>[605, 653, 0]"]
|
6["StartSketchOnPlane<br>[605, 653, 0]"]
|
||||||
%% Missing NodePath
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
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"]
|
||||||
|
@ -2,207 +2,374 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path13 [Path]
|
subgraph path13 [Path]
|
||||||
13["Path<br>[515, 566, 0]"]
|
13["Path<br>[515, 566, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
35["Segment<br>[574, 625, 0]"]
|
35["Segment<br>[574, 625, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
38["Segment<br>[633, 683, 0]"]
|
38["Segment<br>[633, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
53["Segment<br>[691, 742, 0]"]
|
53["Segment<br>[691, 742, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
69["Segment<br>[750, 757, 0]"]
|
69["Segment<br>[750, 757, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
73[Solid2d]
|
73[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path14 [Path]
|
subgraph path14 [Path]
|
||||||
14["Path<br>[515, 566, 0]"]
|
14["Path<br>[515, 566, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
25["Segment<br>[574, 625, 0]"]
|
25["Segment<br>[574, 625, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
48["Segment<br>[633, 683, 0]"]
|
48["Segment<br>[633, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
59["Segment<br>[691, 742, 0]"]
|
59["Segment<br>[691, 742, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
62["Segment<br>[750, 757, 0]"]
|
62["Segment<br>[750, 757, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
74[Solid2d]
|
74[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path15 [Path]
|
subgraph path15 [Path]
|
||||||
15["Path<br>[515, 566, 0]"]
|
15["Path<br>[515, 566, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
32["Segment<br>[574, 625, 0]"]
|
32["Segment<br>[574, 625, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
46["Segment<br>[633, 683, 0]"]
|
46["Segment<br>[633, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
52["Segment<br>[691, 742, 0]"]
|
52["Segment<br>[691, 742, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
65["Segment<br>[750, 757, 0]"]
|
65["Segment<br>[750, 757, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
75[Solid2d]
|
75[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path16 [Path]
|
subgraph path16 [Path]
|
||||||
16["Path<br>[515, 566, 0]"]
|
16["Path<br>[515, 566, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
26["Segment<br>[574, 625, 0]"]
|
26["Segment<br>[574, 625, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
45["Segment<br>[633, 683, 0]"]
|
45["Segment<br>[633, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
60["Segment<br>[691, 742, 0]"]
|
60["Segment<br>[691, 742, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
68["Segment<br>[750, 757, 0]"]
|
68["Segment<br>[750, 757, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
76[Solid2d]
|
76[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path17 [Path]
|
subgraph path17 [Path]
|
||||||
17["Path<br>[515, 566, 0]"]
|
17["Path<br>[515, 566, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
27["Segment<br>[574, 625, 0]"]
|
27["Segment<br>[574, 625, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
47["Segment<br>[633, 683, 0]"]
|
47["Segment<br>[633, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
50["Segment<br>[691, 742, 0]"]
|
50["Segment<br>[691, 742, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
64["Segment<br>[750, 757, 0]"]
|
64["Segment<br>[750, 757, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
77[Solid2d]
|
77[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path18 [Path]
|
subgraph path18 [Path]
|
||||||
18["Path<br>[515, 566, 0]"]
|
18["Path<br>[515, 566, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
34["Segment<br>[574, 625, 0]"]
|
34["Segment<br>[574, 625, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
43["Segment<br>[633, 683, 0]"]
|
43["Segment<br>[633, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
51["Segment<br>[691, 742, 0]"]
|
51["Segment<br>[691, 742, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
71["Segment<br>[750, 757, 0]"]
|
71["Segment<br>[750, 757, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
78[Solid2d]
|
78[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path19 [Path]
|
subgraph path19 [Path]
|
||||||
19["Path<br>[515, 566, 0]"]
|
19["Path<br>[515, 566, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
29["Segment<br>[574, 625, 0]"]
|
29["Segment<br>[574, 625, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
40["Segment<br>[633, 683, 0]"]
|
40["Segment<br>[633, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
55["Segment<br>[691, 742, 0]"]
|
55["Segment<br>[691, 742, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
67["Segment<br>[750, 757, 0]"]
|
67["Segment<br>[750, 757, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
79[Solid2d]
|
79[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path20 [Path]
|
subgraph path20 [Path]
|
||||||
20["Path<br>[515, 566, 0]"]
|
20["Path<br>[515, 566, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
28["Segment<br>[574, 625, 0]"]
|
28["Segment<br>[574, 625, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
44["Segment<br>[633, 683, 0]"]
|
44["Segment<br>[633, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
57["Segment<br>[691, 742, 0]"]
|
57["Segment<br>[691, 742, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
70["Segment<br>[750, 757, 0]"]
|
70["Segment<br>[750, 757, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
80[Solid2d]
|
80[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path21 [Path]
|
subgraph path21 [Path]
|
||||||
21["Path<br>[515, 566, 0]"]
|
21["Path<br>[515, 566, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
36["Segment<br>[574, 625, 0]"]
|
36["Segment<br>[574, 625, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
37["Segment<br>[633, 683, 0]"]
|
37["Segment<br>[633, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
54["Segment<br>[691, 742, 0]"]
|
54["Segment<br>[691, 742, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
72["Segment<br>[750, 757, 0]"]
|
72["Segment<br>[750, 757, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
81[Solid2d]
|
81[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path22 [Path]
|
subgraph path22 [Path]
|
||||||
22["Path<br>[515, 566, 0]"]
|
22["Path<br>[515, 566, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
31["Segment<br>[574, 625, 0]"]
|
31["Segment<br>[574, 625, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
41["Segment<br>[633, 683, 0]"]
|
41["Segment<br>[633, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
58["Segment<br>[691, 742, 0]"]
|
58["Segment<br>[691, 742, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
63["Segment<br>[750, 757, 0]"]
|
63["Segment<br>[750, 757, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
82[Solid2d]
|
82[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path23 [Path]
|
subgraph path23 [Path]
|
||||||
23["Path<br>[515, 566, 0]"]
|
23["Path<br>[515, 566, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
33["Segment<br>[574, 625, 0]"]
|
33["Segment<br>[574, 625, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
39["Segment<br>[633, 683, 0]"]
|
39["Segment<br>[633, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
56["Segment<br>[691, 742, 0]"]
|
56["Segment<br>[691, 742, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
61["Segment<br>[750, 757, 0]"]
|
61["Segment<br>[750, 757, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
83[Solid2d]
|
83[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path24 [Path]
|
subgraph path24 [Path]
|
||||||
24["Path<br>[515, 566, 0]"]
|
24["Path<br>[515, 566, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
30["Segment<br>[574, 625, 0]"]
|
30["Segment<br>[574, 625, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
42["Segment<br>[633, 683, 0]"]
|
42["Segment<br>[633, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
49["Segment<br>[691, 742, 0]"]
|
49["Segment<br>[691, 742, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
66["Segment<br>[750, 757, 0]"]
|
66["Segment<br>[750, 757, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
84[Solid2d]
|
84[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[490, 507, 0]"]
|
1["Plane<br>[490, 507, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["Plane<br>[490, 507, 0]"]
|
2["Plane<br>[490, 507, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
3["Plane<br>[490, 507, 0]"]
|
3["Plane<br>[490, 507, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
4["Plane<br>[490, 507, 0]"]
|
4["Plane<br>[490, 507, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
5["Plane<br>[490, 507, 0]"]
|
5["Plane<br>[490, 507, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
6["Plane<br>[490, 507, 0]"]
|
6["Plane<br>[490, 507, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
7["Plane<br>[490, 507, 0]"]
|
7["Plane<br>[490, 507, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
8["Plane<br>[490, 507, 0]"]
|
8["Plane<br>[490, 507, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
9["Plane<br>[490, 507, 0]"]
|
9["Plane<br>[490, 507, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
10["Plane<br>[490, 507, 0]"]
|
10["Plane<br>[490, 507, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
11["Plane<br>[490, 507, 0]"]
|
11["Plane<br>[490, 507, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
12["Plane<br>[490, 507, 0]"]
|
12["Plane<br>[490, 507, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
85["Sweep Extrusion<br>[771, 821, 0]"]
|
85["Sweep Extrusion<br>[771, 821, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
86["Sweep Extrusion<br>[771, 821, 0]"]
|
86["Sweep Extrusion<br>[771, 821, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
87["Sweep Extrusion<br>[771, 821, 0]"]
|
87["Sweep Extrusion<br>[771, 821, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
88["Sweep Extrusion<br>[771, 821, 0]"]
|
88["Sweep Extrusion<br>[771, 821, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
89["Sweep Extrusion<br>[771, 821, 0]"]
|
89["Sweep Extrusion<br>[771, 821, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
90["Sweep Extrusion<br>[771, 821, 0]"]
|
90["Sweep Extrusion<br>[771, 821, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
91["Sweep Extrusion<br>[771, 821, 0]"]
|
91["Sweep Extrusion<br>[771, 821, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
92["Sweep Extrusion<br>[771, 821, 0]"]
|
92["Sweep Extrusion<br>[771, 821, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
93["Sweep Extrusion<br>[771, 821, 0]"]
|
93["Sweep Extrusion<br>[771, 821, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
94["Sweep Extrusion<br>[771, 821, 0]"]
|
94["Sweep Extrusion<br>[771, 821, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
95["Sweep Extrusion<br>[771, 821, 0]"]
|
95["Sweep Extrusion<br>[771, 821, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
96["Sweep Extrusion<br>[771, 821, 0]"]
|
96["Sweep Extrusion<br>[771, 821, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
97["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
97["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg]
|
||||||
98["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
98["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg]
|
||||||
99["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
99["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg]
|
||||||
100["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
100["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg]
|
||||||
101["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
101["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg]
|
||||||
102["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
102["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg]
|
||||||
103["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
103["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg]
|
||||||
104["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
104["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg]
|
||||||
105["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
105["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg]
|
||||||
106["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
106["CompositeSolid Intersect<br>[2007, 2035, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, ReturnStatementArg]
|
||||||
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]
|
||||||
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"]
|
||||||
|
@ -2,155 +2,249 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path8 [Path]
|
subgraph path8 [Path]
|
||||||
8["Path<br>[305, 330, 0]"]
|
8["Path<br>[305, 330, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
27["Segment<br>[336, 402, 0]"]
|
27["Segment<br>[336, 402, 0]"]
|
||||||
28["Segment<br>[408, 507, 0]"]
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
29["Segment<br>[513, 630, 0]"]
|
28["Segment<br>[408, 498, 0]"]
|
||||||
30["Segment<br>[636, 721, 0]"]
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
31["Segment<br>[727, 734, 0]"]
|
29["Segment<br>[504, 621, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
|
30["Segment<br>[627, 712, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
|
31["Segment<br>[718, 725, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
68[Solid2d]
|
68[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path9 [Path]
|
subgraph path9 [Path]
|
||||||
9["Path<br>[1616, 1699, 0]"]
|
9["Path<br>[1607, 1690, 0]"]
|
||||||
33["Segment<br>[1616, 1699, 0]"]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
|
33["Segment<br>[1607, 1690, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
61[Solid2d]
|
61[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path10 [Path]
|
subgraph path10 [Path]
|
||||||
10["Path<br>[1616, 1699, 0]"]
|
10["Path<br>[1607, 1690, 0]"]
|
||||||
35["Segment<br>[1616, 1699, 0]"]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
|
35["Segment<br>[1607, 1690, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
64[Solid2d]
|
64[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path11 [Path]
|
subgraph path11 [Path]
|
||||||
11["Path<br>[1616, 1699, 0]"]
|
11["Path<br>[1607, 1690, 0]"]
|
||||||
34["Segment<br>[1616, 1699, 0]"]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
|
34["Segment<br>[1607, 1690, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
67[Solid2d]
|
67[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path12 [Path]
|
subgraph path12 [Path]
|
||||||
12["Path<br>[1616, 1699, 0]"]
|
12["Path<br>[1607, 1690, 0]"]
|
||||||
32["Segment<br>[1616, 1699, 0]"]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
|
32["Segment<br>[1607, 1690, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
72[Solid2d]
|
72[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path13 [Path]
|
subgraph path13 [Path]
|
||||||
13["Path<br>[1725, 1792, 0]"]
|
13["Path<br>[1716, 1783, 0]"]
|
||||||
37["Segment<br>[1725, 1792, 0]"]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
|
37["Segment<br>[1716, 1783, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
60[Solid2d]
|
60[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path14 [Path]
|
subgraph path14 [Path]
|
||||||
14["Path<br>[1725, 1792, 0]"]
|
14["Path<br>[1716, 1783, 0]"]
|
||||||
36["Segment<br>[1725, 1792, 0]"]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
|
36["Segment<br>[1716, 1783, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
65[Solid2d]
|
65[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path15 [Path]
|
subgraph path15 [Path]
|
||||||
15["Path<br>[1725, 1792, 0]"]
|
15["Path<br>[1716, 1783, 0]"]
|
||||||
39["Segment<br>[1725, 1792, 0]"]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
|
39["Segment<br>[1716, 1783, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
74[Solid2d]
|
74[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path16 [Path]
|
subgraph path16 [Path]
|
||||||
16["Path<br>[1725, 1792, 0]"]
|
16["Path<br>[1716, 1783, 0]"]
|
||||||
38["Segment<br>[1725, 1792, 0]"]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
|
38["Segment<br>[1716, 1783, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
76[Solid2d]
|
76[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path17 [Path]
|
subgraph path17 [Path]
|
||||||
17["Path<br>[2360, 2395, 0]"]
|
17["Path<br>[2351, 2386, 0]"]
|
||||||
40["Segment<br>[2401, 2467, 0]"]
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
41["Segment<br>[2473, 2572, 0]"]
|
40["Segment<br>[2392, 2458, 0]"]
|
||||||
42["Segment<br>[2578, 2695, 0]"]
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
43["Segment<br>[2701, 2786, 0]"]
|
41["Segment<br>[2464, 2554, 0]"]
|
||||||
44["Segment<br>[2792, 2799, 0]"]
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
|
42["Segment<br>[2560, 2677, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
|
43["Segment<br>[2683, 2768, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
|
44["Segment<br>[2774, 2781, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
73[Solid2d]
|
73[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path18 [Path]
|
subgraph path18 [Path]
|
||||||
18["Path<br>[2823, 2979, 0]"]
|
18["Path<br>[2805, 2961, 0]"]
|
||||||
45["Segment<br>[2823, 2979, 0]"]
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }, CallKwArg { index: 0 }]
|
||||||
|
45["Segment<br>[2805, 2961, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }, CallKwArg { index: 0 }]
|
||||||
70[Solid2d]
|
70[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path19 [Path]
|
subgraph path19 [Path]
|
||||||
19["Path<br>[3004, 3171, 0]"]
|
19["Path<br>[2986, 3153, 0]"]
|
||||||
46["Segment<br>[3004, 3171, 0]"]
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }, CallKwArg { index: 0 }]
|
||||||
|
46["Segment<br>[2986, 3153, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }, CallKwArg { index: 0 }]
|
||||||
66[Solid2d]
|
66[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path20 [Path]
|
subgraph path20 [Path]
|
||||||
20["Path<br>[3196, 3354, 0]"]
|
20["Path<br>[3178, 3336, 0]"]
|
||||||
47["Segment<br>[3196, 3354, 0]"]
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }, CallKwArg { index: 0 }]
|
||||||
|
47["Segment<br>[3178, 3336, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }, CallKwArg { index: 0 }]
|
||||||
69[Solid2d]
|
69[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path21 [Path]
|
subgraph path21 [Path]
|
||||||
21["Path<br>[3379, 3548, 0]"]
|
21["Path<br>[3361, 3530, 0]"]
|
||||||
48["Segment<br>[3379, 3548, 0]"]
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }, CallKwArg { index: 0 }]
|
||||||
|
48["Segment<br>[3361, 3530, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }, CallKwArg { index: 0 }]
|
||||||
71[Solid2d]
|
71[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path22 [Path]
|
subgraph path22 [Path]
|
||||||
22["Path<br>[3991, 4075, 0]"]
|
22["Path<br>[3973, 4057, 0]"]
|
||||||
49["Segment<br>[4081, 4169, 0]"]
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
50["Segment<br>[4175, 4296, 0]"]
|
49["Segment<br>[4063, 4151, 0]"]
|
||||||
51["Segment<br>[4302, 4419, 0]"]
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
52["Segment<br>[4425, 4510, 0]"]
|
50["Segment<br>[4157, 4278, 0]"]
|
||||||
53["Segment<br>[4516, 4523, 0]"]
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
|
51["Segment<br>[4284, 4401, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
|
52["Segment<br>[4407, 4492, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
|
53["Segment<br>[4498, 4505, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
58[Solid2d]
|
58[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path23 [Path]
|
subgraph path23 [Path]
|
||||||
23["Path<br>[4547, 4719, 0]"]
|
23["Path<br>[4529, 4701, 0]"]
|
||||||
54["Segment<br>[4547, 4719, 0]"]
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }, CallKwArg { index: 0 }]
|
||||||
|
54["Segment<br>[4529, 4701, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }, CallKwArg { index: 0 }]
|
||||||
62[Solid2d]
|
62[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path24 [Path]
|
subgraph path24 [Path]
|
||||||
24["Path<br>[4744, 4927, 0]"]
|
24["Path<br>[4726, 4909, 0]"]
|
||||||
55["Segment<br>[4744, 4927, 0]"]
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }, CallKwArg { index: 0 }]
|
||||||
|
55["Segment<br>[4726, 4909, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }, CallKwArg { index: 0 }]
|
||||||
59[Solid2d]
|
59[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path25 [Path]
|
subgraph path25 [Path]
|
||||||
25["Path<br>[4952, 5126, 0]"]
|
25["Path<br>[4934, 5108, 0]"]
|
||||||
56["Segment<br>[4952, 5126, 0]"]
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }, CallKwArg { index: 0 }]
|
||||||
|
56["Segment<br>[4934, 5108, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }, CallKwArg { index: 0 }]
|
||||||
75[Solid2d]
|
75[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path26 [Path]
|
subgraph path26 [Path]
|
||||||
26["Path<br>[5151, 5336, 0]"]
|
26["Path<br>[5133, 5318, 0]"]
|
||||||
57["Segment<br>[5151, 5336, 0]"]
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }, CallKwArg { index: 0 }]
|
||||||
|
57["Segment<br>[5133, 5318, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }, CallKwArg { index: 0 }]
|
||||||
63[Solid2d]
|
63[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[282, 299, 0]"]
|
1["Plane<br>[282, 299, 0]"]
|
||||||
2["Plane<br>[1585, 1608, 0]"]
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
3["Plane<br>[1585, 1608, 0]"]
|
2["Plane<br>[1576, 1599, 0]"]
|
||||||
4["Plane<br>[1585, 1608, 0]"]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
5["Plane<br>[1585, 1608, 0]"]
|
3["Plane<br>[1576, 1599, 0]"]
|
||||||
6["Plane<br>[2337, 2354, 0]"]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
7["StartSketchOnFace<br>[3948, 3985, 0]"]
|
4["Plane<br>[1576, 1599, 0]"]
|
||||||
77["Sweep Extrusion<br>[748, 783, 0]"]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
78["Sweep Extrusion<br>[1809, 1860, 0]"]
|
5["Plane<br>[1576, 1599, 0]"]
|
||||||
79["Sweep Extrusion<br>[1809, 1860, 0]"]
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
80["Sweep Extrusion<br>[1809, 1860, 0]"]
|
6["Plane<br>[2328, 2345, 0]"]
|
||||||
81["Sweep Extrusion<br>[1809, 1860, 0]"]
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
82["Sweep Extrusion<br>[3563, 3605, 0]"]
|
7["StartSketchOnFace<br>[3930, 3967, 0]"]
|
||||||
83["Sweep Extrusion<br>[5351, 5393, 0]"]
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
|
77["Sweep Extrusion<br>[739, 774, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
|
78["Sweep Extrusion<br>[1800, 1851, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
|
79["Sweep Extrusion<br>[1800, 1851, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
|
80["Sweep Extrusion<br>[1800, 1851, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
|
81["Sweep Extrusion<br>[1800, 1851, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
|
82["Sweep Extrusion<br>[3545, 3587, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
|
83["Sweep Extrusion<br>[5333, 5375, 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"]
|
||||||
@ -183,18 +277,30 @@ flowchart LR
|
|||||||
143["SweepEdge Adjacent"]
|
143["SweepEdge Adjacent"]
|
||||||
144["SweepEdge Adjacent"]
|
144["SweepEdge Adjacent"]
|
||||||
145["SweepEdge Adjacent"]
|
145["SweepEdge Adjacent"]
|
||||||
146["EdgeCut Fillet<br>[789, 1071, 0]"]
|
146["EdgeCut Fillet<br>[780, 1062, 0]"]
|
||||||
147["EdgeCut Fillet<br>[789, 1071, 0]"]
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
148["EdgeCut Fillet<br>[789, 1071, 0]"]
|
147["EdgeCut Fillet<br>[780, 1062, 0]"]
|
||||||
149["EdgeCut Fillet<br>[789, 1071, 0]"]
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
150["EdgeCut Fillet<br>[3611, 3893, 0]"]
|
148["EdgeCut Fillet<br>[780, 1062, 0]"]
|
||||||
151["EdgeCut Fillet<br>[3611, 3893, 0]"]
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
152["EdgeCut Fillet<br>[3611, 3893, 0]"]
|
149["EdgeCut Fillet<br>[780, 1062, 0]"]
|
||||||
153["EdgeCut Fillet<br>[3611, 3893, 0]"]
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
154["EdgeCut Fillet<br>[5399, 5681, 0]"]
|
150["EdgeCut Fillet<br>[3593, 3875, 0]"]
|
||||||
155["EdgeCut Fillet<br>[5399, 5681, 0]"]
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
156["EdgeCut Fillet<br>[5399, 5681, 0]"]
|
151["EdgeCut Fillet<br>[3593, 3875, 0]"]
|
||||||
157["EdgeCut Fillet<br>[5399, 5681, 0]"]
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
|
152["EdgeCut Fillet<br>[3593, 3875, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
|
153["EdgeCut Fillet<br>[3593, 3875, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
|
154["EdgeCut Fillet<br>[5381, 5663, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
|
155["EdgeCut Fillet<br>[5381, 5663, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
|
156["EdgeCut Fillet<br>[5381, 5663, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
|
157["EdgeCut Fillet<br>[5381, 5663, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
1 --- 8
|
1 --- 8
|
||||||
2 --- 9
|
2 --- 9
|
||||||
2 --- 16
|
2 --- 16
|
||||||
|
@ -2,181 +2,299 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path10 [Path]
|
subgraph path10 [Path]
|
||||||
10["Path<br>[753, 788, 0]"]
|
10["Path<br>[753, 788, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
31["Segment<br>[796, 822, 0]"]
|
31["Segment<br>[796, 822, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
37["Segment<br>[830, 891, 0]"]
|
37["Segment<br>[830, 891, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
40["Segment<br>[899, 958, 0]"]
|
40["Segment<br>[899, 958, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
45["Segment<br>[966, 1026, 0]"]
|
45["Segment<br>[966, 1026, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
49["Segment<br>[1034, 1093, 0]"]
|
49["Segment<br>[1034, 1093, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
end
|
end
|
||||||
subgraph path11 [Path]
|
subgraph path11 [Path]
|
||||||
11["Path<br>[753, 788, 0]"]
|
11["Path<br>[753, 788, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
32["Segment<br>[796, 822, 0]"]
|
32["Segment<br>[796, 822, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
38["Segment<br>[830, 891, 0]"]
|
38["Segment<br>[830, 891, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
41["Segment<br>[899, 958, 0]"]
|
41["Segment<br>[899, 958, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
43["Segment<br>[966, 1026, 0]"]
|
43["Segment<br>[966, 1026, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
50["Segment<br>[1034, 1093, 0]"]
|
50["Segment<br>[1034, 1093, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
end
|
end
|
||||||
subgraph path12 [Path]
|
subgraph path12 [Path]
|
||||||
12["Path<br>[753, 788, 0]"]
|
12["Path<br>[753, 788, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
34["Segment<br>[796, 822, 0]"]
|
34["Segment<br>[796, 822, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
35["Segment<br>[830, 891, 0]"]
|
35["Segment<br>[830, 891, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
39["Segment<br>[899, 958, 0]"]
|
39["Segment<br>[899, 958, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
44["Segment<br>[966, 1026, 0]"]
|
44["Segment<br>[966, 1026, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
47["Segment<br>[1034, 1093, 0]"]
|
47["Segment<br>[1034, 1093, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
end
|
end
|
||||||
subgraph path13 [Path]
|
subgraph path13 [Path]
|
||||||
13["Path<br>[753, 788, 0]"]
|
13["Path<br>[753, 788, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
33["Segment<br>[796, 822, 0]"]
|
33["Segment<br>[796, 822, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
36["Segment<br>[830, 891, 0]"]
|
36["Segment<br>[830, 891, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
42["Segment<br>[899, 958, 0]"]
|
42["Segment<br>[899, 958, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
46["Segment<br>[966, 1026, 0]"]
|
46["Segment<br>[966, 1026, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
48["Segment<br>[1034, 1093, 0]"]
|
48["Segment<br>[1034, 1093, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
end
|
end
|
||||||
subgraph path14 [Path]
|
subgraph path14 [Path]
|
||||||
14["Path<br>[1195, 1257, 0]"]
|
14["Path<br>[1195, 1257, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
52["Segment<br>[1195, 1257, 0]"]
|
52["Segment<br>[1195, 1257, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
87[Solid2d]
|
87[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path15 [Path]
|
subgraph path15 [Path]
|
||||||
15["Path<br>[1195, 1257, 0]"]
|
15["Path<br>[1195, 1257, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
51["Segment<br>[1195, 1257, 0]"]
|
51["Segment<br>[1195, 1257, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
89[Solid2d]
|
89[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path16 [Path]
|
subgraph path16 [Path]
|
||||||
16["Path<br>[1195, 1257, 0]"]
|
16["Path<br>[1195, 1257, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
54["Segment<br>[1195, 1257, 0]"]
|
54["Segment<br>[1195, 1257, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
94[Solid2d]
|
94[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path17 [Path]
|
subgraph path17 [Path]
|
||||||
17["Path<br>[1195, 1257, 0]"]
|
17["Path<br>[1195, 1257, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
53["Segment<br>[1195, 1257, 0]"]
|
53["Segment<br>[1195, 1257, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
99[Solid2d]
|
99[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path18 [Path]
|
subgraph path18 [Path]
|
||||||
18["Path<br>[1283, 1361, 0]"]
|
18["Path<br>[1283, 1361, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
56["Segment<br>[1283, 1361, 0]"]
|
56["Segment<br>[1283, 1361, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
84[Solid2d]
|
84[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path19 [Path]
|
subgraph path19 [Path]
|
||||||
19["Path<br>[1283, 1361, 0]"]
|
19["Path<br>[1283, 1361, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
58["Segment<br>[1283, 1361, 0]"]
|
58["Segment<br>[1283, 1361, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
86[Solid2d]
|
86[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path20 [Path]
|
subgraph path20 [Path]
|
||||||
20["Path<br>[1283, 1361, 0]"]
|
20["Path<br>[1283, 1361, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
55["Segment<br>[1283, 1361, 0]"]
|
55["Segment<br>[1283, 1361, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
91[Solid2d]
|
91[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path21 [Path]
|
subgraph path21 [Path]
|
||||||
21["Path<br>[1283, 1361, 0]"]
|
21["Path<br>[1283, 1361, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
57["Segment<br>[1283, 1361, 0]"]
|
57["Segment<br>[1283, 1361, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
100[Solid2d]
|
100[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path22 [Path]
|
subgraph path22 [Path]
|
||||||
22["Path<br>[1941, 1976, 0]"]
|
22["Path<br>[1941, 1976, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
59["Segment<br>[1982, 2016, 0]"]
|
59["Segment<br>[1982, 2016, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
60["Segment<br>[2022, 2061, 0]"]
|
60["Segment<br>[2022, 2061, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
61["Segment<br>[2067, 2105, 0]"]
|
61["Segment<br>[2067, 2105, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
62["Segment<br>[2111, 2150, 0]"]
|
62["Segment<br>[2111, 2150, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
63["Segment<br>[2156, 2190, 0]"]
|
63["Segment<br>[2156, 2190, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
64["Segment<br>[2196, 2239, 0]"]
|
64["Segment<br>[2196, 2239, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
65["Segment<br>[2245, 2278, 0]"]
|
65["Segment<br>[2245, 2278, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
66["Segment<br>[2284, 2323, 0]"]
|
66["Segment<br>[2284, 2323, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
67["Segment<br>[2329, 2368, 0]"]
|
67["Segment<br>[2329, 2368, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }]
|
||||||
68["Segment<br>[2374, 2413, 0]"]
|
68["Segment<br>[2374, 2413, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 11 }]
|
||||||
69["Segment<br>[2419, 2462, 0]"]
|
69["Segment<br>[2419, 2462, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 12 }]
|
||||||
70["Segment<br>[2468, 2519, 0]"]
|
70["Segment<br>[2468, 2519, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 13 }]
|
||||||
71["Segment<br>[2525, 2569, 0]"]
|
71["Segment<br>[2525, 2569, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 14 }]
|
||||||
72["Segment<br>[2575, 2614, 0]"]
|
72["Segment<br>[2575, 2614, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 15 }]
|
||||||
73["Segment<br>[2620, 2658, 0]"]
|
73["Segment<br>[2620, 2658, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 16 }]
|
||||||
74["Segment<br>[2664, 2729, 0]"]
|
74["Segment<br>[2664, 2729, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 17 }]
|
||||||
75["Segment<br>[2735, 2742, 0]"]
|
75["Segment<br>[2735, 2742, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 18 }]
|
||||||
88[Solid2d]
|
88[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path23 [Path]
|
subgraph path23 [Path]
|
||||||
23["Path<br>[2827, 2900, 0]"]
|
23["Path<br>[2827, 2900, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 19 }, CallKwArg { index: 0 }]
|
||||||
76["Segment<br>[2827, 2900, 0]"]
|
76["Segment<br>[2827, 2900, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 19 }, CallKwArg { index: 0 }]
|
||||||
93[Solid2d]
|
93[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path24 [Path]
|
subgraph path24 [Path]
|
||||||
24["Path<br>[2925, 2998, 0]"]
|
24["Path<br>[2925, 2998, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 20 }, CallKwArg { index: 0 }]
|
||||||
77["Segment<br>[2925, 2998, 0]"]
|
77["Segment<br>[2925, 2998, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 20 }, CallKwArg { index: 0 }]
|
||||||
92[Solid2d]
|
92[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path25 [Path]
|
subgraph path25 [Path]
|
||||||
25["Path<br>[3023, 3096, 0]"]
|
25["Path<br>[3023, 3096, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 21 }, CallKwArg { index: 0 }]
|
||||||
78["Segment<br>[3023, 3096, 0]"]
|
78["Segment<br>[3023, 3096, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 21 }, CallKwArg { index: 0 }]
|
||||||
96[Solid2d]
|
96[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path26 [Path]
|
subgraph path26 [Path]
|
||||||
26["Path<br>[3121, 3194, 0]"]
|
26["Path<br>[3121, 3194, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 22 }, CallKwArg { index: 0 }]
|
||||||
79["Segment<br>[3121, 3194, 0]"]
|
79["Segment<br>[3121, 3194, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 22 }, CallKwArg { index: 0 }]
|
||||||
85[Solid2d]
|
85[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path27 [Path]
|
subgraph path27 [Path]
|
||||||
27["Path<br>[3258, 3397, 0]"]
|
27["Path<br>[3258, 3397, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 23 }, CallKwArg { index: 0 }]
|
||||||
80["Segment<br>[3258, 3397, 0]"]
|
80["Segment<br>[3258, 3397, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 23 }, CallKwArg { index: 0 }]
|
||||||
98[Solid2d]
|
98[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path28 [Path]
|
subgraph path28 [Path]
|
||||||
28["Path<br>[3422, 3559, 0]"]
|
28["Path<br>[3422, 3559, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 24 }, CallKwArg { index: 0 }]
|
||||||
81["Segment<br>[3422, 3559, 0]"]
|
81["Segment<br>[3422, 3559, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 24 }, CallKwArg { index: 0 }]
|
||||||
90[Solid2d]
|
90[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path29 [Path]
|
subgraph path29 [Path]
|
||||||
29["Path<br>[3584, 3731, 0]"]
|
29["Path<br>[3584, 3731, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 25 }, CallKwArg { index: 0 }]
|
||||||
82["Segment<br>[3584, 3731, 0]"]
|
82["Segment<br>[3584, 3731, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 25 }, CallKwArg { index: 0 }]
|
||||||
97[Solid2d]
|
97[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path30 [Path]
|
subgraph path30 [Path]
|
||||||
30["Path<br>[3756, 3902, 0]"]
|
30["Path<br>[3756, 3902, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 26 }, CallKwArg { index: 0 }]
|
||||||
83["Segment<br>[3756, 3902, 0]"]
|
83["Segment<br>[3756, 3902, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 26 }, CallKwArg { index: 0 }]
|
||||||
95[Solid2d]
|
95[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[720, 745, 0]"]
|
1["Plane<br>[720, 745, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["Plane<br>[720, 745, 0]"]
|
2["Plane<br>[720, 745, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
3["Plane<br>[720, 745, 0]"]
|
3["Plane<br>[720, 745, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
4["Plane<br>[720, 745, 0]"]
|
4["Plane<br>[720, 745, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
5["Plane<br>[1170, 1187, 0]"]
|
5["Plane<br>[1170, 1187, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
6["Plane<br>[1170, 1187, 0]"]
|
6["Plane<br>[1170, 1187, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
7["Plane<br>[1170, 1187, 0]"]
|
7["Plane<br>[1170, 1187, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
8["Plane<br>[1170, 1187, 0]"]
|
8["Plane<br>[1170, 1187, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
9["Plane<br>[1918, 1935, 0]"]
|
9["Plane<br>[1918, 1935, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
101["Sweep Sweep<br>[1370, 1393, 0]"]
|
101["Sweep Sweep<br>[1370, 1393, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
102["Sweep Sweep<br>[1370, 1393, 0]"]
|
102["Sweep Sweep<br>[1370, 1393, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
103["Sweep Sweep<br>[1370, 1393, 0]"]
|
103["Sweep Sweep<br>[1370, 1393, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
104["Sweep Sweep<br>[1370, 1393, 0]"]
|
104["Sweep Sweep<br>[1370, 1393, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
105["Sweep Extrusion<br>[3955, 3984, 0]"]
|
105["Sweep Extrusion<br>[3955, 3984, 0]"]
|
||||||
|
%% [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"]
|
||||||
@ -218,9 +336,13 @@ flowchart LR
|
|||||||
174["SweepEdge Adjacent"]
|
174["SweepEdge Adjacent"]
|
||||||
175["SweepEdge Adjacent"]
|
175["SweepEdge Adjacent"]
|
||||||
176["EdgeCut Fillet<br>[3990, 4124, 0]"]
|
176["EdgeCut Fillet<br>[3990, 4124, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 28 }]
|
||||||
177["EdgeCut Fillet<br>[3990, 4124, 0]"]
|
177["EdgeCut Fillet<br>[3990, 4124, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 28 }]
|
||||||
178["EdgeCut Fillet<br>[4130, 4264, 0]"]
|
178["EdgeCut Fillet<br>[4130, 4264, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 29 }]
|
||||||
179["EdgeCut Fillet<br>[4130, 4264, 0]"]
|
179["EdgeCut Fillet<br>[4130, 4264, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 29 }]
|
||||||
1 --- 13
|
1 --- 13
|
||||||
2 --- 11
|
2 --- 11
|
||||||
3 --- 12
|
3 --- 12
|
||||||
|
@ -2,46 +2,73 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path6 [Path]
|
subgraph path6 [Path]
|
||||||
6["Path<br>[881, 966, 0]"]
|
6["Path<br>[881, 966, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
11["Segment<br>[881, 966, 0]"]
|
11["Segment<br>[881, 966, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
19[Solid2d]
|
19[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path7 [Path]
|
subgraph path7 [Path]
|
||||||
7["Path<br>[1203, 1248, 0]"]
|
7["Path<br>[1203, 1248, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
12["Segment<br>[1203, 1248, 0]"]
|
12["Segment<br>[1203, 1248, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
17[Solid2d]
|
17[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path8 [Path]
|
subgraph path8 [Path]
|
||||||
8["Path<br>[1431, 1485, 0]"]
|
8["Path<br>[1431, 1485, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
13["Segment<br>[1431, 1485, 0]"]
|
13["Segment<br>[1431, 1485, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
16[Solid2d]
|
16[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path9 [Path]
|
subgraph path9 [Path]
|
||||||
9["Path<br>[1648, 1705, 0]"]
|
9["Path<br>[1648, 1705, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
14["Segment<br>[1648, 1705, 0]"]
|
14["Segment<br>[1648, 1705, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
20[Solid2d]
|
20[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path10 [Path]
|
subgraph path10 [Path]
|
||||||
10["Path<br>[1840, 1885, 0]"]
|
10["Path<br>[1840, 1885, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
15["Segment<br>[1840, 1885, 0]"]
|
15["Segment<br>[1840, 1885, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
18[Solid2d]
|
18[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[858, 875, 0]"]
|
1["Plane<br>[858, 875, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["Plane<br>[1180, 1197, 0]"]
|
2["Plane<br>[1180, 1197, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
3["StartSketchOnFace<br>[1388, 1425, 0]"]
|
3["StartSketchOnFace<br>[1388, 1425, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
4["StartSketchOnFace<br>[1795, 1834, 0]"]
|
4["StartSketchOnFace<br>[1795, 1834, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
5["StartSketchOnFace<br>[1603, 1642, 0]"]
|
5["StartSketchOnFace<br>[1603, 1642, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
21["Sweep Extrusion<br>[1286, 1317, 0]"]
|
21["Sweep Extrusion<br>[1286, 1317, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
22["Sweep Extrusion<br>[1491, 1526, 0]"]
|
22["Sweep Extrusion<br>[1491, 1526, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
23["Sweep Extrusion<br>[1711, 1744, 0]"]
|
23["Sweep Extrusion<br>[1711, 1744, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
24["Sweep Extrusion<br>[1891, 1966, 0]"]
|
24["Sweep Extrusion<br>[1891, 1966, 0]"]
|
||||||
|
%% [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"]
|
||||||
|
@ -2,100 +2,175 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path6 [Path]
|
subgraph path6 [Path]
|
||||||
6["Path<br>[831, 869, 0]"]
|
6["Path<br>[831, 869, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
13["Segment<br>[877, 927, 0]"]
|
13["Segment<br>[877, 927, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
14["Segment<br>[935, 984, 0]"]
|
14["Segment<br>[935, 984, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
15["Segment<br>[992, 1044, 0]"]
|
15["Segment<br>[992, 1044, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
16["Segment<br>[1052, 1100, 0]"]
|
16["Segment<br>[1052, 1100, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
17["Segment<br>[1108, 1152, 0]"]
|
17["Segment<br>[1108, 1152, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
18["Segment<br>[1160, 1205, 0]"]
|
18["Segment<br>[1160, 1205, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
19["Segment<br>[1213, 1262, 0]"]
|
19["Segment<br>[1213, 1262, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
20["Segment<br>[1270, 1289, 0]"]
|
20["Segment<br>[1270, 1289, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
42[Solid2d]
|
42[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path7 [Path]
|
subgraph path7 [Path]
|
||||||
7["Path<br>[1992, 2046, 0]"]
|
7["Path<br>[1992, 2046, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
21["Segment<br>[2052, 2105, 0]"]
|
21["Segment<br>[2052, 2105, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
22["Segment<br>[2111, 2161, 0]"]
|
22["Segment<br>[2111, 2161, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
23["Segment<br>[2167, 2221, 0]"]
|
23["Segment<br>[2167, 2221, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
24["Segment<br>[2227, 2247, 0]"]
|
24["Segment<br>[2227, 2247, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
39[Solid2d]
|
39[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path8 [Path]
|
subgraph path8 [Path]
|
||||||
8["Path<br>[2271, 2434, 0]"]
|
8["Path<br>[2271, 2434, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }, CallKwArg { index: 0 }]
|
||||||
25["Segment<br>[2271, 2434, 0]"]
|
25["Segment<br>[2271, 2434, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }, CallKwArg { index: 0 }]
|
||||||
41[Solid2d]
|
41[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path9 [Path]
|
subgraph path9 [Path]
|
||||||
9["Path<br>[2816, 2871, 0]"]
|
9["Path<br>[2816, 2871, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
26["Segment<br>[2877, 2931, 0]"]
|
26["Segment<br>[2877, 2931, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
27["Segment<br>[2937, 2987, 0]"]
|
27["Segment<br>[2937, 2987, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
28["Segment<br>[2993, 3046, 0]"]
|
28["Segment<br>[2993, 3046, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
29["Segment<br>[3052, 3072, 0]"]
|
29["Segment<br>[3052, 3072, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
43[Solid2d]
|
43[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path10 [Path]
|
subgraph path10 [Path]
|
||||||
10["Path<br>[3096, 3262, 0]"]
|
10["Path<br>[3096, 3262, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }, CallKwArg { index: 0 }]
|
||||||
30["Segment<br>[3096, 3262, 0]"]
|
30["Segment<br>[3096, 3262, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }, CallKwArg { index: 0 }]
|
||||||
38[Solid2d]
|
38[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path11 [Path]
|
subgraph path11 [Path]
|
||||||
11["Path<br>[3842, 3883, 0]"]
|
11["Path<br>[3842, 3883, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
31["Segment<br>[3889, 3909, 0]"]
|
31["Segment<br>[3889, 3909, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
32["Segment<br>[3915, 3938, 0]"]
|
32["Segment<br>[3915, 3938, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
33["Segment<br>[3944, 3951, 0]"]
|
33["Segment<br>[3944, 3951, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
40[Solid2d]
|
40[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path12 [Path]
|
subgraph path12 [Path]
|
||||||
12["Path<br>[4066, 4106, 0]"]
|
12["Path<br>[4066, 4106, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
34["Segment<br>[4112, 4132, 0]"]
|
34["Segment<br>[4112, 4132, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
35["Segment<br>[4138, 4159, 0]"]
|
35["Segment<br>[4138, 4159, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
36["Segment<br>[4165, 4186, 0]"]
|
36["Segment<br>[4165, 4186, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
37["Segment<br>[4192, 4199, 0]"]
|
37["Segment<br>[4192, 4199, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
44[Solid2d]
|
44[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[796, 823, 0]"]
|
1["Plane<br>[796, 823, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["Plane<br>[1963, 1986, 0]"]
|
2["Plane<br>[1963, 1986, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
3["Plane<br>[2787, 2810, 0]"]
|
3["Plane<br>[2787, 2810, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
4["Plane<br>[3813, 3836, 0]"]
|
4["Plane<br>[3813, 3836, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
5["Plane<br>[4037, 4060, 0]"]
|
5["Plane<br>[4037, 4060, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
45["Sweep Extrusion<br>[1409, 1443, 0]"]
|
45["Sweep Extrusion<br>[1409, 1443, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
46["Sweep Extrusion<br>[2441, 2466, 0]"]
|
46["Sweep Extrusion<br>[2441, 2466, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
47["Sweep Extrusion<br>[3269, 3294, 0]"]
|
47["Sweep Extrusion<br>[3269, 3294, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
48["Sweep Extrusion<br>[3957, 3985, 0]"]
|
48["Sweep Extrusion<br>[3957, 3985, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
49["Sweep Extrusion<br>[4205, 4233, 0]"]
|
49["Sweep Extrusion<br>[4205, 4233, 0]"]
|
||||||
|
%% [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"]
|
||||||
@ -143,13 +218,21 @@ flowchart LR
|
|||||||
127["SweepEdge Adjacent"]
|
127["SweepEdge Adjacent"]
|
||||||
128["SweepEdge Adjacent"]
|
128["SweepEdge Adjacent"]
|
||||||
129["EdgeCut Fillet<br>[1449, 1708, 0]"]
|
129["EdgeCut Fillet<br>[1449, 1708, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
130["EdgeCut Fillet<br>[1449, 1708, 0]"]
|
130["EdgeCut Fillet<br>[1449, 1708, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
131["EdgeCut Fillet<br>[1449, 1708, 0]"]
|
131["EdgeCut Fillet<br>[1449, 1708, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
132["EdgeCut Fillet<br>[1449, 1708, 0]"]
|
132["EdgeCut Fillet<br>[1449, 1708, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
133["EdgeCut Fillet<br>[2472, 2617, 0]"]
|
133["EdgeCut Fillet<br>[2472, 2617, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
134["EdgeCut Fillet<br>[2472, 2617, 0]"]
|
134["EdgeCut Fillet<br>[2472, 2617, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
135["EdgeCut Fillet<br>[3300, 3445, 0]"]
|
135["EdgeCut Fillet<br>[3300, 3445, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
136["EdgeCut Fillet<br>[3300, 3445, 0]"]
|
136["EdgeCut Fillet<br>[3300, 3445, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
1 --- 6
|
1 --- 6
|
||||||
2 --- 7
|
2 --- 7
|
||||||
2 --- 8
|
2 --- 8
|
||||||
|
@ -2,112 +2,199 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path6 [Path]
|
subgraph path6 [Path]
|
||||||
6["Path<br>[1017, 1061, 0]"]
|
6["Path<br>[1017, 1061, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
16["Segment<br>[1069, 1109, 0]"]
|
16["Segment<br>[1069, 1109, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
17["Segment<br>[1117, 1163, 0]"]
|
17["Segment<br>[1117, 1163, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
23["Segment<br>[1171, 1212, 0]"]
|
23["Segment<br>[1171, 1212, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
25["Segment<br>[1220, 1285, 0]"]
|
25["Segment<br>[1220, 1285, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
29["Segment<br>[1293, 1300, 0]"]
|
29["Segment<br>[1293, 1300, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
55[Solid2d]
|
55[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path7 [Path]
|
subgraph path7 [Path]
|
||||||
7["Path<br>[1017, 1061, 0]"]
|
7["Path<br>[1017, 1061, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
15["Segment<br>[1069, 1109, 0]"]
|
15["Segment<br>[1069, 1109, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
18["Segment<br>[1117, 1163, 0]"]
|
18["Segment<br>[1117, 1163, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
21["Segment<br>[1171, 1212, 0]"]
|
21["Segment<br>[1171, 1212, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
28["Segment<br>[1220, 1285, 0]"]
|
28["Segment<br>[1220, 1285, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
32["Segment<br>[1293, 1300, 0]"]
|
32["Segment<br>[1293, 1300, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
56[Solid2d]
|
56[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path8 [Path]
|
subgraph path8 [Path]
|
||||||
8["Path<br>[1017, 1061, 0]"]
|
8["Path<br>[1017, 1061, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
13["Segment<br>[1069, 1109, 0]"]
|
13["Segment<br>[1069, 1109, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
20["Segment<br>[1117, 1163, 0]"]
|
20["Segment<br>[1117, 1163, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
22["Segment<br>[1171, 1212, 0]"]
|
22["Segment<br>[1171, 1212, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
26["Segment<br>[1220, 1285, 0]"]
|
26["Segment<br>[1220, 1285, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
31["Segment<br>[1293, 1300, 0]"]
|
31["Segment<br>[1293, 1300, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
58[Solid2d]
|
58[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path9 [Path]
|
subgraph path9 [Path]
|
||||||
9["Path<br>[1017, 1061, 0]"]
|
9["Path<br>[1017, 1061, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
14["Segment<br>[1069, 1109, 0]"]
|
14["Segment<br>[1069, 1109, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
19["Segment<br>[1117, 1163, 0]"]
|
19["Segment<br>[1117, 1163, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
24["Segment<br>[1171, 1212, 0]"]
|
24["Segment<br>[1171, 1212, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
27["Segment<br>[1220, 1285, 0]"]
|
27["Segment<br>[1220, 1285, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
30["Segment<br>[1293, 1300, 0]"]
|
30["Segment<br>[1293, 1300, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
59[Solid2d]
|
59[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path10 [Path]
|
subgraph path10 [Path]
|
||||||
10["Path<br>[1462, 1519, 0]"]
|
10["Path<br>[1462, 1519, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
33["Segment<br>[1525, 1557, 0]"]
|
33["Segment<br>[1525, 1557, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
34["Segment<br>[1563, 1600, 0]"]
|
34["Segment<br>[1563, 1600, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
35["Segment<br>[1606, 1639, 0]"]
|
35["Segment<br>[1606, 1639, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
36["Segment<br>[1645, 1712, 0]"]
|
36["Segment<br>[1645, 1712, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
37["Segment<br>[1718, 1725, 0]"]
|
37["Segment<br>[1718, 1725, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
57[Solid2d]
|
57[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path11 [Path]
|
subgraph path11 [Path]
|
||||||
11["Path<br>[2885, 2941, 0]"]
|
11["Path<br>[2885, 2941, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
38["Segment<br>[2947, 3006, 0]"]
|
38["Segment<br>[2947, 3006, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
39["Segment<br>[3012, 3047, 0]"]
|
39["Segment<br>[3012, 3047, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
40["Segment<br>[3053, 3086, 0]"]
|
40["Segment<br>[3053, 3086, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
41["Segment<br>[3092, 3151, 0]"]
|
41["Segment<br>[3092, 3151, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
42["Segment<br>[3157, 3193, 0]"]
|
42["Segment<br>[3157, 3193, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
43["Segment<br>[3199, 3223, 0]"]
|
43["Segment<br>[3199, 3223, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
44["Segment<br>[3229, 3236, 0]"]
|
44["Segment<br>[3229, 3236, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
60[Solid2d]
|
60[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path12 [Path]
|
subgraph path12 [Path]
|
||||||
12["Path<br>[3831, 3881, 0]"]
|
12["Path<br>[3831, 3881, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 25 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
45["Segment<br>[3887, 3937, 0]"]
|
45["Segment<br>[3887, 3937, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 25 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
46["Segment<br>[3943, 4009, 0]"]
|
46["Segment<br>[3943, 4009, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 25 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
47["Segment<br>[4015, 4066, 0]"]
|
47["Segment<br>[4015, 4066, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 25 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
48["Segment<br>[4072, 4137, 0]"]
|
48["Segment<br>[4072, 4137, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 25 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
49["Segment<br>[4143, 4196, 0]"]
|
49["Segment<br>[4143, 4196, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 25 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
50["Segment<br>[4202, 4269, 0]"]
|
50["Segment<br>[4202, 4269, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 25 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
51["Segment<br>[4275, 4349, 0]"]
|
51["Segment<br>[4275, 4349, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 25 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
52["Segment<br>[4355, 4423, 0]"]
|
52["Segment<br>[4355, 4423, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 25 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
53["Segment<br>[4429, 4436, 0]"]
|
53["Segment<br>[4429, 4436, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 25 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
54[Solid2d]
|
54[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[1391, 1408, 0]"]
|
1["Plane<br>[1391, 1408, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
2["Plane<br>[2782, 2824, 0]"]
|
2["Plane<br>[2782, 2824, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwUnlabeledArg]
|
||||||
3["Plane<br>[3757, 3783, 0]"]
|
3["Plane<br>[3757, 3783, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 24 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
4["StartSketchOnPlane<br>[2768, 2825, 0]"]
|
4["StartSketchOnPlane<br>[2768, 2825, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
5["StartSketchOnFace<br>[4593, 4632, 0]"]
|
5["StartSketchOnFace<br>[4593, 4632, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
61["Sweep Extrusion<br>[2459, 2509, 0]"]
|
61["Sweep Extrusion<br>[2459, 2509, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
62["Sweep Extrusion<br>[3270, 3314, 0]"]
|
62["Sweep Extrusion<br>[3270, 3314, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
63["Sweep Extrusion<br>[4492, 4534, 0]"]
|
63["Sweep Extrusion<br>[4492, 4534, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 26 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
64["Sweep Extrusion<br>[4812, 4862, 0]"]
|
64["Sweep Extrusion<br>[4812, 4862, 0]"]
|
||||||
|
%% [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"]
|
||||||
@ -157,9 +244,13 @@ flowchart LR
|
|||||||
141["SweepEdge Adjacent"]
|
141["SweepEdge Adjacent"]
|
||||||
142["SweepEdge Adjacent"]
|
142["SweepEdge Adjacent"]
|
||||||
143["EdgeCut Fillet<br>[2546, 2687, 0]"]
|
143["EdgeCut Fillet<br>[2546, 2687, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, ExpressionStatementExpr]
|
||||||
144["EdgeCut Fillet<br>[2546, 2687, 0]"]
|
144["EdgeCut Fillet<br>[2546, 2687, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, ExpressionStatementExpr]
|
||||||
145["EdgeCut Fillet<br>[3357, 3488, 0]"]
|
145["EdgeCut Fillet<br>[3357, 3488, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, ExpressionStatementExpr]
|
||||||
146["EdgeCut Fillet<br>[3357, 3488, 0]"]
|
146["EdgeCut Fillet<br>[3357, 3488, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, ExpressionStatementExpr]
|
||||||
1 --- 6
|
1 --- 6
|
||||||
1 --- 8
|
1 --- 8
|
||||||
1 --- 9
|
1 --- 9
|
||||||
|
@ -2,233 +2,423 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path16 [Path]
|
subgraph path16 [Path]
|
||||||
16["Path<br>[283, 327, 0]"]
|
16["Path<br>[283, 327, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
29["Segment<br>[333, 397, 0]"]
|
29["Segment<br>[333, 397, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
30["Segment<br>[403, 501, 0]"]
|
30["Segment<br>[403, 501, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
31["Segment<br>[507, 624, 0]"]
|
31["Segment<br>[507, 624, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
32["Segment<br>[630, 686, 0]"]
|
32["Segment<br>[630, 686, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
33["Segment<br>[692, 699, 0]"]
|
33["Segment<br>[692, 699, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
105[Solid2d]
|
105[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path17 [Path]
|
subgraph path17 [Path]
|
||||||
17["Path<br>[989, 1033, 0]"]
|
17["Path<br>[989, 1033, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
34["Segment<br>[1039, 1058, 0]"]
|
34["Segment<br>[1039, 1058, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
35["Segment<br>[1064, 1098, 0]"]
|
35["Segment<br>[1064, 1098, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
36["Segment<br>[1104, 1155, 0]"]
|
36["Segment<br>[1104, 1155, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
37["Segment<br>[1161, 1212, 0]"]
|
37["Segment<br>[1161, 1212, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
38["Segment<br>[1218, 1269, 0]"]
|
38["Segment<br>[1218, 1269, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
39["Segment<br>[1275, 1333, 0]"]
|
39["Segment<br>[1275, 1333, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
40["Segment<br>[1339, 1388, 0]"]
|
40["Segment<br>[1339, 1388, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
41["Segment<br>[1394, 1434, 0]"]
|
41["Segment<br>[1394, 1434, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
42["Segment<br>[1440, 1459, 0]"]
|
42["Segment<br>[1440, 1459, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }]
|
||||||
43["Segment<br>[1465, 1518, 0]"]
|
43["Segment<br>[1465, 1518, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 11 }]
|
||||||
44["Segment<br>[1524, 1573, 0]"]
|
44["Segment<br>[1524, 1573, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 12 }]
|
||||||
45["Segment<br>[1579, 1649, 0]"]
|
45["Segment<br>[1579, 1649, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 13 }]
|
||||||
46["Segment<br>[1655, 1706, 0]"]
|
46["Segment<br>[1655, 1706, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 14 }]
|
||||||
47["Segment<br>[1712, 1782, 0]"]
|
47["Segment<br>[1712, 1782, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 15 }]
|
||||||
48["Segment<br>[1788, 1839, 0]"]
|
48["Segment<br>[1788, 1839, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 16 }]
|
||||||
49["Segment<br>[1845, 1901, 0]"]
|
49["Segment<br>[1845, 1901, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 17 }]
|
||||||
50["Segment<br>[1907, 1914, 0]"]
|
50["Segment<br>[1907, 1914, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 18 }]
|
||||||
104[Solid2d]
|
104[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path18 [Path]
|
subgraph path18 [Path]
|
||||||
18["Path<br>[2181, 2240, 0]"]
|
18["Path<br>[2181, 2240, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
51["Segment<br>[2181, 2240, 0]"]
|
51["Segment<br>[2181, 2240, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
109[Solid2d]
|
109[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path19 [Path]
|
subgraph path19 [Path]
|
||||||
19["Path<br>[2346, 2376, 0]"]
|
19["Path<br>[2346, 2376, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
52["Segment<br>[2382, 2401, 0]"]
|
52["Segment<br>[2382, 2401, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
53["Segment<br>[2407, 2457, 0]"]
|
53["Segment<br>[2407, 2457, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
54["Segment<br>[2463, 2519, 0]"]
|
54["Segment<br>[2463, 2519, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
55["Segment<br>[2525, 2532, 0]"]
|
55["Segment<br>[2525, 2532, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
107[Solid2d]
|
107[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path20 [Path]
|
subgraph path20 [Path]
|
||||||
20["Path<br>[2770, 2801, 0]"]
|
20["Path<br>[2770, 2801, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
56["Segment<br>[2807, 2852, 0]"]
|
56["Segment<br>[2807, 2852, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
57["Segment<br>[2858, 2935, 0]"]
|
57["Segment<br>[2858, 2935, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
58["Segment<br>[2941, 2980, 0]"]
|
58["Segment<br>[2941, 2980, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
59["Segment<br>[2986, 3032, 0]"]
|
59["Segment<br>[2986, 3032, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
60["Segment<br>[3038, 3063, 0]"]
|
60["Segment<br>[3038, 3063, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
61["Segment<br>[3069, 3125, 0]"]
|
61["Segment<br>[3069, 3125, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
62["Segment<br>[3131, 3138, 0]"]
|
62["Segment<br>[3131, 3138, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
103[Solid2d]
|
103[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path21 [Path]
|
subgraph path21 [Path]
|
||||||
21["Path<br>[3218, 3245, 0]"]
|
21["Path<br>[3218, 3245, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
63["Segment<br>[3251, 3271, 0]"]
|
63["Segment<br>[3251, 3271, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
64["Segment<br>[3277, 3320, 0]"]
|
64["Segment<br>[3277, 3320, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
65["Segment<br>[3326, 3344, 0]"]
|
65["Segment<br>[3326, 3344, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
66["Segment<br>[3350, 3370, 0]"]
|
66["Segment<br>[3350, 3370, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
67["Segment<br>[3376, 3396, 0]"]
|
67["Segment<br>[3376, 3396, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
68["Segment<br>[3402, 3442, 0]"]
|
68["Segment<br>[3402, 3442, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
69["Segment<br>[3448, 3504, 0]"]
|
69["Segment<br>[3448, 3504, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
70["Segment<br>[3510, 3517, 0]"]
|
70["Segment<br>[3510, 3517, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
98[Solid2d]
|
98[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path22 [Path]
|
subgraph path22 [Path]
|
||||||
22["Path<br>[3621, 3680, 0]"]
|
22["Path<br>[3621, 3680, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
71["Segment<br>[3621, 3680, 0]"]
|
71["Segment<br>[3621, 3680, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
97[Solid2d]
|
97[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path23 [Path]
|
subgraph path23 [Path]
|
||||||
23["Path<br>[3704, 3741, 0]"]
|
23["Path<br>[3704, 3741, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
72["Segment<br>[3704, 3741, 0]"]
|
72["Segment<br>[3704, 3741, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
99[Solid2d]
|
99[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path24 [Path]
|
subgraph path24 [Path]
|
||||||
24["Path<br>[3885, 3923, 0]"]
|
24["Path<br>[3885, 3923, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
73["Segment<br>[3885, 3923, 0]"]
|
73["Segment<br>[3885, 3923, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
100[Solid2d]
|
100[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path25 [Path]
|
subgraph path25 [Path]
|
||||||
25["Path<br>[4201, 4239, 0]"]
|
25["Path<br>[4201, 4239, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
74["Segment<br>[4201, 4239, 0]"]
|
74["Segment<br>[4201, 4239, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
101[Solid2d]
|
101[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path26 [Path]
|
subgraph path26 [Path]
|
||||||
26["Path<br>[4491, 4543, 0]"]
|
26["Path<br>[4491, 4543, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
75["Segment<br>[4491, 4543, 0]"]
|
75["Segment<br>[4491, 4543, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
108[Solid2d]
|
108[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path27 [Path]
|
subgraph path27 [Path]
|
||||||
27["Path<br>[4788, 4832, 0]"]
|
27["Path<br>[4788, 4832, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
76["Segment<br>[4838, 4878, 0]"]
|
76["Segment<br>[4838, 4878, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
77["Segment<br>[4884, 4903, 0]"]
|
77["Segment<br>[4884, 4903, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
78["Segment<br>[4909, 4928, 0]"]
|
78["Segment<br>[4909, 4928, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
79["Segment<br>[4934, 4953, 0]"]
|
79["Segment<br>[4934, 4953, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
80["Segment<br>[4959, 4984, 0]"]
|
80["Segment<br>[4959, 4984, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
81["Segment<br>[4990, 5098, 0]"]
|
81["Segment<br>[4990, 5098, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
82["Segment<br>[5104, 5160, 0]"]
|
82["Segment<br>[5104, 5160, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
83["Segment<br>[5166, 5173, 0]"]
|
83["Segment<br>[5166, 5173, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
106[Solid2d]
|
106[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path28 [Path]
|
subgraph path28 [Path]
|
||||||
28["Path<br>[5303, 5332, 0]"]
|
28["Path<br>[5303, 5332, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
84["Segment<br>[5338, 5359, 0]"]
|
84["Segment<br>[5338, 5359, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
85["Segment<br>[5365, 5405, 0]"]
|
85["Segment<br>[5365, 5405, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
86["Segment<br>[5411, 5451, 0]"]
|
86["Segment<br>[5411, 5451, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
87["Segment<br>[5457, 5498, 0]"]
|
87["Segment<br>[5457, 5498, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
88["Segment<br>[5504, 5526, 0]"]
|
88["Segment<br>[5504, 5526, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
89["Segment<br>[5532, 5553, 0]"]
|
89["Segment<br>[5532, 5553, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
90["Segment<br>[5559, 5584, 0]"]
|
90["Segment<br>[5559, 5584, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
91["Segment<br>[5590, 5630, 0]"]
|
91["Segment<br>[5590, 5630, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
92["Segment<br>[5636, 5677, 0]"]
|
92["Segment<br>[5636, 5677, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }]
|
||||||
93["Segment<br>[5683, 5724, 0]"]
|
93["Segment<br>[5683, 5724, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 11 }]
|
||||||
94["Segment<br>[5730, 5751, 0]"]
|
94["Segment<br>[5730, 5751, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 12 }]
|
||||||
95["Segment<br>[5757, 5813, 0]"]
|
95["Segment<br>[5757, 5813, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 13 }]
|
||||||
96["Segment<br>[5819, 5826, 0]"]
|
96["Segment<br>[5819, 5826, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 14 }]
|
||||||
102[Solid2d]
|
102[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[260, 277, 0]"]
|
1["Plane<br>[260, 277, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["Plane<br>[960, 983, 0]"]
|
2["Plane<br>[960, 983, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
3["Plane<br>[2147, 2174, 0]"]
|
3["Plane<br>[2147, 2174, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
4["Plane<br>[2747, 2764, 0]"]
|
4["Plane<br>[2747, 2764, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
5["Plane<br>[3195, 3212, 0]"]
|
5["Plane<br>[3195, 3212, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
6["Plane<br>[3584, 3614, 0]"]
|
6["Plane<br>[3584, 3614, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
7["Plane<br>[4468, 4485, 0]"]
|
7["Plane<br>[4468, 4485, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
8["Plane<br>[4765, 4782, 0]"]
|
8["Plane<br>[4765, 4782, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
9["Plane<br>[5251, 5296, 0]"]
|
9["Plane<br>[5251, 5296, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
10["StartSketchOnPlane<br>[3570, 3615, 0]"]
|
10["StartSketchOnPlane<br>[3570, 3615, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
11["StartSketchOnPlane<br>[5237, 5297, 0]"]
|
11["StartSketchOnPlane<br>[5237, 5297, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
12["StartSketchOnPlane<br>[2133, 2175, 0]"]
|
12["StartSketchOnPlane<br>[2133, 2175, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
13["StartSketchOnFace<br>[4158, 4195, 0]"]
|
13["StartSketchOnFace<br>[4158, 4195, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
14["StartSketchOnFace<br>[2303, 2340, 0]"]
|
14["StartSketchOnFace<br>[2303, 2340, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
15["StartSketchOnFace<br>[3842, 3879, 0]"]
|
15["StartSketchOnFace<br>[3842, 3879, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
110["Sweep Revolve<br>[705, 735, 0]"]
|
110["Sweep Revolve<br>[705, 735, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
111["Sweep Extrusion<br>[1920, 1942, 0]"]
|
111["Sweep Extrusion<br>[1920, 1942, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 19 }]
|
||||||
112["Sweep Extrusion<br>[2255, 2289, 0]"]
|
112["Sweep Extrusion<br>[2255, 2289, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
113["Sweep Extrusion<br>[2681, 2716, 0]"]
|
113["Sweep Extrusion<br>[2681, 2716, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
114["Sweep Extrusion<br>[2681, 2716, 0]"]
|
114["Sweep Extrusion<br>[2681, 2716, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
115["Sweep Extrusion<br>[2681, 2716, 0]"]
|
115["Sweep Extrusion<br>[2681, 2716, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
116["Sweep Revolve<br>[3144, 3161, 0]"]
|
116["Sweep Revolve<br>[3144, 3161, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
117["Sweep Revolve<br>[3523, 3540, 0]"]
|
117["Sweep Revolve<br>[3523, 3540, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }]
|
||||||
118["Sweep Extrusion<br>[3757, 3791, 0]"]
|
118["Sweep Extrusion<br>[3757, 3791, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
119["Sweep Extrusion<br>[4072, 4107, 0]"]
|
119["Sweep Extrusion<br>[4072, 4107, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
120["Sweep Extrusion<br>[4072, 4107, 0]"]
|
120["Sweep Extrusion<br>[4072, 4107, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
121["Sweep Extrusion<br>[4072, 4107, 0]"]
|
121["Sweep Extrusion<br>[4072, 4107, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
122["Sweep Extrusion<br>[4072, 4107, 0]"]
|
122["Sweep Extrusion<br>[4072, 4107, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
123["Sweep Extrusion<br>[4072, 4107, 0]"]
|
123["Sweep Extrusion<br>[4072, 4107, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
124["Sweep Extrusion<br>[4072, 4107, 0]"]
|
124["Sweep Extrusion<br>[4072, 4107, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
125["Sweep Extrusion<br>[4072, 4107, 0]"]
|
125["Sweep Extrusion<br>[4072, 4107, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
126["Sweep Extrusion<br>[4072, 4107, 0]"]
|
126["Sweep Extrusion<br>[4072, 4107, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
127["Sweep Extrusion<br>[4388, 4423, 0]"]
|
127["Sweep Extrusion<br>[4388, 4423, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
128["Sweep Extrusion<br>[4388, 4423, 0]"]
|
128["Sweep Extrusion<br>[4388, 4423, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
129["Sweep Extrusion<br>[4388, 4423, 0]"]
|
129["Sweep Extrusion<br>[4388, 4423, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
130["Sweep Extrusion<br>[4388, 4423, 0]"]
|
130["Sweep Extrusion<br>[4388, 4423, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
131["Sweep Extrusion<br>[4639, 4680, 0]"]
|
131["Sweep Extrusion<br>[4639, 4680, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
132["Sweep Revolve<br>[5179, 5196, 0]"]
|
132["Sweep Revolve<br>[5179, 5196, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }]
|
||||||
133["Sweep Extrusion<br>[5840, 5885, 0]"]
|
133["Sweep Extrusion<br>[5840, 5885, 0]"]
|
||||||
|
%% [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"]
|
||||||
|
@ -2,76 +2,136 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path5 [Path]
|
subgraph path5 [Path]
|
||||||
5["Path<br>[603, 638, 0]"]
|
5["Path<br>[603, 638, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
9["Segment<br>[644, 667, 0]"]
|
9["Segment<br>[644, 667, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
10["Segment<br>[673, 699, 0]"]
|
10["Segment<br>[673, 699, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
11["Segment<br>[705, 729, 0]"]
|
11["Segment<br>[705, 729, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
12["Segment<br>[735, 742, 0]"]
|
12["Segment<br>[735, 742, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
30[Solid2d]
|
30[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path6 [Path]
|
subgraph path6 [Path]
|
||||||
6["Path<br>[877, 931, 0]"]
|
6["Path<br>[877, 931, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
13["Segment<br>[939, 980, 0]"]
|
13["Segment<br>[939, 980, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
14["Segment<br>[988, 1020, 0]"]
|
14["Segment<br>[988, 1020, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
15["Segment<br>[1028, 1069, 0]"]
|
15["Segment<br>[1028, 1069, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
16["Segment<br>[1077, 1102, 0]"]
|
16["Segment<br>[1077, 1102, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
17["Segment<br>[1110, 1152, 0]"]
|
17["Segment<br>[1110, 1152, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
18["Segment<br>[1160, 1193, 0]"]
|
18["Segment<br>[1160, 1193, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
19["Segment<br>[1201, 1243, 0]"]
|
19["Segment<br>[1201, 1243, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
20["Segment<br>[1251, 1258, 0]"]
|
20["Segment<br>[1251, 1258, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
32[Solid2d]
|
32[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path7 [Path]
|
subgraph path7 [Path]
|
||||||
7["Path<br>[1571, 1614, 0]"]
|
7["Path<br>[1571, 1614, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
21["Segment<br>[1620, 1653, 0]"]
|
21["Segment<br>[1620, 1653, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
22["Segment<br>[1659, 1701, 0]"]
|
22["Segment<br>[1659, 1701, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
23["Segment<br>[1707, 1751, 0]"]
|
23["Segment<br>[1707, 1751, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
24["Segment<br>[1757, 1764, 0]"]
|
24["Segment<br>[1757, 1764, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
31[Solid2d]
|
31[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path8 [Path]
|
subgraph path8 [Path]
|
||||||
8["Path<br>[1899, 1941, 0]"]
|
8["Path<br>[1899, 1941, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
25["Segment<br>[1947, 1981, 0]"]
|
25["Segment<br>[1947, 1981, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
26["Segment<br>[1987, 2030, 0]"]
|
26["Segment<br>[1987, 2030, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
27["Segment<br>[2036, 2079, 0]"]
|
27["Segment<br>[2036, 2079, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
28["Segment<br>[2085, 2092, 0]"]
|
28["Segment<br>[2085, 2092, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
29[Solid2d]
|
29[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[580, 597, 0]"]
|
1["Plane<br>[580, 597, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["Plane<br>[852, 869, 0]"]
|
2["Plane<br>[852, 869, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
3["Plane<br>[1548, 1565, 0]"]
|
3["Plane<br>[1548, 1565, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
4["Plane<br>[1876, 1893, 0]"]
|
4["Plane<br>[1876, 1893, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
33["Sweep Extrusion<br>[748, 771, 0]"]
|
33["Sweep Extrusion<br>[748, 771, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
34["Sweep Extrusion<br>[1266, 1289, 0]"]
|
34["Sweep Extrusion<br>[1266, 1289, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }]
|
||||||
35["Sweep Extrusion<br>[1770, 1793, 0]"]
|
35["Sweep Extrusion<br>[1770, 1793, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
36["Sweep Extrusion<br>[2098, 2121, 0]"]
|
36["Sweep Extrusion<br>[2098, 2121, 0]"]
|
||||||
|
%% [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"]
|
||||||
|
@ -2,125 +2,225 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path11 [Path]
|
subgraph path11 [Path]
|
||||||
11["Path<br>[941, 966, 0]"]
|
11["Path<br>[941, 966, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
18["Segment<br>[974, 996, 0]"]
|
18["Segment<br>[974, 996, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
20["Segment<br>[1004, 1048, 0]"]
|
20["Segment<br>[1004, 1048, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
23["Segment<br>[1056, 1083, 0]"]
|
23["Segment<br>[1056, 1083, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
24["Segment<br>[1091, 1135, 0]"]
|
24["Segment<br>[1091, 1135, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
26["Segment<br>[1143, 1150, 0]"]
|
26["Segment<br>[1143, 1150, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
76[Solid2d]
|
76[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path12 [Path]
|
subgraph path12 [Path]
|
||||||
12["Path<br>[941, 966, 0]"]
|
12["Path<br>[941, 966, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
19["Segment<br>[974, 996, 0]"]
|
19["Segment<br>[974, 996, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
21["Segment<br>[1004, 1048, 0]"]
|
21["Segment<br>[1004, 1048, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
22["Segment<br>[1056, 1083, 0]"]
|
22["Segment<br>[1056, 1083, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
25["Segment<br>[1091, 1135, 0]"]
|
25["Segment<br>[1091, 1135, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
27["Segment<br>[1143, 1150, 0]"]
|
27["Segment<br>[1143, 1150, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
77[Solid2d]
|
77[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path13 [Path]
|
subgraph path13 [Path]
|
||||||
13["Path<br>[2743, 2830, 0]"]
|
13["Path<br>[2743, 2830, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
29["Segment<br>[2838, 2917, 0]"]
|
29["Segment<br>[2838, 2917, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
30["Segment<br>[2925, 2990, 0]"]
|
30["Segment<br>[2925, 2990, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
32["Segment<br>[2998, 3080, 0]"]
|
32["Segment<br>[2998, 3080, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
34["Segment<br>[3088, 3134, 0]"]
|
34["Segment<br>[3088, 3134, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
37["Segment<br>[3142, 3221, 0]"]
|
37["Segment<br>[3142, 3221, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
38["Segment<br>[3229, 3296, 0]"]
|
38["Segment<br>[3229, 3296, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
40["Segment<br>[3304, 3383, 0]"]
|
40["Segment<br>[3304, 3383, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
43["Segment<br>[3391, 3437, 0]"]
|
43["Segment<br>[3391, 3437, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
45["Segment<br>[3445, 3527, 0]"]
|
45["Segment<br>[3445, 3527, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }]
|
||||||
46["Segment<br>[3535, 3603, 0]"]
|
46["Segment<br>[3535, 3603, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 11 }]
|
||||||
49["Segment<br>[3611, 3690, 0]"]
|
49["Segment<br>[3611, 3690, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 12 }]
|
||||||
50["Segment<br>[3698, 3763, 0]"]
|
50["Segment<br>[3698, 3763, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 13 }]
|
||||||
52["Segment<br>[3771, 3853, 0]"]
|
52["Segment<br>[3771, 3853, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 14 }]
|
||||||
54["Segment<br>[3861, 3929, 0]"]
|
54["Segment<br>[3861, 3929, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 15 }]
|
||||||
56["Segment<br>[3937, 4019, 0]"]
|
56["Segment<br>[3937, 4019, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 16 }]
|
||||||
59["Segment<br>[4027, 4076, 0]"]
|
59["Segment<br>[4027, 4076, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 17 }]
|
||||||
60["Segment<br>[4084, 4091, 0]"]
|
60["Segment<br>[4084, 4091, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 18 }]
|
||||||
71[Solid2d]
|
71[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path14 [Path]
|
subgraph path14 [Path]
|
||||||
14["Path<br>[2743, 2830, 0]"]
|
14["Path<br>[2743, 2830, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
28["Segment<br>[2838, 2917, 0]"]
|
28["Segment<br>[2838, 2917, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
31["Segment<br>[2925, 2990, 0]"]
|
31["Segment<br>[2925, 2990, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
33["Segment<br>[2998, 3080, 0]"]
|
33["Segment<br>[2998, 3080, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
35["Segment<br>[3088, 3134, 0]"]
|
35["Segment<br>[3088, 3134, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
36["Segment<br>[3142, 3221, 0]"]
|
36["Segment<br>[3142, 3221, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
39["Segment<br>[3229, 3296, 0]"]
|
39["Segment<br>[3229, 3296, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
41["Segment<br>[3304, 3383, 0]"]
|
41["Segment<br>[3304, 3383, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
42["Segment<br>[3391, 3437, 0]"]
|
42["Segment<br>[3391, 3437, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
44["Segment<br>[3445, 3527, 0]"]
|
44["Segment<br>[3445, 3527, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }]
|
||||||
47["Segment<br>[3535, 3603, 0]"]
|
47["Segment<br>[3535, 3603, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 11 }]
|
||||||
48["Segment<br>[3611, 3690, 0]"]
|
48["Segment<br>[3611, 3690, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 12 }]
|
||||||
51["Segment<br>[3698, 3763, 0]"]
|
51["Segment<br>[3698, 3763, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 13 }]
|
||||||
53["Segment<br>[3771, 3853, 0]"]
|
53["Segment<br>[3771, 3853, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 14 }]
|
||||||
55["Segment<br>[3861, 3929, 0]"]
|
55["Segment<br>[3861, 3929, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 15 }]
|
||||||
57["Segment<br>[3937, 4019, 0]"]
|
57["Segment<br>[3937, 4019, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 16 }]
|
||||||
58["Segment<br>[4027, 4076, 0]"]
|
58["Segment<br>[4027, 4076, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 17 }]
|
||||||
61["Segment<br>[4084, 4091, 0]"]
|
61["Segment<br>[4084, 4091, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 18 }]
|
||||||
74[Solid2d]
|
74[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path15 [Path]
|
subgraph path15 [Path]
|
||||||
15["Path<br>[4235, 4260, 0]"]
|
15["Path<br>[4235, 4260, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
62["Segment<br>[4268, 4309, 0]"]
|
62["Segment<br>[4268, 4309, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
64["Segment<br>[4317, 4358, 0]"]
|
64["Segment<br>[4317, 4358, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
66["Segment<br>[4366, 4419, 0]"]
|
66["Segment<br>[4366, 4419, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
68["Segment<br>[4427, 4448, 0]"]
|
68["Segment<br>[4427, 4448, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
72[Solid2d]
|
72[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path16 [Path]
|
subgraph path16 [Path]
|
||||||
16["Path<br>[4235, 4260, 0]"]
|
16["Path<br>[4235, 4260, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
63["Segment<br>[4268, 4309, 0]"]
|
63["Segment<br>[4268, 4309, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
65["Segment<br>[4317, 4358, 0]"]
|
65["Segment<br>[4317, 4358, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
67["Segment<br>[4366, 4419, 0]"]
|
67["Segment<br>[4366, 4419, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
69["Segment<br>[4427, 4448, 0]"]
|
69["Segment<br>[4427, 4448, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
73[Solid2d]
|
73[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path17 [Path]
|
subgraph path17 [Path]
|
||||||
17["Path<br>[4614, 4694, 0]"]
|
17["Path<br>[4614, 4694, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
70["Segment<br>[4614, 4694, 0]"]
|
70["Segment<br>[4614, 4694, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
75[Solid2d]
|
75[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[1236, 1274, 0]"]
|
1["Plane<br>[1236, 1274, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwUnlabeledArg, CallKwUnlabeledArg]
|
||||||
2["Plane<br>[1730, 1768, 0]"]
|
2["Plane<br>[1730, 1768, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwUnlabeledArg, CallKwUnlabeledArg]
|
||||||
3["Plane<br>[2715, 2735, 0]"]
|
3["Plane<br>[2715, 2735, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
4["Plane<br>[4207, 4227, 0]"]
|
4["Plane<br>[4207, 4227, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
5["Plane<br>[4591, 4608, 0]"]
|
5["Plane<br>[4591, 4608, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
6["Plane<br>[5583, 5618, 0]"]
|
6["Plane<br>[5583, 5618, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 25 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwUnlabeledArg]
|
||||||
7["StartSketchOnPlane<br>[4207, 4227, 0]"]
|
7["StartSketchOnPlane<br>[4207, 4227, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
8["StartSketchOnPlane<br>[913, 933, 0]"]
|
8["StartSketchOnPlane<br>[913, 933, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
9["StartSketchOnPlane<br>[2715, 2735, 0]"]
|
9["StartSketchOnPlane<br>[2715, 2735, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 19 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
10["StartSketchOnPlane<br>[913, 933, 0]"]
|
10["StartSketchOnPlane<br>[913, 933, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
78["Sweep Extrusion<br>[1223, 1317, 0]"]
|
78["Sweep Extrusion<br>[1223, 1317, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
79["Sweep Revolve<br>[1717, 1799, 0]"]
|
79["Sweep Revolve<br>[1717, 1799, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
80["Sweep Extrusion<br>[5047, 5089, 0]"]
|
80["Sweep Extrusion<br>[5047, 5089, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
81["Sweep Extrusion<br>[5701, 5752, 0]"]
|
81["Sweep Extrusion<br>[5701, 5752, 0]"]
|
||||||
|
%% [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"]
|
||||||
@ -158,13 +258,21 @@ flowchart LR
|
|||||||
142["SweepEdge Adjacent"]
|
142["SweepEdge Adjacent"]
|
||||||
143["SweepEdge Adjacent"]
|
143["SweepEdge Adjacent"]
|
||||||
144["EdgeCut Fillet<br>[5152, 5491, 0]"]
|
144["EdgeCut Fillet<br>[5152, 5491, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 24 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
145["EdgeCut Fillet<br>[5152, 5491, 0]"]
|
145["EdgeCut Fillet<br>[5152, 5491, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 24 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
146["EdgeCut Fillet<br>[5152, 5491, 0]"]
|
146["EdgeCut Fillet<br>[5152, 5491, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 24 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
147["EdgeCut Fillet<br>[5152, 5491, 0]"]
|
147["EdgeCut Fillet<br>[5152, 5491, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 24 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
148["EdgeCut Fillet<br>[5816, 6160, 0]"]
|
148["EdgeCut Fillet<br>[5816, 6160, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
149["EdgeCut Fillet<br>[5816, 6160, 0]"]
|
149["EdgeCut Fillet<br>[5816, 6160, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
150["EdgeCut Fillet<br>[5816, 6160, 0]"]
|
150["EdgeCut Fillet<br>[5816, 6160, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
151["EdgeCut Fillet<br>[5816, 6160, 0]"]
|
151["EdgeCut Fillet<br>[5816, 6160, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
1 <--x 8
|
1 <--x 8
|
||||||
1 --- 12
|
1 --- 12
|
||||||
2 <--x 10
|
2 <--x 10
|
||||||
|
@ -2,42 +2,74 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path5 [Path]
|
subgraph path5 [Path]
|
||||||
5["Path<br>[818, 843, 0]"]
|
5["Path<br>[818, 843, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
7["Segment<br>[851, 873, 0]"]
|
7["Segment<br>[851, 873, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
9["Segment<br>[881, 925, 0]"]
|
9["Segment<br>[881, 925, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
12["Segment<br>[933, 960, 0]"]
|
12["Segment<br>[933, 960, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
13["Segment<br>[968, 1012, 0]"]
|
13["Segment<br>[968, 1012, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
15["Segment<br>[1020, 1027, 0]"]
|
15["Segment<br>[1020, 1027, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
17[Solid2d]
|
17[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path6 [Path]
|
subgraph path6 [Path]
|
||||||
6["Path<br>[818, 843, 0]"]
|
6["Path<br>[818, 843, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
8["Segment<br>[851, 873, 0]"]
|
8["Segment<br>[851, 873, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
10["Segment<br>[881, 925, 0]"]
|
10["Segment<br>[881, 925, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
11["Segment<br>[933, 960, 0]"]
|
11["Segment<br>[933, 960, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
14["Segment<br>[968, 1012, 0]"]
|
14["Segment<br>[968, 1012, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
16["Segment<br>[1020, 1027, 0]"]
|
16["Segment<br>[1020, 1027, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
18[Solid2d]
|
18[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[1113, 1151, 0]"]
|
1["Plane<br>[1113, 1151, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwUnlabeledArg, CallKwUnlabeledArg]
|
||||||
2["Plane<br>[1607, 1645, 0]"]
|
2["Plane<br>[1607, 1645, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwUnlabeledArg, CallKwUnlabeledArg]
|
||||||
3["StartSketchOnPlane<br>[790, 810, 0]"]
|
3["StartSketchOnPlane<br>[790, 810, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
4["StartSketchOnPlane<br>[790, 810, 0]"]
|
4["StartSketchOnPlane<br>[790, 810, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
19["Sweep Extrusion<br>[1100, 1194, 0]"]
|
19["Sweep Extrusion<br>[1100, 1194, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
20["Sweep Revolve<br>[1594, 1676, 0]"]
|
20["Sweep Revolve<br>[1594, 1676, 0]"]
|
||||||
|
%% [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"]
|
||||||
|
@ -2,185 +2,339 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path13 [Path]
|
subgraph path13 [Path]
|
||||||
13["Path<br>[1206, 1252, 0]"]
|
13["Path<br>[1206, 1252, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
22["Segment<br>[1260, 1282, 0]"]
|
22["Segment<br>[1260, 1282, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
25["Segment<br>[1290, 1320, 0]"]
|
25["Segment<br>[1290, 1320, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
26["Segment<br>[1328, 1372, 0]"]
|
26["Segment<br>[1328, 1372, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
28["Segment<br>[1380, 1407, 0]"]
|
28["Segment<br>[1380, 1407, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
30["Segment<br>[1415, 1459, 0]"]
|
30["Segment<br>[1415, 1459, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
32["Segment<br>[1467, 1474, 0]"]
|
32["Segment<br>[1467, 1474, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
80[Solid2d]
|
80[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path14 [Path]
|
subgraph path14 [Path]
|
||||||
14["Path<br>[1206, 1252, 0]"]
|
14["Path<br>[1206, 1252, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
23["Segment<br>[1260, 1282, 0]"]
|
23["Segment<br>[1260, 1282, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
24["Segment<br>[1290, 1320, 0]"]
|
24["Segment<br>[1290, 1320, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
27["Segment<br>[1328, 1372, 0]"]
|
27["Segment<br>[1328, 1372, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
29["Segment<br>[1380, 1407, 0]"]
|
29["Segment<br>[1380, 1407, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
31["Segment<br>[1415, 1459, 0]"]
|
31["Segment<br>[1415, 1459, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
33["Segment<br>[1467, 1474, 0]"]
|
33["Segment<br>[1467, 1474, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
83[Solid2d]
|
83[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path15 [Path]
|
subgraph path15 [Path]
|
||||||
15["Path<br>[2515, 2603, 0]"]
|
15["Path<br>[2515, 2603, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 29 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
34["Segment<br>[2609, 2673, 0]"]
|
34["Segment<br>[2609, 2673, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 29 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
35["Segment<br>[2679, 2743, 0]"]
|
35["Segment<br>[2679, 2743, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 29 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
36["Segment<br>[2749, 2802, 0]"]
|
36["Segment<br>[2749, 2802, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 29 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
37["Segment<br>[2808, 2829, 0]"]
|
37["Segment<br>[2808, 2829, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 29 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
79[Solid2d]
|
79[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path16 [Path]
|
subgraph path16 [Path]
|
||||||
16["Path<br>[3160, 3326, 0]"]
|
16["Path<br>[3160, 3326, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 30 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
38["Segment<br>[3160, 3326, 0]"]
|
38["Segment<br>[3160, 3326, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 30 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
82[Solid2d]
|
82[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path17 [Path]
|
subgraph path17 [Path]
|
||||||
17["Path<br>[4610, 4635, 0]"]
|
17["Path<br>[4610, 4635, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 34 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
39["Segment<br>[4641, 4713, 0]"]
|
39["Segment<br>[4641, 4713, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 34 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
40["Segment<br>[4719, 4792, 0]"]
|
40["Segment<br>[4719, 4792, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 34 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
41["Segment<br>[4798, 4851, 0]"]
|
41["Segment<br>[4798, 4851, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 34 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
42["Segment<br>[4857, 4878, 0]"]
|
42["Segment<br>[4857, 4878, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 34 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
75[Solid2d]
|
75[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path18 [Path]
|
subgraph path18 [Path]
|
||||||
18["Path<br>[5346, 5371, 0]"]
|
18["Path<br>[5346, 5371, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
43["Segment<br>[5431, 5474, 0]"]
|
43["Segment<br>[5431, 5474, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
50["Segment<br>[5482, 5602, 0]"]
|
50["Segment<br>[5482, 5602, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
53["Segment<br>[5665, 5714, 0]"]
|
53["Segment<br>[5665, 5714, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
57["Segment<br>[5722, 5747, 0]"]
|
57["Segment<br>[5722, 5747, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
60["Segment<br>[5755, 5798, 0]"]
|
60["Segment<br>[5755, 5798, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
63["Segment<br>[5806, 5831, 0]"]
|
63["Segment<br>[5806, 5831, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
69["Segment<br>[5839, 5883, 0]"]
|
69["Segment<br>[5839, 5883, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
71["Segment<br>[5891, 5898, 0]"]
|
71["Segment<br>[5891, 5898, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
76[Solid2d]
|
76[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path19 [Path]
|
subgraph path19 [Path]
|
||||||
19["Path<br>[5346, 5371, 0]"]
|
19["Path<br>[5346, 5371, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
46["Segment<br>[5431, 5474, 0]"]
|
46["Segment<br>[5431, 5474, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
48["Segment<br>[5482, 5602, 0]"]
|
48["Segment<br>[5482, 5602, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
54["Segment<br>[5665, 5714, 0]"]
|
54["Segment<br>[5665, 5714, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
56["Segment<br>[5722, 5747, 0]"]
|
56["Segment<br>[5722, 5747, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
59["Segment<br>[5755, 5798, 0]"]
|
59["Segment<br>[5755, 5798, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
66["Segment<br>[5806, 5831, 0]"]
|
66["Segment<br>[5806, 5831, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
68["Segment<br>[5839, 5883, 0]"]
|
68["Segment<br>[5839, 5883, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
74["Segment<br>[5891, 5898, 0]"]
|
74["Segment<br>[5891, 5898, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
77[Solid2d]
|
77[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path20 [Path]
|
subgraph path20 [Path]
|
||||||
20["Path<br>[5346, 5371, 0]"]
|
20["Path<br>[5346, 5371, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
44["Segment<br>[5431, 5474, 0]"]
|
44["Segment<br>[5431, 5474, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
47["Segment<br>[5482, 5602, 0]"]
|
47["Segment<br>[5482, 5602, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
52["Segment<br>[5665, 5714, 0]"]
|
52["Segment<br>[5665, 5714, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
55["Segment<br>[5722, 5747, 0]"]
|
55["Segment<br>[5722, 5747, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
62["Segment<br>[5755, 5798, 0]"]
|
62["Segment<br>[5755, 5798, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
65["Segment<br>[5806, 5831, 0]"]
|
65["Segment<br>[5806, 5831, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
70["Segment<br>[5839, 5883, 0]"]
|
70["Segment<br>[5839, 5883, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
73["Segment<br>[5891, 5898, 0]"]
|
73["Segment<br>[5891, 5898, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
78[Solid2d]
|
78[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path21 [Path]
|
subgraph path21 [Path]
|
||||||
21["Path<br>[5346, 5371, 0]"]
|
21["Path<br>[5346, 5371, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
45["Segment<br>[5431, 5474, 0]"]
|
45["Segment<br>[5431, 5474, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
49["Segment<br>[5482, 5602, 0]"]
|
49["Segment<br>[5482, 5602, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
51["Segment<br>[5665, 5714, 0]"]
|
51["Segment<br>[5665, 5714, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
58["Segment<br>[5722, 5747, 0]"]
|
58["Segment<br>[5722, 5747, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
61["Segment<br>[5755, 5798, 0]"]
|
61["Segment<br>[5755, 5798, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
64["Segment<br>[5806, 5831, 0]"]
|
64["Segment<br>[5806, 5831, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
67["Segment<br>[5839, 5883, 0]"]
|
67["Segment<br>[5839, 5883, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
72["Segment<br>[5891, 5898, 0]"]
|
72["Segment<br>[5891, 5898, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
81[Solid2d]
|
81[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[1560, 1607, 0]"]
|
1["Plane<br>[1560, 1607, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 24 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwUnlabeledArg, CallKwUnlabeledArg]
|
||||||
2["Plane<br>[2139, 2186, 0]"]
|
2["Plane<br>[2139, 2186, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwUnlabeledArg, CallKwUnlabeledArg]
|
||||||
3["Plane<br>[2492, 2509, 0]"]
|
3["Plane<br>[2492, 2509, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 29 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
4["Plane<br>[4571, 4603, 0]"]
|
4["Plane<br>[4571, 4603, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 34 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
5["Plane<br>[5318, 5338, 0]"]
|
5["Plane<br>[5318, 5338, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
6["Plane<br>[5318, 5338, 0]"]
|
6["Plane<br>[5318, 5338, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
7["Plane<br>[5318, 5338, 0]"]
|
7["Plane<br>[5318, 5338, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
8["Plane<br>[5318, 5338, 0]"]
|
8["Plane<br>[5318, 5338, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 35 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
9["StartSketchOnPlane<br>[1178, 1198, 0]"]
|
9["StartSketchOnPlane<br>[1178, 1198, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
10["StartSketchOnPlane<br>[1178, 1198, 0]"]
|
10["StartSketchOnPlane<br>[1178, 1198, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
11["StartSketchOnPlane<br>[4557, 4604, 0]"]
|
11["StartSketchOnPlane<br>[4557, 4604, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 34 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
12["StartSketchOnFace<br>[3112, 3154, 0]"]
|
12["StartSketchOnFace<br>[3112, 3154, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 30 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
84["Sweep Extrusion<br>[1547, 1650, 0]"]
|
84["Sweep Extrusion<br>[1547, 1650, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 24 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
85["Sweep Revolve<br>[2126, 2217, 0]"]
|
85["Sweep Revolve<br>[2126, 2217, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
86["Sweep Extrusion<br>[2835, 2859, 0]"]
|
86["Sweep Extrusion<br>[2835, 2859, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 29 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
87["Sweep Extrusion<br>[3548, 3575, 0]"]
|
87["Sweep Extrusion<br>[3548, 3575, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 30 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
88["Sweep Extrusion<br>[3548, 3575, 0]"]
|
88["Sweep Extrusion<br>[3548, 3575, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 30 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
89["Sweep Extrusion<br>[3548, 3575, 0]"]
|
89["Sweep Extrusion<br>[3548, 3575, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 30 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
90["Sweep Extrusion<br>[3548, 3575, 0]"]
|
90["Sweep Extrusion<br>[3548, 3575, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 30 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
91["Sweep Extrusion<br>[4884, 4928, 0]"]
|
91["Sweep Extrusion<br>[4884, 4928, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 34 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
92["Sweep Extrusion<br>[6536, 6648, 0]"]
|
92["Sweep Extrusion<br>[6536, 6648, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 39 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
93["Sweep Extrusion<br>[6714, 6828, 0]"]
|
93["Sweep Extrusion<br>[6714, 6828, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 40 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
94["Sweep Revolve<br>[7654, 7709, 0]"]
|
94["Sweep Revolve<br>[7654, 7709, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 44 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
95["Sweep Revolve<br>[7771, 7825, 0]"]
|
95["Sweep Revolve<br>[7771, 7825, 0]"]
|
||||||
|
%% [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"]
|
||||||
@ -284,13 +438,21 @@ flowchart LR
|
|||||||
264["SweepEdge Adjacent"]
|
264["SweepEdge Adjacent"]
|
||||||
265["SweepEdge Adjacent"]
|
265["SweepEdge Adjacent"]
|
||||||
266["EdgeCut Fillet<br>[2865, 3095, 0]"]
|
266["EdgeCut Fillet<br>[2865, 3095, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 29 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
267["EdgeCut Fillet<br>[2865, 3095, 0]"]
|
267["EdgeCut Fillet<br>[2865, 3095, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 29 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
268["EdgeCut Fillet<br>[2865, 3095, 0]"]
|
268["EdgeCut Fillet<br>[2865, 3095, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 29 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
269["EdgeCut Fillet<br>[2865, 3095, 0]"]
|
269["EdgeCut Fillet<br>[2865, 3095, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 29 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
270["EdgeCut Fillet<br>[4934, 5167, 0]"]
|
270["EdgeCut Fillet<br>[4934, 5167, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 34 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
271["EdgeCut Fillet<br>[4934, 5167, 0]"]
|
271["EdgeCut Fillet<br>[4934, 5167, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 34 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
272["EdgeCut Fillet<br>[4934, 5167, 0]"]
|
272["EdgeCut Fillet<br>[4934, 5167, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 34 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
273["EdgeCut Fillet<br>[4934, 5167, 0]"]
|
273["EdgeCut Fillet<br>[4934, 5167, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 34 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
1 <--x 10
|
1 <--x 10
|
||||||
1 --- 14
|
1 --- 14
|
||||||
2 <--x 9
|
2 <--x 9
|
||||||
|
@ -2,89 +2,159 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path9 [Path]
|
subgraph path9 [Path]
|
||||||
9["Path<br>[947, 993, 0]"]
|
9["Path<br>[947, 993, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
14["Segment<br>[1001, 1023, 0]"]
|
14["Segment<br>[1001, 1023, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
17["Segment<br>[1031, 1061, 0]"]
|
17["Segment<br>[1031, 1061, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
18["Segment<br>[1069, 1113, 0]"]
|
18["Segment<br>[1069, 1113, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
20["Segment<br>[1121, 1148, 0]"]
|
20["Segment<br>[1121, 1148, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
22["Segment<br>[1156, 1200, 0]"]
|
22["Segment<br>[1156, 1200, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
24["Segment<br>[1208, 1215, 0]"]
|
24["Segment<br>[1208, 1215, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
37[Solid2d]
|
37[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path10 [Path]
|
subgraph path10 [Path]
|
||||||
10["Path<br>[947, 993, 0]"]
|
10["Path<br>[947, 993, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
15["Segment<br>[1001, 1023, 0]"]
|
15["Segment<br>[1001, 1023, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
16["Segment<br>[1031, 1061, 0]"]
|
16["Segment<br>[1031, 1061, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
19["Segment<br>[1069, 1113, 0]"]
|
19["Segment<br>[1069, 1113, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
21["Segment<br>[1121, 1148, 0]"]
|
21["Segment<br>[1121, 1148, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
23["Segment<br>[1156, 1200, 0]"]
|
23["Segment<br>[1156, 1200, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
25["Segment<br>[1208, 1215, 0]"]
|
25["Segment<br>[1208, 1215, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
39[Solid2d]
|
39[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path11 [Path]
|
subgraph path11 [Path]
|
||||||
11["Path<br>[2256, 2344, 0]"]
|
11["Path<br>[2256, 2344, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
26["Segment<br>[2350, 2414, 0]"]
|
26["Segment<br>[2350, 2414, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
27["Segment<br>[2420, 2484, 0]"]
|
27["Segment<br>[2420, 2484, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
28["Segment<br>[2490, 2543, 0]"]
|
28["Segment<br>[2490, 2543, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
29["Segment<br>[2549, 2570, 0]"]
|
29["Segment<br>[2549, 2570, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
36[Solid2d]
|
36[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path12 [Path]
|
subgraph path12 [Path]
|
||||||
12["Path<br>[2901, 3067, 0]"]
|
12["Path<br>[2901, 3067, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
30["Segment<br>[2901, 3067, 0]"]
|
30["Segment<br>[2901, 3067, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
38[Solid2d]
|
38[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path13 [Path]
|
subgraph path13 [Path]
|
||||||
13["Path<br>[4380, 4405, 0]"]
|
13["Path<br>[4380, 4405, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
31["Segment<br>[4411, 4483, 0]"]
|
31["Segment<br>[4411, 4483, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
32["Segment<br>[4489, 4562, 0]"]
|
32["Segment<br>[4489, 4562, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
33["Segment<br>[4568, 4621, 0]"]
|
33["Segment<br>[4568, 4621, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
34["Segment<br>[4627, 4648, 0]"]
|
34["Segment<br>[4627, 4648, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
35[Solid2d]
|
35[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[1301, 1348, 0]"]
|
1["Plane<br>[1301, 1348, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwUnlabeledArg, CallKwUnlabeledArg]
|
||||||
2["Plane<br>[1880, 1927, 0]"]
|
2["Plane<br>[1880, 1927, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwUnlabeledArg, CallKwUnlabeledArg]
|
||||||
3["Plane<br>[2233, 2250, 0]"]
|
3["Plane<br>[2233, 2250, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
4["Plane<br>[4341, 4373, 0]"]
|
4["Plane<br>[4341, 4373, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
5["StartSketchOnPlane<br>[919, 939, 0]"]
|
5["StartSketchOnPlane<br>[919, 939, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
6["StartSketchOnPlane<br>[919, 939, 0]"]
|
6["StartSketchOnPlane<br>[919, 939, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
7["StartSketchOnPlane<br>[4327, 4374, 0]"]
|
7["StartSketchOnPlane<br>[4327, 4374, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
8["StartSketchOnFace<br>[2853, 2895, 0]"]
|
8["StartSketchOnFace<br>[2853, 2895, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
40["Sweep Extrusion<br>[1288, 1391, 0]"]
|
40["Sweep Extrusion<br>[1288, 1391, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
41["Sweep Revolve<br>[1867, 1958, 0]"]
|
41["Sweep Revolve<br>[1867, 1958, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 20 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
42["Sweep Extrusion<br>[2576, 2600, 0]"]
|
42["Sweep Extrusion<br>[2576, 2600, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
43["Sweep Extrusion<br>[3289, 3316, 0]"]
|
43["Sweep Extrusion<br>[3289, 3316, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
44["Sweep Extrusion<br>[3289, 3316, 0]"]
|
44["Sweep Extrusion<br>[3289, 3316, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
45["Sweep Extrusion<br>[3289, 3316, 0]"]
|
45["Sweep Extrusion<br>[3289, 3316, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
46["Sweep Extrusion<br>[3289, 3316, 0]"]
|
46["Sweep Extrusion<br>[3289, 3316, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 23 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
47["Sweep Extrusion<br>[4654, 4698, 0]"]
|
47["Sweep Extrusion<br>[4654, 4698, 0]"]
|
||||||
|
%% [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"]
|
||||||
@ -124,13 +194,21 @@ flowchart LR
|
|||||||
112["SweepEdge Adjacent"]
|
112["SweepEdge Adjacent"]
|
||||||
113["SweepEdge Adjacent"]
|
113["SweepEdge Adjacent"]
|
||||||
114["EdgeCut Fillet<br>[2606, 2836, 0]"]
|
114["EdgeCut Fillet<br>[2606, 2836, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
115["EdgeCut Fillet<br>[2606, 2836, 0]"]
|
115["EdgeCut Fillet<br>[2606, 2836, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
116["EdgeCut Fillet<br>[2606, 2836, 0]"]
|
116["EdgeCut Fillet<br>[2606, 2836, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
117["EdgeCut Fillet<br>[2606, 2836, 0]"]
|
117["EdgeCut Fillet<br>[2606, 2836, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 22 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
118["EdgeCut Fillet<br>[4704, 4937, 0]"]
|
118["EdgeCut Fillet<br>[4704, 4937, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
119["EdgeCut Fillet<br>[4704, 4937, 0]"]
|
119["EdgeCut Fillet<br>[4704, 4937, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
120["EdgeCut Fillet<br>[4704, 4937, 0]"]
|
120["EdgeCut Fillet<br>[4704, 4937, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
121["EdgeCut Fillet<br>[4704, 4937, 0]"]
|
121["EdgeCut Fillet<br>[4704, 4937, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 27 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
1 <--x 6
|
1 <--x 6
|
||||||
1 --- 10
|
1 --- 10
|
||||||
2 <--x 5
|
2 <--x 5
|
||||||
|
@ -2,171 +2,317 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path8 [Path]
|
subgraph path8 [Path]
|
||||||
8["Path<br>[266, 298, 0]"]
|
8["Path<br>[266, 298, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
15["Segment<br>[304, 323, 0]"]
|
15["Segment<br>[304, 323, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
16["Segment<br>[329, 371, 0]"]
|
16["Segment<br>[329, 371, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
17["Segment<br>[377, 433, 0]"]
|
17["Segment<br>[377, 433, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
18["Segment<br>[439, 496, 0]"]
|
18["Segment<br>[439, 496, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
19["Segment<br>[502, 561, 0]"]
|
19["Segment<br>[502, 561, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
20["Segment<br>[567, 624, 0]"]
|
20["Segment<br>[567, 624, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
21["Segment<br>[630, 673, 0]"]
|
21["Segment<br>[630, 673, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
22["Segment<br>[679, 699, 0]"]
|
22["Segment<br>[679, 699, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
23["Segment<br>[705, 744, 0]"]
|
23["Segment<br>[705, 744, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }]
|
||||||
24["Segment<br>[750, 786, 0]"]
|
24["Segment<br>[750, 786, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 11 }]
|
||||||
25["Segment<br>[792, 831, 0]"]
|
25["Segment<br>[792, 831, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 12 }]
|
||||||
26["Segment<br>[837, 870, 0]"]
|
26["Segment<br>[837, 870, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 13 }]
|
||||||
27["Segment<br>[876, 912, 0]"]
|
27["Segment<br>[876, 912, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 14 }]
|
||||||
28["Segment<br>[918, 972, 0]"]
|
28["Segment<br>[918, 972, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 15 }]
|
||||||
29["Segment<br>[978, 1015, 0]"]
|
29["Segment<br>[978, 1015, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 16 }]
|
||||||
30["Segment<br>[1021, 1028, 0]"]
|
30["Segment<br>[1021, 1028, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 17 }]
|
||||||
75[Solid2d]
|
75[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path9 [Path]
|
subgraph path9 [Path]
|
||||||
9["Path<br>[1193, 1238, 0]"]
|
9["Path<br>[1193, 1238, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
31["Segment<br>[1244, 1300, 0]"]
|
31["Segment<br>[1244, 1300, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
32["Segment<br>[1306, 1396, 0]"]
|
32["Segment<br>[1306, 1396, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
33["Segment<br>[1402, 1437, 0]"]
|
33["Segment<br>[1402, 1437, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
34["Segment<br>[1443, 1552, 0]"]
|
34["Segment<br>[1443, 1552, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
35["Segment<br>[1558, 1600, 0]"]
|
35["Segment<br>[1558, 1600, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
36["Segment<br>[1606, 1643, 0]"]
|
36["Segment<br>[1606, 1643, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
37["Segment<br>[1649, 1705, 0]"]
|
37["Segment<br>[1649, 1705, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
38["Segment<br>[1711, 1718, 0]"]
|
38["Segment<br>[1711, 1718, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
78[Solid2d]
|
78[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path10 [Path]
|
subgraph path10 [Path]
|
||||||
10["Path<br>[1757, 1805, 0]"]
|
10["Path<br>[1757, 1805, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
39["Segment<br>[1811, 1848, 0]"]
|
39["Segment<br>[1811, 1848, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
40["Segment<br>[1854, 1896, 0]"]
|
40["Segment<br>[1854, 1896, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
41["Segment<br>[1902, 1958, 0]"]
|
41["Segment<br>[1902, 1958, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
42["Segment<br>[1964, 2030, 0]"]
|
42["Segment<br>[1964, 2030, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
43["Segment<br>[2036, 2092, 0]"]
|
43["Segment<br>[2036, 2092, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
44["Segment<br>[2098, 2105, 0]"]
|
44["Segment<br>[2098, 2105, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
76[Solid2d]
|
76[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path11 [Path]
|
subgraph path11 [Path]
|
||||||
11["Path<br>[2149, 2193, 0]"]
|
11["Path<br>[2149, 2193, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
45["Segment<br>[2199, 2254, 0]"]
|
45["Segment<br>[2199, 2254, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
46["Segment<br>[2260, 2352, 0]"]
|
46["Segment<br>[2260, 2352, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
47["Segment<br>[2358, 2393, 0]"]
|
47["Segment<br>[2358, 2393, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
48["Segment<br>[2399, 2508, 0]"]
|
48["Segment<br>[2399, 2508, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
49["Segment<br>[2514, 2555, 0]"]
|
49["Segment<br>[2514, 2555, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
50["Segment<br>[2561, 2598, 0]"]
|
50["Segment<br>[2561, 2598, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
51["Segment<br>[2604, 2660, 0]"]
|
51["Segment<br>[2604, 2660, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
52["Segment<br>[2666, 2673, 0]"]
|
52["Segment<br>[2666, 2673, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
72[Solid2d]
|
72[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path12 [Path]
|
subgraph path12 [Path]
|
||||||
12["Path<br>[3050, 3142, 0]"]
|
12["Path<br>[3050, 3142, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
53["Segment<br>[3050, 3142, 0]"]
|
53["Segment<br>[3050, 3142, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
54["Segment<br>[3050, 3142, 0]"]
|
54["Segment<br>[3050, 3142, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
55["Segment<br>[3050, 3142, 0]"]
|
55["Segment<br>[3050, 3142, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
56["Segment<br>[3050, 3142, 0]"]
|
56["Segment<br>[3050, 3142, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
57["Segment<br>[3050, 3142, 0]"]
|
57["Segment<br>[3050, 3142, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
58["Segment<br>[3050, 3142, 0]"]
|
58["Segment<br>[3050, 3142, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
59["Segment<br>[3050, 3142, 0]"]
|
59["Segment<br>[3050, 3142, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
60["Segment<br>[3050, 3142, 0]"]
|
60["Segment<br>[3050, 3142, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
61["Segment<br>[3050, 3142, 0]"]
|
61["Segment<br>[3050, 3142, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
62["Segment<br>[3050, 3142, 0]"]
|
62["Segment<br>[3050, 3142, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
63["Segment<br>[3050, 3142, 0]"]
|
63["Segment<br>[3050, 3142, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
74[Solid2d]
|
74[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path13 [Path]
|
subgraph path13 [Path]
|
||||||
13["Path<br>[3331, 3382, 0]"]
|
13["Path<br>[3331, 3382, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
64["Segment<br>[3331, 3382, 0]"]
|
64["Segment<br>[3331, 3382, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
77[Solid2d]
|
77[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path14 [Path]
|
subgraph path14 [Path]
|
||||||
14["Path<br>[3814, 3842, 0]"]
|
14["Path<br>[3814, 3842, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
65["Segment<br>[3848, 3873, 0]"]
|
65["Segment<br>[3848, 3873, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
66["Segment<br>[3879, 3919, 0]"]
|
66["Segment<br>[3879, 3919, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
67["Segment<br>[3925, 3974, 0]"]
|
67["Segment<br>[3925, 3974, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
68["Segment<br>[3980, 4021, 0]"]
|
68["Segment<br>[3980, 4021, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
69["Segment<br>[4027, 4064, 0]"]
|
69["Segment<br>[4027, 4064, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
70["Segment<br>[4070, 4126, 0]"]
|
70["Segment<br>[4070, 4126, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
71["Segment<br>[4132, 4139, 0]"]
|
71["Segment<br>[4132, 4139, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
73[Solid2d]
|
73[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[243, 260, 0]"]
|
1["Plane<br>[243, 260, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["Plane<br>[1149, 1177, 0]"]
|
2["Plane<br>[1149, 1177, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwUnlabeledArg]
|
||||||
3["Plane<br>[3027, 3044, 0]"]
|
3["Plane<br>[3027, 3044, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
4["Plane<br>[3294, 3324, 0]"]
|
4["Plane<br>[3294, 3324, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
5["Plane<br>[3791, 3808, 0]"]
|
5["Plane<br>[3791, 3808, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
6["StartSketchOnPlane<br>[1135, 1178, 0]"]
|
6["StartSketchOnPlane<br>[1135, 1178, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
7["StartSketchOnPlane<br>[3280, 3325, 0]"]
|
7["StartSketchOnPlane<br>[3280, 3325, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
79["Sweep Extrusion<br>[1034, 1071, 0]"]
|
79["Sweep Extrusion<br>[1034, 1071, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 18 }]
|
||||||
80["Sweep Extrusion<br>[1724, 1745, 0]"]
|
80["Sweep Extrusion<br>[1724, 1745, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
81["Sweep Extrusion<br>[2111, 2132, 0]"]
|
81["Sweep Extrusion<br>[2111, 2132, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 3 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
82["Sweep Extrusion<br>[2679, 2700, 0]"]
|
82["Sweep Extrusion<br>[2679, 2700, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 4 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
83["Sweep Extrusion<br>[3148, 3168, 0]"]
|
83["Sweep Extrusion<br>[3148, 3168, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
84["Sweep Extrusion<br>[3388, 3432, 0]"]
|
84["Sweep Extrusion<br>[3388, 3432, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
85["Sweep Revolve<br>[4149, 4193, 0]"]
|
85["Sweep Revolve<br>[4149, 4193, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
86["CompositeSolid Subtract<br>[3674, 3704, 0]"]
|
86["CompositeSolid Subtract<br>[3674, 3704, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
87["CompositeSolid Union<br>[2845, 2903, 0]"]
|
87["CompositeSolid Union<br>[2845, 2903, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwArg { index: 0 }, ArrayElement { index: 0 }]
|
||||||
88["CompositeSolid Union<br>[2870, 2900, 0]"]
|
88["CompositeSolid Union<br>[2870, 2900, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwArg { index: 0 }, ArrayElement { index: 0 }, CallKwUnlabeledArg, ArrayElement { index: 1 }]
|
||||||
89["CompositeSolid Subtract<br>[2798, 2910, 0]"]
|
89["CompositeSolid Subtract<br>[2798, 2910, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
90["CompositeSolid Union<br>[3633, 3668, 0]"]
|
90["CompositeSolid Union<br>[3633, 3668, 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"]
|
||||||
@ -263,6 +409,7 @@ flowchart LR
|
|||||||
247["SweepEdge Adjacent"]
|
247["SweepEdge Adjacent"]
|
||||||
248["SweepEdge Adjacent"]
|
248["SweepEdge Adjacent"]
|
||||||
249["EdgeCut Fillet<br>[3438, 3552, 0]"]
|
249["EdgeCut Fillet<br>[3438, 3552, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
1 --- 8
|
1 --- 8
|
||||||
2 <--x 6
|
2 <--x 6
|
||||||
2 --- 9
|
2 --- 9
|
||||||
|
@ -63,19 +63,25 @@ flowchart LR
|
|||||||
4["Plane<br>[1730, 1768, 0]"]
|
4["Plane<br>[1730, 1768, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
5["StartSketchOnPlane<br>[1716, 1769, 0]"]
|
5["StartSketchOnPlane<br>[1716, 1769, 0]"]
|
||||||
%% Missing NodePath
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
6["StartSketchOnPlane<br>[1716, 1769, 0]"]
|
6["StartSketchOnPlane<br>[1716, 1769, 0]"]
|
||||||
%% Missing NodePath
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
7["StartSketchOnPlane<br>[1716, 1769, 0]"]
|
7["StartSketchOnPlane<br>[1716, 1769, 0]"]
|
||||||
%% Missing NodePath
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
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"]
|
||||||
|
@ -2,155 +2,264 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path27 [Path]
|
subgraph path27 [Path]
|
||||||
27["Path<br>[973, 1079, 0]"]
|
27["Path<br>[973, 1079, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
41["Segment<br>[1087, 1114, 0]"]
|
41["Segment<br>[1087, 1114, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
43["Segment<br>[1122, 1150, 0]"]
|
43["Segment<br>[1122, 1150, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
45["Segment<br>[1158, 1186, 0]"]
|
45["Segment<br>[1158, 1186, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
47["Segment<br>[1194, 1270, 0]"]
|
47["Segment<br>[1194, 1270, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
50["Segment<br>[1278, 1343, 0]"]
|
50["Segment<br>[1278, 1343, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
51["Segment<br>[1351, 1358, 0]"]
|
51["Segment<br>[1351, 1358, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
96[Solid2d]
|
96[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path28 [Path]
|
subgraph path28 [Path]
|
||||||
28["Path<br>[973, 1079, 0]"]
|
28["Path<br>[973, 1079, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
42["Segment<br>[1087, 1114, 0]"]
|
42["Segment<br>[1087, 1114, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
44["Segment<br>[1122, 1150, 0]"]
|
44["Segment<br>[1122, 1150, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
46["Segment<br>[1158, 1186, 0]"]
|
46["Segment<br>[1158, 1186, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
48["Segment<br>[1194, 1270, 0]"]
|
48["Segment<br>[1194, 1270, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
49["Segment<br>[1278, 1343, 0]"]
|
49["Segment<br>[1278, 1343, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
52["Segment<br>[1351, 1358, 0]"]
|
52["Segment<br>[1351, 1358, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
105[Solid2d]
|
105[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path29 [Path]
|
subgraph path29 [Path]
|
||||||
29["Path<br>[1863, 1933, 0]"]
|
29["Path<br>[1863, 1933, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
56["Segment<br>[1943, 2109, 0]"]
|
56["Segment<br>[1943, 2109, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
57["Segment<br>[2119, 2204, 0]"]
|
57["Segment<br>[2119, 2204, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
63["Segment<br>[2214, 2435, 0]"]
|
63["Segment<br>[2214, 2435, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
68["Segment<br>[2522, 2608, 0]"]
|
68["Segment<br>[2522, 2608, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
69["Segment<br>[2897, 2904, 0]"]
|
69["Segment<br>[2897, 2904, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
93[Solid2d]
|
93[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path30 [Path]
|
subgraph path30 [Path]
|
||||||
30["Path<br>[1863, 1933, 0]"]
|
30["Path<br>[1863, 1933, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
72["Segment<br>[2897, 2904, 0]"]
|
72["Segment<br>[2897, 2904, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
98[Solid2d]
|
98[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path31 [Path]
|
subgraph path31 [Path]
|
||||||
31["Path<br>[1863, 1933, 0]"]
|
31["Path<br>[1863, 1933, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
55["Segment<br>[1943, 2109, 0]"]
|
55["Segment<br>[1943, 2109, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
58["Segment<br>[2119, 2204, 0]"]
|
58["Segment<br>[2119, 2204, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
64["Segment<br>[2214, 2435, 0]"]
|
64["Segment<br>[2214, 2435, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
66["Segment<br>[2522, 2608, 0]"]
|
66["Segment<br>[2522, 2608, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
70["Segment<br>[2897, 2904, 0]"]
|
70["Segment<br>[2897, 2904, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
99[Solid2d]
|
99[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path32 [Path]
|
subgraph path32 [Path]
|
||||||
32["Path<br>[1863, 1933, 0]"]
|
32["Path<br>[1863, 1933, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
74["Segment<br>[2897, 2904, 0]"]
|
74["Segment<br>[2897, 2904, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
100[Solid2d]
|
100[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path33 [Path]
|
subgraph path33 [Path]
|
||||||
33["Path<br>[1863, 1933, 0]"]
|
33["Path<br>[1863, 1933, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
53["Segment<br>[1943, 2109, 0]"]
|
53["Segment<br>[1943, 2109, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
59["Segment<br>[2119, 2204, 0]"]
|
59["Segment<br>[2119, 2204, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
61["Segment<br>[2214, 2435, 0]"]
|
61["Segment<br>[2214, 2435, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
65["Segment<br>[2522, 2608, 0]"]
|
65["Segment<br>[2522, 2608, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
73["Segment<br>[2897, 2904, 0]"]
|
73["Segment<br>[2897, 2904, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
101[Solid2d]
|
101[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path34 [Path]
|
subgraph path34 [Path]
|
||||||
34["Path<br>[1863, 1933, 0]"]
|
34["Path<br>[1863, 1933, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
54["Segment<br>[1943, 2109, 0]"]
|
54["Segment<br>[1943, 2109, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
60["Segment<br>[2119, 2204, 0]"]
|
60["Segment<br>[2119, 2204, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
62["Segment<br>[2214, 2435, 0]"]
|
62["Segment<br>[2214, 2435, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
67["Segment<br>[2522, 2608, 0]"]
|
67["Segment<br>[2522, 2608, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
71["Segment<br>[2897, 2904, 0]"]
|
71["Segment<br>[2897, 2904, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
103[Solid2d]
|
103[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path35 [Path]
|
subgraph path35 [Path]
|
||||||
35["Path<br>[4327, 4397, 0]"]
|
35["Path<br>[4327, 4397, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
77["Segment<br>[4407, 4573, 0]"]
|
77["Segment<br>[4407, 4573, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
79["Segment<br>[4583, 4668, 0]"]
|
79["Segment<br>[4583, 4668, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
83["Segment<br>[4678, 4899, 0]"]
|
83["Segment<br>[4678, 4899, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
84["Segment<br>[4986, 5072, 0]"]
|
84["Segment<br>[4986, 5072, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
88["Segment<br>[5361, 5368, 0]"]
|
88["Segment<br>[5361, 5368, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
94[Solid2d]
|
94[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path36 [Path]
|
subgraph path36 [Path]
|
||||||
36["Path<br>[4327, 4397, 0]"]
|
36["Path<br>[4327, 4397, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
75["Segment<br>[4407, 4573, 0]"]
|
75["Segment<br>[4407, 4573, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
80["Segment<br>[4583, 4668, 0]"]
|
80["Segment<br>[4583, 4668, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
82["Segment<br>[4678, 4899, 0]"]
|
82["Segment<br>[4678, 4899, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
85["Segment<br>[4986, 5072, 0]"]
|
85["Segment<br>[4986, 5072, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
87["Segment<br>[5361, 5368, 0]"]
|
87["Segment<br>[5361, 5368, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
97[Solid2d]
|
97[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path37 [Path]
|
subgraph path37 [Path]
|
||||||
37["Path<br>[4327, 4397, 0]"]
|
37["Path<br>[4327, 4397, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
76["Segment<br>[4407, 4573, 0]"]
|
76["Segment<br>[4407, 4573, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
78["Segment<br>[4583, 4668, 0]"]
|
78["Segment<br>[4583, 4668, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
81["Segment<br>[4678, 4899, 0]"]
|
81["Segment<br>[4678, 4899, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
86["Segment<br>[4986, 5072, 0]"]
|
86["Segment<br>[4986, 5072, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
89["Segment<br>[5361, 5368, 0]"]
|
89["Segment<br>[5361, 5368, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
104[Solid2d]
|
104[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path38 [Path]
|
subgraph path38 [Path]
|
||||||
38["Path<br>[5579, 5631, 0]"]
|
38["Path<br>[5579, 5631, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
91["Segment<br>[5579, 5631, 0]"]
|
91["Segment<br>[5579, 5631, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
92[Solid2d]
|
92[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path39 [Path]
|
subgraph path39 [Path]
|
||||||
39["Path<br>[5579, 5631, 0]"]
|
39["Path<br>[5579, 5631, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
95[Solid2d]
|
95[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path40 [Path]
|
subgraph path40 [Path]
|
||||||
40["Path<br>[5579, 5631, 0]"]
|
40["Path<br>[5579, 5631, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
90["Segment<br>[5579, 5631, 0]"]
|
90["Segment<br>[5579, 5631, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
102[Solid2d]
|
102[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[948, 965, 0]"]
|
1["Plane<br>[948, 965, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["Plane<br>[948, 965, 0]"]
|
2["Plane<br>[948, 965, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
3["Plane<br>[1814, 1852, 0]"]
|
3["Plane<br>[1814, 1852, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
4["Plane<br>[1814, 1852, 0]"]
|
4["Plane<br>[1814, 1852, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
5["Plane<br>[1814, 1852, 0]"]
|
5["Plane<br>[1814, 1852, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
6["Plane<br>[1814, 1852, 0]"]
|
6["Plane<br>[1814, 1852, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
7["Plane<br>[1814, 1852, 0]"]
|
7["Plane<br>[1814, 1852, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
8["Plane<br>[1814, 1852, 0]"]
|
8["Plane<br>[1814, 1852, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
9["Plane<br>[4278, 4316, 0]"]
|
9["Plane<br>[4278, 4316, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
10["Plane<br>[4278, 4316, 0]"]
|
10["Plane<br>[4278, 4316, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
11["Plane<br>[4278, 4316, 0]"]
|
11["Plane<br>[4278, 4316, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
12["Plane<br>[5530, 5568, 0]"]
|
12["Plane<br>[5530, 5568, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
13["Plane<br>[5530, 5568, 0]"]
|
13["Plane<br>[5530, 5568, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
14["Plane<br>[5530, 5568, 0]"]
|
14["Plane<br>[5530, 5568, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
15["StartSketchOnPlane<br>[4264, 4317, 0]"]
|
15["StartSketchOnPlane<br>[4264, 4317, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
16["StartSketchOnPlane<br>[1800, 1853, 0]"]
|
16["StartSketchOnPlane<br>[1800, 1853, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
17["StartSketchOnPlane<br>[1800, 1853, 0]"]
|
17["StartSketchOnPlane<br>[1800, 1853, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
18["StartSketchOnPlane<br>[4264, 4317, 0]"]
|
18["StartSketchOnPlane<br>[4264, 4317, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
19["StartSketchOnPlane<br>[5516, 5569, 0]"]
|
19["StartSketchOnPlane<br>[5516, 5569, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
20["StartSketchOnPlane<br>[4264, 4317, 0]"]
|
20["StartSketchOnPlane<br>[4264, 4317, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
21["StartSketchOnPlane<br>[1800, 1853, 0]"]
|
21["StartSketchOnPlane<br>[1800, 1853, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
22["StartSketchOnPlane<br>[5516, 5569, 0]"]
|
22["StartSketchOnPlane<br>[5516, 5569, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
23["StartSketchOnPlane<br>[1800, 1853, 0]"]
|
23["StartSketchOnPlane<br>[1800, 1853, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
24["StartSketchOnPlane<br>[1800, 1853, 0]"]
|
24["StartSketchOnPlane<br>[1800, 1853, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
25["StartSketchOnPlane<br>[1800, 1853, 0]"]
|
25["StartSketchOnPlane<br>[1800, 1853, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
26["StartSketchOnPlane<br>[5516, 5569, 0]"]
|
26["StartSketchOnPlane<br>[5516, 5569, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
106["Sweep Loft<br>[3421, 3488, 0]"]
|
106["Sweep Loft<br>[3421, 3488, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
107["Sweep Loft<br>[3421, 3488, 0]"]
|
107["Sweep Loft<br>[3421, 3488, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
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]
|
||||||
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"]
|
||||||
|
@ -2,149 +2,261 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path15 [Path]
|
subgraph path15 [Path]
|
||||||
15["Path<br>[478, 527, 0]"]
|
15["Path<br>[478, 527, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
26["Segment<br>[533, 553, 0]"]
|
26["Segment<br>[533, 553, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
27["Segment<br>[559, 578, 0]"]
|
27["Segment<br>[559, 578, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
28["Segment<br>[584, 625, 0]"]
|
28["Segment<br>[584, 625, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
29["Segment<br>[631, 670, 0]"]
|
29["Segment<br>[631, 670, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
30["Segment<br>[676, 717, 0]"]
|
30["Segment<br>[676, 717, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
31["Segment<br>[723, 763, 0]"]
|
31["Segment<br>[723, 763, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
32["Segment<br>[769, 850, 0]"]
|
32["Segment<br>[769, 850, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }]
|
||||||
33["Segment<br>[856, 929, 0]"]
|
33["Segment<br>[856, 929, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
34["Segment<br>[935, 987, 0]"]
|
34["Segment<br>[935, 987, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 10 }]
|
||||||
35["Segment<br>[993, 1068, 0]"]
|
35["Segment<br>[993, 1068, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 11 }]
|
||||||
36["Segment<br>[1074, 1103, 0]"]
|
36["Segment<br>[1074, 1103, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 12 }]
|
||||||
37["Segment<br>[1109, 1138, 0]"]
|
37["Segment<br>[1109, 1138, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 13 }]
|
||||||
38["Segment<br>[1144, 1197, 0]"]
|
38["Segment<br>[1144, 1197, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 14 }]
|
||||||
39["Segment<br>[1203, 1232, 0]"]
|
39["Segment<br>[1203, 1232, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 15 }]
|
||||||
40["Segment<br>[1238, 1312, 0]"]
|
40["Segment<br>[1238, 1312, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 16 }]
|
||||||
41["Segment<br>[1318, 1360, 0]"]
|
41["Segment<br>[1318, 1360, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 17 }]
|
||||||
42["Segment<br>[1366, 1403, 0]"]
|
42["Segment<br>[1366, 1403, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 18 }]
|
||||||
43["Segment<br>[1409, 1465, 0]"]
|
43["Segment<br>[1409, 1465, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 19 }]
|
||||||
44["Segment<br>[1471, 1478, 0]"]
|
44["Segment<br>[1471, 1478, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 20 }]
|
||||||
72[Solid2d]
|
72[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path16 [Path]
|
subgraph path16 [Path]
|
||||||
16["Path<br>[1776, 1842, 0]"]
|
16["Path<br>[1776, 1842, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
45["Segment<br>[1776, 1842, 0]"]
|
45["Segment<br>[1776, 1842, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
67[Solid2d]
|
67[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path17 [Path]
|
subgraph path17 [Path]
|
||||||
17["Path<br>[2111, 2176, 0]"]
|
17["Path<br>[2111, 2176, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
46["Segment<br>[2111, 2176, 0]"]
|
46["Segment<br>[2111, 2176, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
76[Solid2d]
|
76[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path18 [Path]
|
subgraph path18 [Path]
|
||||||
18["Path<br>[2200, 2268, 0]"]
|
18["Path<br>[2200, 2268, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
47["Segment<br>[2200, 2268, 0]"]
|
47["Segment<br>[2200, 2268, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
68[Solid2d]
|
68[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path19 [Path]
|
subgraph path19 [Path]
|
||||||
19["Path<br>[2511, 2567, 0]"]
|
19["Path<br>[2511, 2567, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
48["Segment<br>[2573, 2593, 0]"]
|
48["Segment<br>[2573, 2593, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
49["Segment<br>[2599, 2667, 0]"]
|
49["Segment<br>[2599, 2667, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
50["Segment<br>[2673, 2745, 0]"]
|
50["Segment<br>[2673, 2745, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
51["Segment<br>[2751, 2817, 0]"]
|
51["Segment<br>[2751, 2817, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
52["Segment<br>[2823, 2894, 0]"]
|
52["Segment<br>[2823, 2894, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
53["Segment<br>[2900, 2957, 0]"]
|
53["Segment<br>[2900, 2957, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
54["Segment<br>[2987, 2994, 0]"]
|
54["Segment<br>[2987, 2994, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
71[Solid2d]
|
71[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path20 [Path]
|
subgraph path20 [Path]
|
||||||
20["Path<br>[3209, 3249, 0]"]
|
20["Path<br>[3209, 3249, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
55["Segment<br>[3255, 3275, 0]"]
|
55["Segment<br>[3255, 3275, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
56["Segment<br>[3281, 3333, 0]"]
|
56["Segment<br>[3281, 3333, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
57["Segment<br>[3339, 3395, 0]"]
|
57["Segment<br>[3339, 3395, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
58["Segment<br>[3401, 3467, 0]"]
|
58["Segment<br>[3401, 3467, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
59["Segment<br>[3473, 3528, 0]"]
|
59["Segment<br>[3473, 3528, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
60["Segment<br>[3534, 3591, 0]"]
|
60["Segment<br>[3534, 3591, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
61["Segment<br>[3621, 3628, 0]"]
|
61["Segment<br>[3621, 3628, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 9 }]
|
||||||
70[Solid2d]
|
70[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path21 [Path]
|
subgraph path21 [Path]
|
||||||
21["Path<br>[3845, 3890, 0]"]
|
21["Path<br>[3845, 3890, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
62["Segment<br>[3845, 3890, 0]"]
|
62["Segment<br>[3845, 3890, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
74[Solid2d]
|
74[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path22 [Path]
|
subgraph path22 [Path]
|
||||||
22["Path<br>[3914, 3959, 0]"]
|
22["Path<br>[3914, 3959, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
63["Segment<br>[3914, 3959, 0]"]
|
63["Segment<br>[3914, 3959, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
77[Solid2d]
|
77[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path23 [Path]
|
subgraph path23 [Path]
|
||||||
23["Path<br>[4235, 4314, 0]"]
|
23["Path<br>[4235, 4314, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
64["Segment<br>[4235, 4314, 0]"]
|
64["Segment<br>[4235, 4314, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
73[Solid2d]
|
73[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path24 [Path]
|
subgraph path24 [Path]
|
||||||
24["Path<br>[4735, 4794, 0]"]
|
24["Path<br>[4735, 4794, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
65["Segment<br>[4735, 4794, 0]"]
|
65["Segment<br>[4735, 4794, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
75[Solid2d]
|
75[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path25 [Path]
|
subgraph path25 [Path]
|
||||||
25["Path<br>[4818, 4883, 0]"]
|
25["Path<br>[4818, 4883, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
66["Segment<br>[4818, 4883, 0]"]
|
66["Segment<br>[4818, 4883, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }, CallKwArg { index: 0 }]
|
||||||
69[Solid2d]
|
69[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[455, 472, 0]"]
|
1["Plane<br>[455, 472, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 6 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["Plane<br>[1727, 1769, 0]"]
|
2["Plane<br>[1727, 1769, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
3["Plane<br>[2088, 2105, 0]"]
|
3["Plane<br>[2088, 2105, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
4["Plane<br>[2461, 2504, 0]"]
|
4["Plane<br>[2461, 2504, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
5["Plane<br>[3159, 3202, 0]"]
|
5["Plane<br>[3159, 3202, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
6["Plane<br>[3795, 3838, 0]"]
|
6["Plane<br>[3795, 3838, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
7["Plane<br>[4183, 4228, 0]"]
|
7["Plane<br>[4183, 4228, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
8["Plane<br>[4685, 4728, 0]"]
|
8["Plane<br>[4685, 4728, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
9["StartSketchOnPlane<br>[2447, 2505, 0]"]
|
9["StartSketchOnPlane<br>[2447, 2505, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 11 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
10["StartSketchOnPlane<br>[3145, 3203, 0]"]
|
10["StartSketchOnPlane<br>[3145, 3203, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
11["StartSketchOnPlane<br>[1713, 1770, 0]"]
|
11["StartSketchOnPlane<br>[1713, 1770, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
12["StartSketchOnPlane<br>[4169, 4229, 0]"]
|
12["StartSketchOnPlane<br>[4169, 4229, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
13["StartSketchOnPlane<br>[3781, 3839, 0]"]
|
13["StartSketchOnPlane<br>[3781, 3839, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
14["StartSketchOnPlane<br>[4671, 4729, 0]"]
|
14["StartSketchOnPlane<br>[4671, 4729, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
78["Sweep Revolve<br>[1608, 1650, 0]"]
|
78["Sweep Revolve<br>[1608, 1650, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 7 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
79["Sweep Extrusion<br>[1848, 1890, 0]"]
|
79["Sweep Extrusion<br>[1848, 1890, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
80["Sweep Extrusion<br>[2275, 2296, 0]"]
|
80["Sweep Extrusion<br>[2275, 2296, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
81["Sweep Extrusion<br>[3679, 3716, 0]"]
|
81["Sweep Extrusion<br>[3679, 3716, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 12 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 11 }]
|
||||||
82["Sweep Extrusion<br>[3966, 4004, 0]"]
|
82["Sweep Extrusion<br>[3966, 4004, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 13 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
83["Sweep Extrusion<br>[4320, 4340, 0]"]
|
83["Sweep Extrusion<br>[4320, 4340, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
84["Sweep Extrusion<br>[4890, 4929, 0]"]
|
84["Sweep Extrusion<br>[4890, 4929, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
85["CompositeSolid Subtract<br>[4352, 4558, 0]"]
|
85["CompositeSolid Subtract<br>[4352, 4558, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
86["CompositeSolid Union<br>[4401, 4550, 0]"]
|
86["CompositeSolid Union<br>[4401, 4550, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwArg { index: 0 }]
|
||||||
87["CompositeSolid Subtract<br>[4021, 4070, 0]"]
|
87["CompositeSolid Subtract<br>[4021, 4070, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 14 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
88["CompositeSolid Union<br>[2305, 2334, 0]"]
|
88["CompositeSolid Union<br>[2305, 2334, 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"]
|
||||||
@ -192,6 +304,7 @@ flowchart LR
|
|||||||
168["SweepEdge Adjacent"]
|
168["SweepEdge Adjacent"]
|
||||||
169["SweepEdge Adjacent"]
|
169["SweepEdge Adjacent"]
|
||||||
170["EdgeCut Fillet<br>[1896, 2008, 0]"]
|
170["EdgeCut Fillet<br>[1896, 2008, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 8 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
1 --- 15
|
1 --- 15
|
||||||
2 <--x 11
|
2 <--x 11
|
||||||
2 --- 16
|
2 --- 16
|
||||||
|
@ -49,17 +49,23 @@ flowchart LR
|
|||||||
2["Plane<br>[1087, 1125, 0]"]
|
2["Plane<br>[1087, 1125, 0]"]
|
||||||
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
3["StartSketchOnPlane<br>[1073, 1126, 0]"]
|
3["StartSketchOnPlane<br>[1073, 1126, 0]"]
|
||||||
%% Missing NodePath
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
4["StartSketchOnPlane<br>[1073, 1126, 0]"]
|
4["StartSketchOnPlane<br>[1073, 1126, 0]"]
|
||||||
%% Missing NodePath
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
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"]
|
||||||
|
@ -2,122 +2,204 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path17 [Path]
|
subgraph path17 [Path]
|
||||||
17["Path<br>[1219, 1289, 0]"]
|
17["Path<br>[1219, 1289, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
30["Segment<br>[1299, 1465, 0]"]
|
30["Segment<br>[1299, 1465, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
33["Segment<br>[1475, 1560, 0]"]
|
33["Segment<br>[1475, 1560, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
39["Segment<br>[1570, 1791, 0]"]
|
39["Segment<br>[1570, 1791, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
43["Segment<br>[1878, 1964, 0]"]
|
43["Segment<br>[1878, 1964, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
46["Segment<br>[2253, 2260, 0]"]
|
46["Segment<br>[2253, 2260, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
68[Solid2d]
|
68[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path18 [Path]
|
subgraph path18 [Path]
|
||||||
18["Path<br>[1219, 1289, 0]"]
|
18["Path<br>[1219, 1289, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
29["Segment<br>[1299, 1465, 0]"]
|
29["Segment<br>[1299, 1465, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
36["Segment<br>[1475, 1560, 0]"]
|
36["Segment<br>[1475, 1560, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
37["Segment<br>[1570, 1791, 0]"]
|
37["Segment<br>[1570, 1791, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
42["Segment<br>[1878, 1964, 0]"]
|
42["Segment<br>[1878, 1964, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
48["Segment<br>[2253, 2260, 0]"]
|
48["Segment<br>[2253, 2260, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
69[Solid2d]
|
69[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path19 [Path]
|
subgraph path19 [Path]
|
||||||
19["Path<br>[1219, 1289, 0]"]
|
19["Path<br>[1219, 1289, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
31["Segment<br>[1299, 1465, 0]"]
|
31["Segment<br>[1299, 1465, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
34["Segment<br>[1475, 1560, 0]"]
|
34["Segment<br>[1475, 1560, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
40["Segment<br>[1570, 1791, 0]"]
|
40["Segment<br>[1570, 1791, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
44["Segment<br>[1878, 1964, 0]"]
|
44["Segment<br>[1878, 1964, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
47["Segment<br>[2253, 2260, 0]"]
|
47["Segment<br>[2253, 2260, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
73[Solid2d]
|
73[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path20 [Path]
|
subgraph path20 [Path]
|
||||||
20["Path<br>[1219, 1289, 0]"]
|
20["Path<br>[1219, 1289, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
32["Segment<br>[1299, 1465, 0]"]
|
32["Segment<br>[1299, 1465, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
35["Segment<br>[1475, 1560, 0]"]
|
35["Segment<br>[1475, 1560, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
38["Segment<br>[1570, 1791, 0]"]
|
38["Segment<br>[1570, 1791, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
41["Segment<br>[1878, 1964, 0]"]
|
41["Segment<br>[1878, 1964, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
45["Segment<br>[2253, 2260, 0]"]
|
45["Segment<br>[2253, 2260, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
74[Solid2d]
|
74[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path21 [Path]
|
subgraph path21 [Path]
|
||||||
21["Path<br>[2339, 2374, 0]"]
|
21["Path<br>[2339, 2374, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }, CallKwArg { index: 0 }]
|
||||||
49["Segment<br>[2339, 2374, 0]"]
|
49["Segment<br>[2339, 2374, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }, CallKwArg { index: 0 }]
|
||||||
65[Solid2d]
|
65[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path22 [Path]
|
subgraph path22 [Path]
|
||||||
22["Path<br>[2339, 2374, 0]"]
|
22["Path<br>[2339, 2374, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }, CallKwArg { index: 0 }]
|
||||||
50["Segment<br>[2339, 2374, 0]"]
|
50["Segment<br>[2339, 2374, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }, CallKwArg { index: 0 }]
|
||||||
67[Solid2d]
|
67[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path23 [Path]
|
subgraph path23 [Path]
|
||||||
23["Path<br>[2339, 2374, 0]"]
|
23["Path<br>[2339, 2374, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }, CallKwArg { index: 0 }]
|
||||||
51["Segment<br>[2339, 2374, 0]"]
|
51["Segment<br>[2339, 2374, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }, CallKwArg { index: 0 }]
|
||||||
71[Solid2d]
|
71[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path24 [Path]
|
subgraph path24 [Path]
|
||||||
24["Path<br>[2339, 2374, 0]"]
|
24["Path<br>[2339, 2374, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }, CallKwArg { index: 0 }]
|
||||||
52["Segment<br>[2339, 2374, 0]"]
|
52["Segment<br>[2339, 2374, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 8 }, CallKwArg { index: 0 }]
|
||||||
72[Solid2d]
|
72[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path25 [Path]
|
subgraph path25 [Path]
|
||||||
25["Path<br>[3843, 3913, 0]"]
|
25["Path<br>[3843, 3913, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
53["Segment<br>[3923, 4089, 0]"]
|
53["Segment<br>[3923, 4089, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
56["Segment<br>[4099, 4184, 0]"]
|
56["Segment<br>[4099, 4184, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
58["Segment<br>[4194, 4415, 0]"]
|
58["Segment<br>[4194, 4415, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
59["Segment<br>[4502, 4588, 0]"]
|
59["Segment<br>[4502, 4588, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
61["Segment<br>[4877, 4884, 0]"]
|
61["Segment<br>[4877, 4884, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
70[Solid2d]
|
70[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path26 [Path]
|
subgraph path26 [Path]
|
||||||
26["Path<br>[3843, 3913, 0]"]
|
26["Path<br>[3843, 3913, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
54["Segment<br>[3923, 4089, 0]"]
|
54["Segment<br>[3923, 4089, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
55["Segment<br>[4099, 4184, 0]"]
|
55["Segment<br>[4099, 4184, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
57["Segment<br>[4194, 4415, 0]"]
|
57["Segment<br>[4194, 4415, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
60["Segment<br>[4502, 4588, 0]"]
|
60["Segment<br>[4502, 4588, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
62["Segment<br>[4877, 4884, 0]"]
|
62["Segment<br>[4877, 4884, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 7 }]
|
||||||
76[Solid2d]
|
76[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path27 [Path]
|
subgraph path27 [Path]
|
||||||
27["Path<br>[5095, 5146, 0]"]
|
27["Path<br>[5095, 5146, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
64["Segment<br>[5095, 5146, 0]"]
|
64["Segment<br>[5095, 5146, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
66[Solid2d]
|
66[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path28 [Path]
|
subgraph path28 [Path]
|
||||||
28["Path<br>[5095, 5146, 0]"]
|
28["Path<br>[5095, 5146, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
63["Segment<br>[5095, 5146, 0]"]
|
63["Segment<br>[5095, 5146, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
75[Solid2d]
|
75[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[1170, 1208, 0]"]
|
1["Plane<br>[1170, 1208, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
2["Plane<br>[1170, 1208, 0]"]
|
2["Plane<br>[1170, 1208, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
3["Plane<br>[1170, 1208, 0]"]
|
3["Plane<br>[1170, 1208, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
4["Plane<br>[1170, 1208, 0]"]
|
4["Plane<br>[1170, 1208, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
5["Plane<br>[3794, 3832, 0]"]
|
5["Plane<br>[3794, 3832, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
6["Plane<br>[3794, 3832, 0]"]
|
6["Plane<br>[3794, 3832, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
7["Plane<br>[5046, 5084, 0]"]
|
7["Plane<br>[5046, 5084, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
8["Plane<br>[5046, 5084, 0]"]
|
8["Plane<br>[5046, 5084, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
9["StartSketchOnPlane<br>[1156, 1209, 0]"]
|
9["StartSketchOnPlane<br>[1156, 1209, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
10["StartSketchOnPlane<br>[1156, 1209, 0]"]
|
10["StartSketchOnPlane<br>[1156, 1209, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
11["StartSketchOnPlane<br>[3780, 3833, 0]"]
|
11["StartSketchOnPlane<br>[3780, 3833, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
12["StartSketchOnPlane<br>[5032, 5085, 0]"]
|
12["StartSketchOnPlane<br>[5032, 5085, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
13["StartSketchOnPlane<br>[3780, 3833, 0]"]
|
13["StartSketchOnPlane<br>[3780, 3833, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
14["StartSketchOnPlane<br>[1156, 1209, 0]"]
|
14["StartSketchOnPlane<br>[1156, 1209, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
15["StartSketchOnPlane<br>[1156, 1209, 0]"]
|
15["StartSketchOnPlane<br>[1156, 1209, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
16["StartSketchOnPlane<br>[5032, 5085, 0]"]
|
16["StartSketchOnPlane<br>[5032, 5085, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 5 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
77["Sweep Loft<br>[2899, 3000, 0]"]
|
77["Sweep Loft<br>[2899, 3000, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
78["Sweep Loft<br>[2899, 3000, 0]"]
|
78["Sweep Loft<br>[2899, 3000, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 9 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
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]
|
||||||
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"]
|
||||||
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -2,59 +2,102 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path5 [Path]
|
subgraph path5 [Path]
|
||||||
5["Path<br>[1037, 1091, 0]"]
|
5["Path<br>[1037, 1091, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
9["Segment<br>[1097, 1124, 0]"]
|
9["Segment<br>[1097, 1124, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
10["Segment<br>[1130, 1158, 0]"]
|
10["Segment<br>[1130, 1158, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
11["Segment<br>[1164, 1192, 0]"]
|
11["Segment<br>[1164, 1192, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
12["Segment<br>[1198, 1205, 0]"]
|
12["Segment<br>[1198, 1205, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
19[Solid2d]
|
19[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path6 [Path]
|
subgraph path6 [Path]
|
||||||
6["Path<br>[1452, 1539, 0]"]
|
6["Path<br>[1452, 1539, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
13["Segment<br>[1545, 1582, 0]"]
|
13["Segment<br>[1545, 1582, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
14["Segment<br>[1588, 1626, 0]"]
|
14["Segment<br>[1588, 1626, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
15["Segment<br>[1632, 1672, 0]"]
|
15["Segment<br>[1632, 1672, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
16["Segment<br>[1678, 1685, 0]"]
|
16["Segment<br>[1678, 1685, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
20[Solid2d]
|
20[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path7 [Path]
|
subgraph path7 [Path]
|
||||||
7["Path<br>[1809, 1956, 0]"]
|
7["Path<br>[1809, 1956, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
17["Segment<br>[1809, 1956, 0]"]
|
17["Segment<br>[1809, 1956, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
21[Solid2d]
|
21[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path8 [Path]
|
subgraph path8 [Path]
|
||||||
8["Path<br>[2246, 2421, 0]"]
|
8["Path<br>[2246, 2421, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
18["Segment<br>[2246, 2421, 0]"]
|
18["Segment<br>[2246, 2421, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
22[Solid2d]
|
22[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[1014, 1031, 0]"]
|
1["Plane<br>[1014, 1031, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
2["StartSketchOnFace<br>[1413, 1446, 0]"]
|
2["StartSketchOnFace<br>[1413, 1446, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
3["StartSketchOnFace<br>[1772, 1803, 0]"]
|
3["StartSketchOnFace<br>[1772, 1803, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
4["StartSketchOnFace<br>[2199, 2240, 0]"]
|
4["StartSketchOnFace<br>[2199, 2240, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
23["Sweep Extrusion<br>[1211, 1235, 0]"]
|
23["Sweep Extrusion<br>[1211, 1235, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 15 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
24["Sweep Extrusion<br>[1691, 1722, 0]"]
|
24["Sweep Extrusion<br>[1691, 1722, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 16 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 6 }]
|
||||||
25["Sweep Extrusion<br>[2110, 2138, 0]"]
|
25["Sweep Extrusion<br>[2110, 2138, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
26["Sweep Extrusion<br>[2110, 2138, 0]"]
|
26["Sweep Extrusion<br>[2110, 2138, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
27["Sweep Extrusion<br>[2110, 2138, 0]"]
|
27["Sweep Extrusion<br>[2110, 2138, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
28["Sweep Extrusion<br>[2110, 2138, 0]"]
|
28["Sweep Extrusion<br>[2110, 2138, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
29["Sweep Extrusion<br>[2110, 2138, 0]"]
|
29["Sweep Extrusion<br>[2110, 2138, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
30["Sweep Extrusion<br>[2110, 2138, 0]"]
|
30["Sweep Extrusion<br>[2110, 2138, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 17 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
31["Sweep Extrusion<br>[2583, 2611, 0]"]
|
31["Sweep Extrusion<br>[2583, 2611, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
32["Sweep Extrusion<br>[2583, 2611, 0]"]
|
32["Sweep Extrusion<br>[2583, 2611, 0]"]
|
||||||
|
%% [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"]
|
||||||
|
@ -2,128 +2,219 @@
|
|||||||
flowchart LR
|
flowchart LR
|
||||||
subgraph path19 [Path]
|
subgraph path19 [Path]
|
||||||
19["Path<br>[601, 646, 0]"]
|
19["Path<br>[601, 646, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
33["Segment<br>[601, 646, 0]"]
|
33["Segment<br>[601, 646, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
45[Solid2d]
|
45[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path20 [Path]
|
subgraph path20 [Path]
|
||||||
20["Path<br>[601, 646, 0]"]
|
20["Path<br>[601, 646, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
35["Segment<br>[601, 646, 0]"]
|
35["Segment<br>[601, 646, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
46[Solid2d]
|
46[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path21 [Path]
|
subgraph path21 [Path]
|
||||||
21["Path<br>[601, 646, 0]"]
|
21["Path<br>[601, 646, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
32["Segment<br>[601, 646, 0]"]
|
32["Segment<br>[601, 646, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
50[Solid2d]
|
50[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path22 [Path]
|
subgraph path22 [Path]
|
||||||
22["Path<br>[601, 646, 0]"]
|
22["Path<br>[601, 646, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
31["Segment<br>[601, 646, 0]"]
|
31["Segment<br>[601, 646, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
52[Solid2d]
|
52[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path23 [Path]
|
subgraph path23 [Path]
|
||||||
23["Path<br>[601, 646, 0]"]
|
23["Path<br>[601, 646, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
30["Segment<br>[601, 646, 0]"]
|
30["Segment<br>[601, 646, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
53[Solid2d]
|
53[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path24 [Path]
|
subgraph path24 [Path]
|
||||||
24["Path<br>[601, 646, 0]"]
|
24["Path<br>[601, 646, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
34["Segment<br>[601, 646, 0]"]
|
34["Segment<br>[601, 646, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
54[Solid2d]
|
54[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path25 [Path]
|
subgraph path25 [Path]
|
||||||
25["Path<br>[601, 646, 0]"]
|
25["Path<br>[601, 646, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
36["Segment<br>[601, 646, 0]"]
|
36["Segment<br>[601, 646, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
55[Solid2d]
|
55[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path26 [Path]
|
subgraph path26 [Path]
|
||||||
26["Path<br>[1330, 1385, 0]"]
|
26["Path<br>[1330, 1385, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
37["Segment<br>[1330, 1385, 0]"]
|
37["Segment<br>[1330, 1385, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
48[Solid2d]
|
48[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path27 [Path]
|
subgraph path27 [Path]
|
||||||
27["Path<br>[1330, 1385, 0]"]
|
27["Path<br>[1330, 1385, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
38["Segment<br>[1330, 1385, 0]"]
|
38["Segment<br>[1330, 1385, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
51[Solid2d]
|
51[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path28 [Path]
|
subgraph path28 [Path]
|
||||||
28["Path<br>[1832, 1895, 0]"]
|
28["Path<br>[1832, 1895, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
39["Segment<br>[1832, 1895, 0]"]
|
39["Segment<br>[1832, 1895, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
47[Solid2d]
|
47[Solid2d]
|
||||||
end
|
end
|
||||||
subgraph path29 [Path]
|
subgraph path29 [Path]
|
||||||
29["Path<br>[1941, 2000, 0]"]
|
29["Path<br>[1941, 2000, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
40["Segment<br>[2008, 2032, 0]"]
|
40["Segment<br>[2008, 2032, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
41["Segment<br>[2040, 2140, 0]"]
|
41["Segment<br>[2040, 2140, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
42["Segment<br>[2148, 2172, 0]"]
|
42["Segment<br>[2148, 2172, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 3 }]
|
||||||
43["Segment<br>[2180, 2358, 0]"]
|
43["Segment<br>[2180, 2358, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 4 }]
|
||||||
44["Segment<br>[2366, 2373, 0]"]
|
44["Segment<br>[2366, 2373, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 2 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 5 }]
|
||||||
49[Solid2d]
|
49[Solid2d]
|
||||||
end
|
end
|
||||||
1["Plane<br>[565, 592, 0]"]
|
1["Plane<br>[565, 592, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
2["Plane<br>[565, 592, 0]"]
|
2["Plane<br>[565, 592, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
3["Plane<br>[565, 592, 0]"]
|
3["Plane<br>[565, 592, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
4["Plane<br>[565, 592, 0]"]
|
4["Plane<br>[565, 592, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
5["Plane<br>[565, 592, 0]"]
|
5["Plane<br>[565, 592, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
6["Plane<br>[565, 592, 0]"]
|
6["Plane<br>[565, 592, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
7["Plane<br>[565, 592, 0]"]
|
7["Plane<br>[565, 592, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }, CallKwUnlabeledArg]
|
||||||
8["Plane<br>[1302, 1322, 0]"]
|
8["Plane<br>[1302, 1322, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
9["Plane<br>[1302, 1322, 0]"]
|
9["Plane<br>[1302, 1322, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
10["Plane<br>[1768, 1818, 0]"]
|
10["Plane<br>[1768, 1818, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, CallKwUnlabeledArg]
|
||||||
11["StartSketchOnPlane<br>[551, 593, 0]"]
|
11["StartSketchOnPlane<br>[551, 593, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
12["StartSketchOnPlane<br>[1754, 1819, 0]"]
|
12["StartSketchOnPlane<br>[1754, 1819, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit]
|
||||||
13["StartSketchOnPlane<br>[551, 593, 0]"]
|
13["StartSketchOnPlane<br>[551, 593, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
14["StartSketchOnPlane<br>[551, 593, 0]"]
|
14["StartSketchOnPlane<br>[551, 593, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
15["StartSketchOnPlane<br>[551, 593, 0]"]
|
15["StartSketchOnPlane<br>[551, 593, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
16["StartSketchOnPlane<br>[551, 593, 0]"]
|
16["StartSketchOnPlane<br>[551, 593, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
17["StartSketchOnPlane<br>[551, 593, 0]"]
|
17["StartSketchOnPlane<br>[551, 593, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
18["StartSketchOnPlane<br>[551, 593, 0]"]
|
18["StartSketchOnPlane<br>[551, 593, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 0 }]
|
||||||
56["Sweep Extrusion<br>[654, 683, 0]"]
|
56["Sweep Extrusion<br>[654, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
57["Sweep Extrusion<br>[654, 683, 0]"]
|
57["Sweep Extrusion<br>[654, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
58["Sweep Extrusion<br>[654, 683, 0]"]
|
58["Sweep Extrusion<br>[654, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
59["Sweep Extrusion<br>[654, 683, 0]"]
|
59["Sweep Extrusion<br>[654, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
60["Sweep Extrusion<br>[654, 683, 0]"]
|
60["Sweep Extrusion<br>[654, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
61["Sweep Extrusion<br>[654, 683, 0]"]
|
61["Sweep Extrusion<br>[654, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
62["Sweep Extrusion<br>[654, 683, 0]"]
|
62["Sweep Extrusion<br>[654, 683, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 10 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
63["Sweep Extrusion<br>[1393, 1420, 0]"]
|
63["Sweep Extrusion<br>[1393, 1420, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
64["Sweep Extrusion<br>[1393, 1420, 0]"]
|
64["Sweep Extrusion<br>[1393, 1420, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 18 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 0 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 2 }]
|
||||||
65["Sweep Extrusion<br>[1903, 1926, 0]"]
|
65["Sweep Extrusion<br>[1903, 1926, 0]"]
|
||||||
|
%% [ProgramBodyItem { index: 21 }, VariableDeclarationDeclaration, VariableDeclarationInit, FunctionExpressionBody, FunctionExpressionBodyItem { index: 1 }, VariableDeclarationDeclaration, VariableDeclarationInit, PipeBodyItem { index: 1 }]
|
||||||
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 }]
|
||||||
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"]
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user